diff --git a/.eslintrc.cjs b/.eslintrc.cjs
index c7803415..173d8dca 100644
--- a/.eslintrc.cjs
+++ b/.eslintrc.cjs
@@ -24,7 +24,7 @@ module.exports = {
},
overrides: [
{
- files: ["src/**/*.{ts,tsx}"],
+ files: ["src/**/*.{ts,tsx}", "test/**/*.{ts,tsx}"],
extends: [
"plugin:matrix-org/typescript",
"plugin:matrix-org/react",
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 081d338b..129b501a 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
- name: Yarn cache
uses: actions/setup-node@v3
with:
@@ -26,7 +26,7 @@ jobs:
VITE_APP_VERSION: ${{ github.sha }}
NODE_OPTIONS: "--max-old-space-size=4096"
- name: Upload Artifact
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: build
path: dist
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index b31bc547..910a4131 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out test private repo
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
repository: vector-im/static-call-participant
ref: refs/heads/main
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
index baa3a5f0..7c8bba83 100644
--- a/.github/workflows/lint.yaml
+++ b/.github/workflows/lint.yaml
@@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
- name: Yarn cache
uses: actions/setup-node@v3
with:
diff --git a/.github/workflows/netlify-fullmesh.yaml b/.github/workflows/netlify-fullmesh.yaml
index 8444fe7c..d419001f 100644
--- a/.github/workflows/netlify-fullmesh.yaml
+++ b/.github/workflows/netlify-fullmesh.yaml
@@ -28,10 +28,10 @@ jobs:
ref: ${{ github.event.workflow_run.head_sha }}
- name: "Download artifact"
- uses: actions/github-script@v3.2.0
+ uses: actions/github-script@v6.4.1
with:
script: |
- const artifacts = await github.actions.listWorkflowRunArtifacts({
+ const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{ github.event.workflow_run.id }},
@@ -39,7 +39,7 @@ jobs:
const matchArtifact = artifacts.data.artifacts.filter((artifact) => {
return artifact.name == "build"
})[0];
- const download = await github.actions.downloadArtifact({
+ const download = await github.rest.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
artifact_id: matchArtifact.id,
diff --git a/.github/workflows/netlify-livekit.yaml b/.github/workflows/netlify-livekit.yaml
index 9657f372..7e48f4a1 100644
--- a/.github/workflows/netlify-livekit.yaml
+++ b/.github/workflows/netlify-livekit.yaml
@@ -28,10 +28,10 @@ jobs:
ref: ${{ github.event.workflow_run.head_sha }}
- name: "Download artifact"
- uses: actions/github-script@v3.2.0
+ uses: actions/github-script@v6.4.1
with:
script: |
- const artifacts = await github.actions.listWorkflowRunArtifacts({
+ const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{ github.event.workflow_run.id }},
@@ -39,7 +39,7 @@ jobs:
const matchArtifact = artifacts.data.artifacts.filter((artifact) => {
return artifact.name == "build"
})[0];
- const download = await github.actions.downloadArtifact({
+ const download = await github.rest.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
artifact_id: matchArtifact.id,
diff --git a/.github/workflows/netlify-pr.yaml b/.github/workflows/netlify-pr.yaml
index 616c290b..5f50e371 100644
--- a/.github/workflows/netlify-pr.yaml
+++ b/.github/workflows/netlify-pr.yaml
@@ -28,7 +28,7 @@ jobs:
Exercise caution. Use test accounts.
- id: prdetails
- uses: matrix-org/pr-details-action@v1.2
+ uses: matrix-org/pr-details-action@v1.3
with:
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
branch: ${{ github.event.workflow_run.head_branch }}
diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml
index d5eb49c7..19d2922a 100644
--- a/.github/workflows/publish.yaml
+++ b/.github/workflows/publish.yaml
@@ -23,10 +23,10 @@ jobs:
run: echo "unix_time=$(date +'%s')" >> $GITHUB_OUTPUT
- name: Check it out
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
- name: Log in to container registry
- uses: docker/login-action@cf8514a65188af1d4f94f8c28a7a4153af1088ce
+ uses: docker/login-action@b4bedf8053341df3b5a9f9e0f2cf4e79e27360c6
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
@@ -54,7 +54,7 @@ jobs:
tar --numeric-owner --transform "s/dist/element-call-${TARBALL_VERSION}/" -cvzf element-call-${TARBALL_VERSION}.tar.gz dist
- name: Upload
- uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05
+ uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
env:
GITHUB_TOKEN: ${{ github.token }}
with:
@@ -62,7 +62,7 @@ jobs:
- name: Extract metadata (tags, labels) for Docker
id: meta
- uses: docker/metadata-action@0f8c876bafbf5dbce05c36682ec68e9a0274a48a
+ uses: docker/metadata-action@879dcbb708d40f8b8679d4f7941b938a086e23a7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
@@ -72,10 +72,10 @@ jobs:
type=raw,value=latest-ci_${{steps.current-time.outputs.unix_time}},enable={{is_default_branch}}
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55
+ uses: docker/setup-buildx-action@dedd61cf5d839122591f5027c89bf3ad27691d18
- name: Build and push Docker image
- uses: docker/build-push-action@9311bf5263ae5b36f3ec67aff768790c6e2344ad
+ uses: docker/build-push-action@4c1b68d83ad20cc1a09620ca477d5bbbb5fa14d0
with:
context: .
platforms: linux/amd64,linux/arm64
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index f9793f23..5d040f47 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
- name: Yarn cache
uses: actions/setup-node@v3
with:
diff --git a/.github/workflows/triage-incoming.yaml b/.github/workflows/triage-incoming.yaml
deleted file mode 100644
index 3e1d6655..00000000
--- a/.github/workflows/triage-incoming.yaml
+++ /dev/null
@@ -1,27 +0,0 @@
-name: Move new issues into triage board
-
-on:
- issues:
- types: [opened]
-
-jobs:
- add-to-project:
- runs-on: ubuntu-latest
- steps:
- - uses: octokit/graphql-action@v2.x
- id: add_to_project
- with:
- headers: '{"GraphQL-Features": "projects_next_graphql"}'
- query: |
- mutation add_to_project($projectid:ID!,$contentid:ID!) {
- addProjectV2ItemById(input: {projectId: $projectid contentId: $contentid}) {
- item {
- id
- }
- }
- }
- projectid: ${{ env.PROJECT_ID }}
- contentid: ${{ github.event.issue.node_id }}
- env:
- PROJECT_ID: "PVT_kwDOAM0swc4AH1sa"
- GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
diff --git a/package.json b/package.json
index acc6068d..007bd32f 100644
--- a/package.json
+++ b/package.json
@@ -29,8 +29,9 @@
"@opentelemetry/instrumentation-document-load": "^0.33.0",
"@opentelemetry/instrumentation-user-interaction": "^0.33.0",
"@opentelemetry/sdk-trace-web": "^1.9.1",
+ "@radix-ui/react-dialog": "^1.0.4",
+ "@radix-ui/react-visually-hidden": "^1.0.3",
"@react-aria/button": "^3.3.4",
- "@react-aria/dialog": "^3.1.4",
"@react-aria/focus": "^3.5.0",
"@react-aria/menu": "^3.3.0",
"@react-aria/overlays": "^3.7.3",
@@ -40,7 +41,6 @@
"@react-aria/utils": "^3.10.0",
"@react-spring/web": "^9.4.4",
"@react-stately/collections": "^3.3.4",
- "@react-stately/overlays": "^3.1.3",
"@react-stately/select": "^3.1.3",
"@react-stately/tooltip": "^3.0.5",
"@react-stately/tree": "^3.2.0",
@@ -52,14 +52,13 @@
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^4.0.1",
"classnames": "^2.3.1",
- "color-hash": "^2.0.1",
"events": "^3.3.0",
"i18next": "^21.10.0",
"i18next-browser-languagedetector": "^6.1.8",
"i18next-http-backend": "^1.4.4",
"livekit-client": "^1.12.3",
"lodash": "^4.17.21",
- "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#6836720e1e1c2cb01d49d6e5fcfc01afc14834ca",
+ "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#6385c9c0dab8fe67bd3a8992a4777f243fdd1b68",
"matrix-widget-api": "^1.3.1",
"mermaid": "^9.0.0",
"normalize.css": "^8.0.1",
@@ -77,15 +76,17 @@
"sdp-transform": "^2.14.1",
"tinyqueue": "^2.0.3",
"unique-names-generator": "^4.6.0",
- "uuid": "9"
+ "uuid": "9",
+ "vaul": "^0.6.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@react-spring/rafz": "^9.7.3",
- "@sentry/vite-plugin": "^0.3.0",
+ "@react-types/dialog": "^3.5.5",
+ "@sentry/vite-plugin": "^2.0.0",
"@storybook/react": "^6.5.0-alpha.5",
"@testing-library/jest-dom": "^5.16.5",
- "@testing-library/react": "^13.4.0",
+ "@testing-library/react": "^14.0.0",
"@types/content-type": "^1.1.5",
"@types/d3": "^7.4.0",
"@types/dom-screen-wake-lock": "^1.0.1",
@@ -98,11 +99,11 @@
"@types/uuid": "9",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
- "babel-loader": "^8.2.3",
+ "babel-loader": "^9.0.0",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"eslint": "^8.14.0",
"eslint-config-google": "^0.14.0",
- "eslint-config-prettier": "^8.5.0",
+ "eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-matrix-org": "^0.4.0",
diff --git a/public/.well-known/assetlinks.json b/public/.well-known/assetlinks.json
index 0eb37bf0..6f64bcc5 100644
--- a/public/.well-known/assetlinks.json
+++ b/public/.well-known/assetlinks.json
@@ -8,5 +8,25 @@
"B0:B0:51:DC:56:5C:81:2F:E1:7F:6F:3E:94:5B:4D:79:04:71:23:AB:0D:A6:12:86:76:9E:B2:94:91:97:13:0E"
]
}
+ },
+ {
+ "relation": ["delegate_permission/common.handle_all_urls"],
+ "target": {
+ "namespace": "android_app",
+ "package_name": "io.element.android.x.nightly",
+ "sha256_cert_fingerprints": [
+ "CA:D3:85:16:84:3A:05:CC:EB:00:AB:7B:D3:80:0F:01:BA:8F:E0:4B:38:86:F3:97:D8:F7:9A:1B:C4:54:E4:0F"
+ ]
+ }
+ },
+ {
+ "relation": ["delegate_permission/common.handle_all_urls"],
+ "target": {
+ "namespace": "android_app",
+ "package_name": "io.element.android.x",
+ "sha256_cert_fingerprints": [
+ "C6:DB:9B:9C:8C:BD:D6:5D:16:E8:EC:8C:8B:91:C8:31:B9:EF:C9:5C:BF:98:AE:41:F6:A9:D8:35:15:1A:7E:16"
+ ]
+ }
}
]
diff --git a/public/locales/bg/app.json b/public/locales/bg/app.json
index 79f1d22e..39ed98d0 100644
--- a/public/locales/bg/app.json
+++ b/public/locales/bg/app.json
@@ -5,8 +5,6 @@
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Друг потребител в този разговор има проблем. За да диагностицираме този проблем по-добре ни се иска да съберем debug логове.",
"Audio": "Звук",
"Avatar": "Аватар",
- "Call link copied": "Връзка към разговора бе копирана",
- "Call type menu": "Меню \"тип на разговора\"",
"Camera": "Камера",
"Close": "Затвори",
"Confirm password": "Потвърди паролата",
@@ -19,12 +17,10 @@
"Display name": "Име/псевдоним",
"Download debug logs": "Изтеглете debug логове",
"Exit full screen": "Излез от цял екран",
- "Fetching group call timed out.": "Изтече времето за взимане на груповия разговор.",
"Full screen": "Цял екран",
"Go": "Напред",
"Home": "Начало",
"Include debug logs": "Включи debug логове",
- "Incompatible versions": "Несъвместими версии",
"Inspector": "Инспектор",
"Join call": "Влез в разговора",
"Join call now": "Влез в разговора сега",
@@ -39,7 +35,6 @@
"No": "Не",
"Not now, return to home screen": "Не сега, върни се на началния екран",
"Not registered yet? <2>Create an account2>": "Все още не сте регистрирани? <2>Създайте акаунт2>",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Други потребители се опитват да се присъединят в разговора от несъвместими версии. Следните потребители трябва да проверят дали са презаредили браузърите си<1>{userLis}1>",
"Password": "Парола",
"Passwords must match": "Паролите не съвпадат",
"Profile": "Профил",
@@ -60,18 +55,11 @@
"Speaker": "Говорител",
"Spotlight": "Прожектор",
"Submit feedback": "Изпрати обратна връзка",
- "Take me Home": "Отиди в Начало",
"This call already exists, would you like to join?": "Този разговор вече съществува, искате ли да се присъедините?",
"User menu": "Потребителско меню",
"Username": "Потребителско име",
"Version: {{version}}": "Версия: {{version}}",
"Video": "Видео",
- "Video call": "Видео разговор",
- "Video call name": "Име на видео разговора",
"Waiting for other participants…": "Изчакване на други участници…",
- "Walkie-talkie call": "Уоки-токи разговор",
- "Walkie-talkie call name": "Име на уоки-токи разговора",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC не се поддържа или се блокира от браузъра.",
- "Yes, join call": "Да, присъедини се",
- "Your recent calls": "Скорошните ви разговори"
+ "Yes, join call": "Да, присъедини се"
}
diff --git a/public/locales/cs/app.json b/public/locales/cs/app.json
index 7d73b9eb..0b459d79 100644
--- a/public/locales/cs/app.json
+++ b/public/locales/cs/app.json
@@ -4,22 +4,16 @@
"Confirm password": "Potvrdit heslo",
"Close": "Zavřít",
"Camera": "Kamera",
- "Call link copied": "Odkaz na hovor zkopírován",
"Avatar": "Avatar",
"Audio": "Audio",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Vytvořit účet0> Or <2>Jako host2>",
- "Your recent calls": "Vaše nedávné hovory",
"Yes, join call": "Ano, připojit se",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC není podporováno nebo je zakázáno tímto prohlížečem.",
"Waiting for other participants…": "Čekání na další účastníky…",
- "Video call name": "Jméno videohovoru",
- "Video call": "Videohovor",
"Video": "Video",
"Version: {{version}}": "Verze: {{version}}",
"Username": "Uživatelské jméno",
"User menu": "Uživatelské menu",
"This call already exists, would you like to join?": "Tento hovor již existuje, chcete se připojit?",
- "Take me Home": "Domovská obrazovka",
"Submit feedback": "Dát feedback",
"Speaker": "Reproduktor",
"Sign out": "Odhlásit se",
@@ -50,20 +44,15 @@
"Join call now": "Připojit se k hovoru",
"Join call": "Připojit se k hovoru",
"Inspector": "Insepktor",
- "Incompatible versions": "Nekompatibilní verze",
- "Walkie-talkie call name": "Jméno vysílačkového hovoru",
- "Walkie-talkie call": "Vysílačkový hovor",
"Spotlight": "Soustředěný mód",
"Recaptcha not loaded": "Recaptcha se nenačetla",
"Recaptcha dismissed": "Recaptcha byla zamítnuta",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Ostatní uživatelé se pokoušejí připojit k tomuto hovoru s nekompatibilních verzí. Tito uživatelé by se měli ujistit, že stránku načetli znovu:<1>{userLis}1>",
"Not registered yet? <2>Create an account2>": "Nejste registrovaní? <2>Vytvořit účet2>",
"Join existing call?": "Připojit se k existujícimu hovoru?",
"Include debug logs": "Zahrnout ladící záznamy",
"Home": "Domov",
"Go": "Pokračovat",
"Full screen": "Zvětšit na celou obrazovku",
- "Fetching group call timed out.": "Vypršel časový limit načítání skupinového hovoru.",
"Exit full screen": "Ukončit režim celé obrazovky",
"Element Call Home": "Domov Element Call",
"Download debug logs": "Stáhnout ladící záznamy",
@@ -73,10 +62,8 @@
"Debug log": "Protokoly ladění",
"Create account": "Vytvořit účet",
"Copy": "Kopírovat",
- "Call type menu": "Menu typu hovoru",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Jiný uživatel v tomto hovoru má problémy. Abychom mohli diagnostikovat problém, rádi bychom shromáždili protokoly ladění.",
"<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>": "<0>Proč neskončit nastavením hesla, abyste mohli účet použít znovu?0><1>Budete si moci nechat své jméno a nastavit si avatar pro budoucí hovory 1>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Připojit se0><1>Or1><2>Zkopírovat odkaz a připojit se později2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Už máte účet?0><1><0>Přihlásit se0> Or <2>Jako host2>1>",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Odeslání ladících záznamů nám pomůže diagnostikovat problém.0>",
"<0>Oops, something's gone wrong.0>": "<0>Oops, něco se pokazilo.0>",
diff --git a/public/locales/de/app.json b/public/locales/de/app.json
index 25e21ff4..c41019cb 100644
--- a/public/locales/de/app.json
+++ b/public/locales/de/app.json
@@ -5,8 +5,6 @@
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Ein anderer Benutzer dieses Anrufs hat ein Problem. Um es besser diagnostizieren zu können, würden wir gerne ein Debug-Protokoll erstellen.",
"Audio": "Audio",
"Avatar": "Avatar",
- "Call link copied": "Anruflink kopiert",
- "Call type menu": "Anruftyp Menü",
"Camera": "Kamera",
"Close": "Schließen",
"Confirm password": "Passwort bestätigen",
@@ -23,7 +21,6 @@
"Go": "Los geht’s",
"Home": "Startseite",
"Include debug logs": "Debug-Protokolle einschließen",
- "Incompatible versions": "Inkompatible Versionen",
"Inspector": "Inspektor",
"Join call": "Anruf beitreten",
"Join call now": "Anruf beitreten",
@@ -36,9 +33,8 @@
"Microphone": "Mikrofon",
"More": "Mehr",
"No": "Nein",
- "Not now, return to home screen": "Nicht jetzt, zurück zum Startbildschirm",
+ "Not now, return to home screen": "Nicht jetzt, zurück zur Startseite",
"Not registered yet? <2>Create an account2>": "Noch nicht registriert? <2>Konto erstellen2>",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Andere Benutzer versuchen, diesem Aufruf von einer inkompatiblen Softwareversion aus beizutreten. Diese Benutzer sollten ihre Web-Browser Seite neu laden:<1>{userLis}1>",
"Password": "Passwort",
"Passwords must match": "Passwörter müssen übereinstimmen",
"Profile": "Profil",
@@ -47,7 +43,7 @@
"Register": "Registrieren",
"Registering…": "Registrierung …",
"Remove": "Entfernen",
- "Return to home screen": "Zurück zum Startbildschirm",
+ "Return to home screen": "Zurück zur Startseite",
"Select an option": "Wähle eine Option",
"Send debug logs": "Debug-Logs senden",
"Sending…": "Senden …",
@@ -59,23 +55,14 @@
"Speaker": "Wiedergabegerät",
"Spotlight": "Rampenlicht",
"Submit feedback": "Rückmeldung geben",
- "Take me Home": "Zurück zur Startseite",
"This call already exists, would you like to join?": "Dieser Aufruf existiert bereits, möchtest Du teilnehmen?",
"User menu": "Benutzermenü",
"Username": "Benutzername",
"Version: {{version}}": "Version: {{version}}",
"Video": "Video",
- "Video call": "Videoanruf",
- "Video call name": "Name des Videoanrufs",
"Waiting for other participants…": "Warte auf weitere Teilnehmer …",
- "Walkie-talkie call": "Walkie-Talkie-Anruf",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC wird in diesem Browser nicht unterstützt oder ist blockiert.",
"Yes, join call": "Ja, Anruf beitreten",
- "Your recent calls": "Deine letzten Anrufe",
- "Fetching group call timed out.": "Zeitüberschreitung beim Abrufen des Gruppenanrufs.",
- "Walkie-talkie call name": "Name des Walkie-Talkie-Anrufs",
"Sending debug logs…": "Sende Debug-Protokolle …",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Anruf beitreten0><1>Oder1><2>Anruflink kopieren und später beitreten2>",
"Copy": "Kopieren",
"Element Call Home": "Element Call-Startseite",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Übermittelte Problemberichte helfen uns, Fehler zu beheben.0>",
@@ -103,10 +90,37 @@
"This site is protected by ReCAPTCHA and the Google <2>Privacy Policy2> and <6>Terms of Service6> apply.<9>9>By clicking \"Register\", you agree to our <12>End User Licensing Agreement (EULA)12>": "Diese Seite wird durch reCAPTCHA geschützt und es gelten Googles <2>Datenschutzerklärung2> und <6>Nutzungsbedingungen6>. <9>9>Mit einem Klick auf „Registrieren“ akzeptierst du unseren <2>Endbenutzer-Lizenzvertrag (EULA)2>",
"Element Call is temporarily not end-to-end encrypted while we test scalability.": "Element Call ist temporär nicht Ende-zu-Ende-verschlüsselt, während wir die Skalierbarkeit testen.",
"Connectivity to the server has been lost.": "Die Verbindung zum Server wurde getrennt.",
- "Enable end-to-end encryption (password protected calls)": "Ende-zu-Ende-Verschlüsselung aktivieren (Passwort geschützte Anrufe)",
+ "Enable end-to-end encryption (password protected calls)": "Ende-zu-Ende-Verschlüsselung aktivieren (Passwortgeschützte Anrufe)",
"End-to-end encryption isn't supported on your browser.": "Ende-zu-Ende-Verschlüsselung wird in deinem Browser nicht unterstützt.",
"Thanks!": "Danke!",
"You were disconnected from the call": "Deine Verbindung wurde getrennt",
"Reconnect": "Erneut verbinden",
- "Retry sending logs": "Protokolle erneut senden"
+ "Retry sending logs": "Protokolle erneut senden",
+ "Encrypted": "Verschlüsselt",
+ "End call": "Anruf beenden",
+ "Grid": "Raster",
+ "Not encrypted": "Nicht verschlüsselt",
+ "Microphone off": "Mikrofon aus",
+ "Microphone on": "Mikrofon an",
+ "{{count, number}}|one": "{{count, number}}",
+ "{{count, number}}|other": "{{count, number}}",
+ "{{names, list(style: short;)}}": "{{names, list(style: short;)}}",
+ "Share": "Teilen",
+ "Share this call": "Diesen Anruf teilen",
+ "Sharing screen": "Bildschirm wird geteilt",
+ "You": "Du",
+ "Continue in browser": "Weiter im Browser",
+ "Name of call": "Name des Anrufs",
+ "Open in the app": "In der App öffnen",
+ "Ready to join?": "Bereit, beizutreten?",
+ "Unmute microphone": "Mikrofon aktivieren",
+ "Start video": "Video aktivieren",
+ "Stop video": "Video deaktivieren",
+ "Back to recents": "Zurück zu kürzlichen Anrufen",
+ "Select app": "App auswählen",
+ "Mute microphone": "Mikrofon deaktivieren",
+ "Start new call": "Neuen Anruf beginnen",
+ "Call not found": "Anruf nicht gefunden",
+ "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.": "Anrufe sind nun Ende-zu-Ende-verschlüsselt und müssen auf der Startseite erstellt werden. Damit stellen wir sicher, dass alle denselben Schlüssel verwenden.",
+ "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117": "Dein Webbrowser unterstützt keine Medien-Ende-zu-Ende-Verschlüsselung. Unterstützte Browser sind Chrome, Safari, Firefox >=117"
}
diff --git a/public/locales/el/app.json b/public/locales/el/app.json
index 20f0c200..3382943e 100644
--- a/public/locales/el/app.json
+++ b/public/locales/el/app.json
@@ -13,23 +13,15 @@
"Login to your account": "Συνδεθείτε στον λογαριασμό σας",
"Logging in…": "Σύνδεση…",
"Inspector": "Επιθεωρητής",
- "Incompatible versions": "Μη συμβατές εκδόσεις",
"Display name": "Εμφανιζόμενο όνομα",
"Developer Settings": "Ρυθμίσεις προγραμματιστή",
"Debug log request": "Αίτημα αρχείου καταγραφής",
- "Call link copied": "Ο σύνδεσμος κλήσης αντιγράφηκε",
"Avatar": "Avatar",
"<0>Oops, something's gone wrong.0>": "<0>Ωχ, κάτι πήγε στραβά.0>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Δημιουργήστε λογαριασμό0> Ή <2>Συμμετέχετε ως επισκέπτης2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Έχετε ήδη λογαριασμό;0><1><0>Συνδεθείτε0> Ή <2>Συμμετέχετε ως επισκέπτης2>1>",
- "Your recent calls": "Οι πρόσφατες κλήσεις σας",
"Yes, join call": "Ναι, συμμετοχή στην κλήση",
- "WebRTC is not supported or is being blocked in this browser.": "Το WebRTC δεν υποστηρίζεται ή έχει αποκλειστεί σε αυτό το πρόγραμμα περιήγησης.",
- "Walkie-talkie call name": "Όνομα κλήσης walkie-talkie",
- "Walkie-talkie call": "Κλήση walkie-talkie",
"Waiting for other participants…": "Αναμονή για άλλους συμμετέχοντες…",
- "Video call name": "Όνομα βίντεο κλήσης",
- "Video call": "Βίντεο κλήση",
"Video": "Βίντεο",
"Username": "Όνομα χρήστη",
"This call already exists, would you like to join?": "Αυτή η κλήση υπάρχει ήδη, θα θέλατε να συμμετάσχετε;",
@@ -64,20 +56,16 @@
"Send debug logs": "Αποστολή αρχείων καταγραφής",
"Recaptcha dismissed": "Το recaptcha απορρίφθηκε",
"<0>Thanks for your feedback!0>": "<0>Ευχαριστώ για τα σχόλιά σας!0>",
- "Call type menu": "Μενού είδους κλήσης",
"Local volume": "Τοπική ένταση",
"Home": "Αρχική",
"Show connection stats": "Εμφάνιση στατιστικών σύνδεσης",
- "Take me Home": "Μετάβαση στην Αρχική",
"{{displayName}} is presenting": "{{displayName}} παρουσιάζει",
"<0>0><1>1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0>0><1>1>Μπορείτε να ανακαλέσετε τη συγκατάθεσή σας αποεπιλέγοντας αυτό το πλαίσιο. Εάν βρίσκεστε σε κλήση, η ρύθμιση αυτή θα τεθεί σε ισχύ στο τέλος της.",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Συμμετοχή στην κλήση τώρα0><1>Or1><2>Αντιγραφή συνδέσμου κλήσης και συμμετοχή αργότερα2>",
"<0>We'd love to hear your feedback so we can improve your experience.0>": "<0>Θα θέλαμε να ακούσουμε τα σχόλιά σας ώστε να βελτιώσουμε την εμπειρία σας.0>",
"<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>": "<0>Γιατί να μην ολοκληρώσετε με τη δημιουργία ενός κωδικού πρόσβασης για τη διατήρηση του λογαριασμού σας;0><1>Θα μπορείτε να διατηρήσετε το όνομά σας και να ορίσετε ένα avatar για χρήση σε μελλοντικές κλήσεις.1>",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Ένας άλλος χρήστης σε αυτή την κλήση έχει ένα πρόβλημα. Για την καλύτερη διάγνωση αυτών των προβλημάτων θα θέλαμε να συλλέξουμε ένα αρχείο καταγραφής σφαλμάτων.",
"By participating in this beta, you consent to the collection of anonymous data, which we use to improve the product. You can find more information about which data we track in our <2>Privacy Policy2> and our <5>Cookie Policy5>.": "Συμμετέχοντας σε αυτή τη δοκιμαστική έκδοση, συναινείτε στη συλλογή ανώνυμων δεδομένων, τα οποία χρησιμοποιούμε για τη βελτίωση του προϊόντος. Μπορείτε να βρείτε περισσότερες πληροφορίες σχετικά με το ποια δεδομένα καταγράφουμε στην <2>Πολιτική απορρήτου2> και στην <5>Πολιτική cookies5>.",
"If you are experiencing issues or simply would like to provide some feedback, please send us a short description below.": "Εάν αντιμετωπίζετε προβλήματα ή απλά θέλετε να μας δώσετε κάποια σχόλια, παρακαλούμε στείλτε μας μια σύντομη περιγραφή παρακάτω.",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Κάποιοι άλλοι χρήστες προσπαθούν να συμμετάσχουν σε αυτή την κλήση από ασύμβατες εκδόσεις. Αυτοί οι χρήστες θα πρέπει να βεβαιωθούν ότι έχουν κάνει ανανέωση (refresh) την καρτέλα του περιηγητή τους:<1>{userLis}1>",
"Expose developer settings in the settings window.": "Εμφάνιση ρυθμίσεων προγραμματιστή στο παράθυρο ρυθμίσεων.",
"Feedback": "Ανατροφοδότηση",
"Submitting…": "Υποβολή…",
@@ -95,7 +83,6 @@
"Sending debug logs…": "Αποστολή αρχείων καταγραφής…",
"Submit": "Υποβολή",
"Your feedback": "Τα σχόλιά σας",
- "Fetching group call timed out.": "Η ομαδική κλήση έληξε από τέλος χρόνου.",
"Spotlight": "Spotlight",
"Element Call Home": "Element Κεντρική Οθόνη Κλήσεων"
}
diff --git a/public/locales/en-GB/app.json b/public/locales/en-GB/app.json
index f6a7ed65..6dd6e72b 100644
--- a/public/locales/en-GB/app.json
+++ b/public/locales/en-GB/app.json
@@ -9,7 +9,6 @@
"<0>0><1>1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0>0><1>1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Create an account0> Or <2>Access as a guest2>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Join call now0><1>Or1><2>Copy call link and join later2>",
"<0>Oops, something's gone wrong.0>": "<0>Oops, something's gone wrong.0>",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Submitting debug logs will help us track down the problem.0>",
"<0>Thanks for your feedback!0>": "<0>Thanks for your feedback!0>",
@@ -18,15 +17,17 @@
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.",
"Audio": "Audio",
"Avatar": "Avatar",
+ "Back to recents": "Back to recents",
"By clicking \"Go\", you agree to our <2>End User Licensing Agreement (EULA)2>": "By clicking \"Go\", you agree to our <2>End User Licensing Agreement (EULA)2>",
"By clicking \"Join call now\", you agree to our <2>End User Licensing Agreement (EULA)2>": "By clicking \"Join call now\", you agree to our <2>End User Licensing Agreement (EULA)2>",
"By participating in this beta, you consent to the collection of anonymous data, which we use to improve the product. You can find more information about which data we track in our <2>Privacy Policy2> and our <5>Cookie Policy5>.": "By participating in this beta, you consent to the collection of anonymous data, which we use to improve the product. You can find more information about which data we track in our <2>Privacy Policy2> and our <5>Cookie Policy5>.",
- "Call link copied": "Call link copied",
- "Call type menu": "Call type menu",
+ "Call not found": "Call not found",
+ "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.": "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.",
"Camera": "Camera",
"Close": "Close",
"Confirm password": "Confirm password",
"Connectivity to the server has been lost.": "Connectivity to the server has been lost.",
+ "Continue in browser": "Continue in browser",
"Copied!": "Copied!",
"Copy": "Copy",
"Copy and share this call link": "Copy and share this call link",
@@ -66,13 +67,17 @@
"Microphone off": "Microphone off",
"Microphone on": "Microphone on",
"More": "More",
+ "Mute microphone": "Mute microphone",
+ "Name of call": "Name of call",
"No": "No",
"Not encrypted": "Not encrypted",
"Not now, return to home screen": "Not now, return to home screen",
"Not registered yet? <2>Create an account2>": "Not registered yet? <2>Create an account2>",
+ "Open in the app": "Open in the app",
"Password": "Password",
"Passwords must match": "Passwords must match",
"Profile": "Profile",
+ "Ready to join?": "Ready to join?",
"Recaptcha dismissed": "Recaptcha dismissed",
"Recaptcha not loaded": "Recaptcha not loaded",
"Reconnect": "Reconnect",
@@ -82,6 +87,7 @@
"Retry sending logs": "Retry sending logs",
"Return to home screen": "Return to home screen",
"Select an option": "Select an option",
+ "Select app": "Select app",
"Send debug logs": "Send debug logs",
"Sending debug logs…": "Sending debug logs…",
"Sending…": "Sending…",
@@ -96,28 +102,25 @@
"Sign out": "Sign out",
"Speaker": "Speaker",
"Spotlight": "Spotlight",
+ "Start new call": "Start new call",
+ "Start video": "Start video",
+ "Stop video": "Stop video",
"Submit": "Submit",
"Submit feedback": "Submit feedback",
"Submitting…": "Submitting…",
- "Take me Home": "Take me Home",
"Thanks, we received your feedback!": "Thanks, we received your feedback!",
"Thanks!": "Thanks!",
"This call already exists, would you like to join?": "This call already exists, would you like to join?",
"This site is protected by ReCAPTCHA and the Google <2>Privacy Policy2> and <6>Terms of Service6> apply.<9>9>By clicking \"Register\", you agree to our <12>End User Licensing Agreement (EULA)12>": "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy2> and <6>Terms of Service6> apply.<9>9>By clicking \"Register\", you agree to our <12>End User Licensing Agreement (EULA)12>",
+ "Unmute microphone": "Unmute microphone",
"User menu": "User menu",
"Username": "Username",
"Version: {{version}}": "Version: {{version}}",
"Video": "Video",
- "Video call": "Video call",
- "Video call name": "Video call name",
- "Video off": "Video off",
- "Video on": "Video on",
"Waiting for other participants…": "Waiting for other participants…",
- "Walkie-talkie call": "Walkie-talkie call",
- "Walkie-talkie call name": "Walkie-talkie call name",
"Yes, join call": "Yes, join call",
"You": "You",
"You were disconnected from the call": "You were disconnected from the call",
"Your feedback": "Your feedback",
- "Your recent calls": "Your recent calls"
+ "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117": "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117"
}
diff --git a/public/locales/es/app.json b/public/locales/es/app.json
index 594ed394..c1ce331c 100644
--- a/public/locales/es/app.json
+++ b/public/locales/es/app.json
@@ -1,22 +1,15 @@
{
"<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>": "<0>¿Por qué no mantienes tu cuenta estableciendo una contraseña?0><1>Podrás mantener tu nombre y establecer un avatar para usarlo en futuras llamadas1>",
- "Your recent calls": "Tus llamadas recientes",
- "WebRTC is not supported or is being blocked in this browser.": "Tu navegador no soporta o está bloqueando WebRTC.",
"This call already exists, would you like to join?": "Esta llamada ya existe, ¿te gustaría unirte?",
"Register": "Registrarse",
"Not registered yet? <2>Create an account2>": "¿No estás registrado todavía? <2>Crear una cuenta2>",
"Login to your account": "Iniciar sesión en tu cuenta",
"Yes, join call": "Si, unirse a la llamada",
- "Walkie-talkie call name": "Nombre de la llamada Walkie-talkie",
- "Walkie-talkie call": "Llamada Walkie-talkie",
"Waiting for other participants…": "Esperando a los otros participantes…",
- "Video call name": "Nombre de la videollamada",
- "Video call": "Videollamada",
"Video": "Video",
"Version: {{version}}": "Versión: {{version}}",
"Username": "Nombre de usuario",
"User menu": "Menú de usuario",
- "Take me Home": "Volver al inicio",
"Submit feedback": "Enviar comentarios",
"Spotlight": "Foco",
"Speaker": "Altavoz",
@@ -37,7 +30,6 @@
"Profile": "Perfil",
"Passwords must match": "Las contraseñas deben coincidir",
"Password": "Contraseña",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Otros usuarios están intentando unirse a la llamada con versiones incompatibles. Estos usuarios deberán asegurarse de que han refrescado sus navegadores:<1>{userLis}1>",
"Not now, return to home screen": "Ahora no, volver a la pantalla de inicio",
"No": "No",
"More": "Más",
@@ -50,12 +42,10 @@
"Join call now": "Unirse a la llamada ahora",
"Join call": "Unirse a la llamada",
"Inspector": "Inspector",
- "Incompatible versions": "Versiones incompatibles",
"Include debug logs": "Incluir registros de depuración",
"Home": "Inicio",
"Go": "Comenzar",
"Full screen": "Pantalla completa",
- "Fetching group call timed out.": "Se ha agotado el tiempo de espera para obtener la llamada grupal.",
"Exit full screen": "Salir de pantalla completa",
"Download debug logs": "Descargar registros de depuración",
"Display name": "Nombre a mostrar",
@@ -68,13 +58,10 @@
"Confirm password": "Confirmar contraseña",
"Close": "Cerrar",
"Camera": "Cámara",
- "Call type menu": "Menú de tipo de llamada",
- "Call link copied": "Enlace de la llamada copiado",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Otro usuario en esta llamada está teniendo problemas. Para diagnosticar estos problemas nos gustaría recopilar un registro de depuración.",
"Audio": "Audio",
"Avatar": "Avatar",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Crear una cuenta0> o <2>Acceder como invitado2>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Unirse ahora0><1>Or1><2>Copiar el enlace y unirse más tarde2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>¿Ya tienes una cuenta?0><1><0>Iniciar sesión0> o <2>Acceder como invitado2>1>",
"Element Call Home": "Inicio de Element Call",
"Copy": "Copiar",
diff --git a/public/locales/et/app.json b/public/locales/et/app.json
index b621d610..0cd03c97 100644
--- a/public/locales/et/app.json
+++ b/public/locales/et/app.json
@@ -1,15 +1,12 @@
{
"<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>": "<0>Kas soovid salasõna seadistada ja sellega oma kasutajakonto alles jätta?0><1>Nii saad säilitada oma nime ja määrata profiilipildi, mida saad kasutada tulevastes kõnedes1>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Liitu kõnega kohe0><1> Või1><2>Kopeeri kõne link ja liitu hiljem2>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Loo konto0> Või <2>Sisene külalisena2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>On sul juba konto?0><1><0>Logi sisse0> Või <2>Logi sisse külalisena2>1>",
"Inspector": "Inspektor",
- "Incompatible versions": "Ühildumatud versioonid",
"Include debug logs": "Lisa veatuvastuslogid",
"Home": "Avavaatesse",
"Go": "Jätka",
"Full screen": "Täisekraan",
- "Fetching group call timed out.": "Grupikõne kättesaamine aegus.",
"Exit full screen": "Välju täisekraanivaatest",
"Download debug logs": "Lae alla veatuvastuslogid",
"Display name": "Kuvatav nimi",
@@ -22,8 +19,6 @@
"Confirm password": "Kinnita salasõna",
"Close": "Sulge",
"Camera": "Kaamera",
- "Call type menu": "Kõnetüübi valik",
- "Call link copied": "Kõne link on kopeeritud",
"Avatar": "Tunnuspilt",
"Audio": "Heli",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Ühel teisel selles kõnes osalejal on lahenduse kasutamisel tekkinud probleem ning selle põhjuse leidmiseks me sooviksime koguda silumislogisid.",
@@ -32,7 +27,6 @@
"Not registered yet? <2>Create an account2>": "Sa pole veel registreerunud? <2>Loo kasutajakonto2>",
"Not now, return to home screen": "Mitte praegu, mine tagasi avalehele",
"No": "Ei",
- "Your recent calls": "Hiljutised kõned",
"More": "Rohkem",
"Microphone": "Mikrofon",
"Login to your account": "Logi oma kontosse sisse",
@@ -43,7 +37,6 @@
"Join existing call?": "Liitu juba käimasoleva kõnega?",
"Join call now": "Liitu kõnega kohe",
"Join call": "Kõnega liitumine",
- "Take me Home": "Mine avalehele",
"Submit feedback": "Jaga tagasisidet",
"Spotlight": "Rambivalgus",
"Speaker": "Kõlar",
@@ -63,19 +56,13 @@
"Recaptcha not loaded": "Robotilõks pole laetud",
"Recaptcha dismissed": "Robotilõks on vahele jäetud",
"Profile": "Profiil",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Teised kasutajad üritavad selle kõnega liituda ühildumatuid versioone kasutades. Need kasutajad peaksid oma brauseris lehe uuestilaadimise tegema:<1>{userLis}1>",
"Waiting for other participants…": "Ootame teiste osalejate lisandumist…",
- "Video call name": "Videokõne nimi",
- "Video call": "Videokõne",
"Video": "Video",
"Version: {{version}}": "Versioon: {{version}}",
"Username": "Kasutajanimi",
"This call already exists, would you like to join?": "See kõne on juba olemas, kas soovid liituda?",
"User menu": "Kasutajamenüü",
"Yes, join call": "Jah, liitu kõnega",
- "Walkie-talkie call": "Walkie-talkie stiilis kõne",
- "Walkie-talkie call name": "Walkie-talkie stiilis kõne nimi",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC pole kas selles brauseris toetatud või on keelatud.",
"Element Call Home": "Element Call Home",
"Copy": "Kopeeri",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Kui saadad meile vealogid, siis on lihtsam vea põhjust otsida.0>",
@@ -90,7 +77,7 @@
"Submit": "Saada",
"If you are experiencing issues or simply would like to provide some feedback, please send us a short description below.": "Kui selle rakenduse kasutamisel tekib sul probleeme või lihtsalt soovid oma arvamust avaldada, siis palun täida alljärgnev lühike kirjeldus.",
"Feedback": "Tagasiside",
- "{{count}} stars|one": "{{count}} tärn",
+ "{{count}} stars|one": "{{count}} tärni",
"{{count}} stars|other": "{{count}} tärni",
"How did it go?": "Kuidas sujus?",
"{{displayName}}, your call has ended.": "{{displayName}}, sinu kõne on lõppenud.",
@@ -108,5 +95,32 @@
"Reconnect": "Ühenda uuesti",
"Thanks!": "Tänud!",
"End-to-end encryption isn't supported on your browser.": "Sinu brauser ei toeta läbivat krüptimist.",
- "Enable end-to-end encryption (password protected calls)": "Võta kasutusele läbiv krüptimine (salasõnaga kaitstud kõned)"
+ "Enable end-to-end encryption (password protected calls)": "Võta kasutusele läbiv krüptimine (salasõnaga kaitstud kõned)",
+ "Encrypted": "Krüptitud",
+ "End call": "Lõpeta kõne",
+ "Grid": "Ruudustik",
+ "Microphone off": "Mikrofon ei tööta",
+ "Microphone on": "Mikrofon töötab",
+ "Not encrypted": "Krüptimata",
+ "Share": "Jaga",
+ "Share this call": "Jaga seda kõnet",
+ "Sharing screen": "Ekraanivaade on jagamisel",
+ "{{count, number}}|one": "{{count, number}}",
+ "{{count, number}}|other": "{{count, number}}",
+ "{{names, list(style: short;)}}": "{{names, list(style: short;)}}",
+ "You": "Sina",
+ "Continue in browser": "Jätka veebibrauseris",
+ "Mute microphone": "Summuta mikrofon",
+ "Name of call": "Kõne nimi",
+ "Open in the app": "Ava rakenduses",
+ "Ready to join?": "Oled valmis liituma?",
+ "Select app": "Vali rakendus",
+ "Start new call": "Algata uus kõne",
+ "Back to recents": "Tagasi hiljutiste kõnede juurde",
+ "Stop video": "Peata videovoog",
+ "Start video": "Lülita videovoog sisse",
+ "Unmute microphone": "Lülita mikrofon sisse",
+ "Call not found": "Kõnet ei leidu",
+ "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.": "Kõned on nüüd läbivalt krüptitud ning need pead looma kodulehelt. Sellega tagad, et kõik kasutavad samu krüptovõtmeid.",
+ "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117": "Sinu veebibrauser ei toeta meedia läbivat krüptimist. Toetatud brauserid on Chrome, Chromium, Safari ja Firefox >=117"
}
diff --git a/public/locales/fa/app.json b/public/locales/fa/app.json
index 14075535..5c4348aa 100644
--- a/public/locales/fa/app.json
+++ b/public/locales/fa/app.json
@@ -1,9 +1,6 @@
{
- "Your recent calls": "تماسهای اخیر شما",
- "Video call": "تماس تصویری",
"Video": "ویدیو",
"Username": "نام کاربری",
- "Take me Home": "مرا به خانه ببر",
"Speaker": "بلندگو",
"Sign out": "خروج",
"Sign in": "ورود",
@@ -34,8 +31,6 @@
"Confirm password": "تایید رمزعبور",
"Close": "بستن",
"Camera": "دوربین",
- "Call type menu": "منوی نوع تماس",
- "Call link copied": "لینک تماس کپی شد",
"Avatar": "آواتار",
"Audio": "صدا",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "کاربر دیگری در این تماس مشکلی دارد. برای تشخیص بهتر مشکل، بهتر است ما لاگ عیبیابی را جمعآوری کنیم.",
@@ -44,7 +39,6 @@
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>از قبل حساب کاربری دارید؟0><1><0>ورود0> Or <2>به عنوان یک میهمان وارد شوید2>1>",
"Local volume": "حجم داخلی",
"Inspector": "بازرس",
- "Incompatible versions": "نسخههای ناسازگار",
"Spotlight": "نور افکن",
"Show call inspector": "نمایش بازرس تماس",
"Share screen": "اشتراک گذاری صفحه نمایش",
@@ -59,23 +53,16 @@
"Recaptcha not loaded": "کپچا بارگیری نشد",
"Recaptcha dismissed": "ریکپچا رد شد",
"Passwords must match": "رمز عبور باید همخوانی داشته باشد",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "کاربران دیگر تلاش میکنند با ورژنهای ناسازگار به مکالمه بپیوندند. این کاربران باید از بروزرسانی مرورگرشان اطمینان داشته باشند:<1>{userLis}1>",
"Not registered yet? <2>Create an account2>": "هنوز ثبتنام نکردهاید؟ <2>ساخت حساب کاربری2>",
"Not now, return to home screen": "الان نه، به صفحه اصلی برگردید",
"Logging in…": "ورود…",
"Include debug logs": "شامل لاگهای عیبیابی",
- "Fetching group call timed out.": "زمان اتصال به مکالمه گروهی تمام شد.",
"Yes, join call": "بله، به تماس بپیوندید",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC (ارتباطات رسانهای بلادرنگ مانند انتقال صدا، ویدئو و داده) در این مرورگر پشتیبانی نمیشود یا در حال مسدود شدن است.",
- "Walkie-talkie call name": "نامِ تماسِ واکی-تاکی",
- "Walkie-talkie call": "تماسِ واکی-تاکی",
"Waiting for other participants…": "در انتظار برای دیگر شرکتکنندگان…",
- "Video call name": "نامِ تماسِ تصویری",
"Version: {{version}}": "نسخه: {{نسخه}}",
"User menu": "فهرست کاربر",
"This call already exists, would you like to join?": "این تماس از قبل وجود دارد، میخواهید بپیوندید؟",
"Submit feedback": "بازخورد ارائه دهید",
"Element Call Home": "خانهٔ تماس المنت",
- "Copy": "رونوشت",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>اکنون به تماس پیوسته0><1>یا1><2>پیوند تماس را رونوشت کرده و بعداً بپیوندید2>"
+ "Copy": "رونوشت"
}
diff --git a/public/locales/fr/app.json b/public/locales/fr/app.json
index 125367e1..e2767245 100644
--- a/public/locales/fr/app.json
+++ b/public/locales/fr/app.json
@@ -4,8 +4,6 @@
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Un autre utilisateur dans cet appel a un problème. Pour nous permettre de résoudre le problème, nous aimerions récupérer un journal de débogage.",
"Audio": "Audio",
"Avatar": "Avatar",
- "Call link copied": "Lien de l’appel copié",
- "Call type menu": "Menu de type d’appel",
"Camera": "Caméra",
"Close": "Fermer",
"Confirm password": "Confirmer le mot de passe",
@@ -22,7 +20,6 @@
"Go": "Commencer",
"Home": "Accueil",
"Include debug logs": "Inclure les journaux de débogage",
- "Incompatible versions": "Versions incompatibles",
"Inspector": "Inspecteur",
"Join call": "Rejoindre l’appel",
"Join call now": "Rejoindre l’appel maintenant",
@@ -37,7 +34,6 @@
"No": "Non",
"Not now, return to home screen": "Pas maintenant, retourner à l’accueil",
"Not registered yet? <2>Create an account2>": "Pas encore de compte ? <2>En créer un2>",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Des utilisateurs essayent de rejoindre cet appel à partir de versions incompatibles. Ces utilisateurs doivent rafraîchir la page dans leur navigateur : <1>{userLis}1>",
"Password": "Mot de passe",
"Passwords must match": "Les mots de passe doivent correspondre",
"Profile": "Profil",
@@ -56,18 +52,10 @@
"Sign in": "Connexion",
"Sign out": "Déconnexion",
"Spotlight": "Premier plan",
- "Submit feedback": "Envoyer des retours",
- "Take me Home": "Retouner à l’accueil",
+ "Submit feedback": "Envoyer un commentaire",
"This call already exists, would you like to join?": "Cet appel existe déjà, voulez-vous le rejoindre ?",
- "Fetching group call timed out.": "Échec de connexion à l’appel de groupe dans le temps imparti.",
- "Your recent calls": "Appels récents",
"Yes, join call": "Oui, rejoindre l’appel",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC n’est pas pris en charge ou est bloqué par ce navigateur.",
- "Walkie-talkie call name": "Nom de l’appel talkie-walkie",
- "Walkie-talkie call": "Appel talkie-walkie",
"Waiting for other participants…": "En attente d’autres participants…",
- "Video call name": "Nom de l’appel vidéo",
- "Video call": "Appel vidéo",
"Video": "Vidéo",
"Version: {{version}}": "Version : {{version}}",
"Username": "Nom d’utilisateur",
@@ -75,7 +63,6 @@
"Speaker": "Intervenant",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Vous avez déjà un compte ?0><1><0>Se connecter0> Ou <2>Accès invité2>1>",
"Sending debug logs…": "Envoi des journaux de débogage…",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Rejoindre l’appel maintenant0><1>Ou1><2>Copier le lien de l’appel et rejoindre plus tard2>",
"Element Call Home": "Accueil Element Call",
"Copy": "Copier",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Soumettre les journaux de débogage nous aidera à déterminer le problème.0>",
@@ -88,7 +75,7 @@
"Thanks, we received your feedback!": "Merci, nous avons reçu vos commentaires !",
"Submitting…": "Envoi…",
"Submit": "Envoyer",
- "If you are experiencing issues or simply would like to provide some feedback, please send us a short description below.": "Si vous rencontrez des problèmes, ou vous voulez simplement faire un commentaire, veuillez nous envoyer une courte description ci-dessous.",
+ "If you are experiencing issues or simply would like to provide some feedback, please send us a short description below.": "Si vous rencontrez des problèmes, ou vous voulez simplement faire un commentaire, faites-en une courte description ci-dessous.",
"Feedback": "Commentaires",
"{{count}} stars|other": "{{count}} favoris",
"<0>We'd love to hear your feedback so we can improve your experience.0>": "<0>Nous aimerions avoir vos commentaires afin que nous puissions améliorer votre expérience.0>",
@@ -108,5 +95,32 @@
"You were disconnected from the call": "Vous avez été déconnecté de l’appel",
"Connectivity to the server has been lost.": "La connexion avec le serveur a été perdue.",
"End-to-end encryption isn't supported on your browser.": "Le chiffrement de bout-en-bout n’est pas pris en charge par votre navigateur.",
- "Enable end-to-end encryption (password protected calls)": "Activer le chiffrement de bout-en-bout (appels protégés par mot de passe)"
+ "Enable end-to-end encryption (password protected calls)": "Activer le chiffrement de bout-en-bout (appels protégés par mot de passe)",
+ "{{count, number}}|other": "{{count, number}}",
+ "{{names, list(style: short;)}}": "{{names, list(style: short;)}}",
+ "Encrypted": "Chiffré",
+ "End call": "Terminer l’appel",
+ "Grid": "Grille",
+ "Microphone off": "Microphone éteint",
+ "Microphone on": "Microphone allumé",
+ "Share": "Partager",
+ "Share this call": "Partager cet appel",
+ "Sharing screen": "L’écran est partagé",
+ "{{count, number}}|one": "{{count, number}}",
+ "Not encrypted": "Non chiffré",
+ "You": "Vous",
+ "Continue in browser": "Continuer dans le navigateur",
+ "Mute microphone": "Couper le microphone",
+ "Name of call": "Nom de l’appel",
+ "Open in the app": "Ouvrir dans l’application",
+ "Ready to join?": "Prêt à rejoindre ?",
+ "Select app": "Choisissez l’application",
+ "Start new call": "Démarrer un nouvel appel",
+ "Back to recents": "Revenir à l’historique des appels",
+ "Start video": "Démarrer la vidéo",
+ "Stop video": "Arrêter la vidéo",
+ "Unmute microphone": "Allumer le microphone",
+ "Call not found": "Appel non trouvé",
+ "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.": "Les appels sont maintenant chiffrés de bout-en-bout et doivent être créés depuis la page d’accueil. Cela permet d’être sûr que tout le monde utilise la même clé de chiffrement.",
+ "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117": "Votre navigateur web ne prend pas en charge le chiffrement de bout-en-bout des médias. Les navigateurs pris en charge sont Chrome, Safari, Firefox >= 117"
}
diff --git a/public/locales/id/app.json b/public/locales/id/app.json
index 683284d1..2ab73e18 100644
--- a/public/locales/id/app.json
+++ b/public/locales/id/app.json
@@ -5,8 +5,6 @@
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Pengguna yang lain di panggilan ini sedang mengalami masalah. Supaya dapat mendiagnosa masalah ini, kami ingin mengumpulkan sebuah catatan pengawakutuan.",
"Audio": "Audio",
"Avatar": "Avatar",
- "Call link copied": "Tautan panggilan disalin",
- "Call type menu": "Menu jenis panggilan",
"Camera": "Kamera",
"Close": "Tutup",
"Confirm password": "Konfirmasi kata sandi",
@@ -19,12 +17,10 @@
"Display name": "Nama tampilan",
"Download debug logs": "Unduh catatan pengawakutuan",
"Exit full screen": "Keluar dari layar penuh",
- "Fetching group call timed out.": "Waktu pendapatan panggilan grup habis.",
"Full screen": "Layar penuh",
"Go": "Bergabung",
"Home": "Beranda",
"Include debug logs": "Termasuk catatan pengawakutuan",
- "Incompatible versions": "Versi tidak kompatibel",
"Inspector": "Inspektur",
"Join call": "Bergabung ke panggilan",
"Join call now": "Bergabung ke panggilan sekarang",
@@ -39,7 +35,6 @@
"No": "Tidak",
"Not now, return to home screen": "Tidak sekarang, kembali ke layar beranda",
"Not registered yet? <2>Create an account2>": "Belum terdaftar? <2>Buat sebuah akun2>",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Pengguna lain sedang mencoba bergabung ke panggilan ini dari versi yang tidak kompatibel. Pengguna berikut seharusnya memastikan bahwa mereka telah memuat ulang peramban mereka: <1>{userLis}1>",
"Password": "Kata sandi",
"Passwords must match": "Kata sandi harus cocok",
"Profile": "Profil",
@@ -60,22 +55,14 @@
"Speaker": "Pembicara",
"Spotlight": "Sorotan",
"Submit feedback": "Kirim masukan",
- "Take me Home": "Bawa saya ke Beranda",
"This call already exists, would you like to join?": "Panggilan ini sudah ada, apakah Anda ingin bergabung?",
"User menu": "Menu pengguna",
"Username": "Nama pengguna",
"Version: {{version}}": "Versi: {{version}}",
"Video": "Video",
- "Video call": "Panggilan video",
- "Video call name": "Nama panggilan video",
"Waiting for other participants…": "Menunggu peserta lain…",
- "Walkie-talkie call": "Panggilan protofon",
- "Walkie-talkie call name": "Nama panggilan protofon",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC tidak didukung atau diblokir di peramban ini.",
"Yes, join call": "Ya, bergabung ke panggilan",
- "Your recent calls": "Panggilan Anda terkini",
"Sending debug logs…": "Mengirimkan catatan pengawakutuan…",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Bergabung ke panggilan sekarang0><1>Atau1><2>Salin tautan dan bergabung nanti2>",
"Element Call Home": "Beranda Element Call",
"Copy": "Salin",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Mengirim catatan pengawakutuan akan membantu kami melacak masalahnya.0>",
@@ -108,5 +95,32 @@
"Retry sending logs": "Kirim ulang catatan",
"You were disconnected from the call": "Anda terputus dari panggilan",
"Reconnect": "Hubungkan ulang",
- "Thanks!": "Terima kasih!"
+ "Thanks!": "Terima kasih!",
+ "{{count, number}}|other": "{{count, number}}",
+ "Encrypted": "Terenkripsi",
+ "End call": "Akhiri panggilan",
+ "Grid": "Kisi",
+ "Microphone off": "Mikrofon dimatikan",
+ "Microphone on": "Mikrofon dinyalakan",
+ "Not encrypted": "Tidak terenkripsi",
+ "Share": "Bagikan",
+ "Share this call": "Bagikan panggilan ini",
+ "Sharing screen": "Berbagi layar",
+ "{{count, number}}|one": "{{count, number}}",
+ "{{names, list(style: short;)}}": "{{names, list(style: short;)}}",
+ "You": "Anda",
+ "Continue in browser": "Lanjutkan dalam peramban",
+ "Mute microphone": "Matikan mikrofon",
+ "Name of call": "Nama panggilan",
+ "Open in the app": "Buka dalam aplikasi",
+ "Ready to join?": "Siap untuk bergabung?",
+ "Select app": "Pilih plikasi",
+ "Start new call": "Mulai panggilan baru",
+ "Start video": "Nyalakan video",
+ "Stop video": "Matikan video",
+ "Unmute microphone": "Nyalakan mikrofon",
+ "Back to recents": "Kembali ke terkini",
+ "Call not found": "Panggilan tidak ditemukan",
+ "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.": "Panggilan sekarang terenkripsi secara ujung ke ujung dan harus dibuat dari laman beranda. Ini memastikan bahwa semuanya menggunakan kunci enkripsi yang sama.",
+ "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117": "Peramban web Anda tidak mendukung enkripsi media ujung ke ujung. Peramban yang didukung adalah Chrome, Safari, dan Firefox >=117"
}
diff --git a/public/locales/it/app.json b/public/locales/it/app.json
index 0967ef42..38188f72 100644
--- a/public/locales/it/app.json
+++ b/public/locales/it/app.json
@@ -1 +1,125 @@
-{}
+{
+ "{{count, number}}|one": "{{count, number}}",
+ "{{count, number}}|other": "{{count, number}}",
+ "{{count}} stars|one": "{{count}} stelle",
+ "{{count}} stars|other": "{{count}} stelle",
+ "{{displayName}} is presenting": "{{displayName}} sta presentando",
+ "{{names, list(style: short;)}}": "{{names, list(style: short;)}}",
+ "<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Hai già un profilo?0><1><0>Accedi0> o <2>Accedi come ospite2>1>",
+ "<0>Create an account0> Or <2>Access as a guest2>": "<0>Crea un profilo0> o <2>Accedi come ospite2>",
+ "<0>Oops, something's gone wrong.0>": "<0>Ops, qualcosa è andato storto.0>",
+ "<0>Submitting debug logs will help us track down the problem.0>": "<0>L'invio di registri di debug ci aiuterà ad individuare il problema.0>",
+ "<0>Thanks for your feedback!0>": "<0>Grazie per la tua opinione!0>",
+ "<0>We'd love to hear your feedback so we can improve your experience.0>": "<0>Vorremmo sapere la tua opinione in modo da migliorare l'esperienza.0>",
+ "Audio": "Audio",
+ "Avatar": "Avatar",
+ "By clicking \"Go\", you agree to our <2>End User Licensing Agreement (EULA)2>": "Cliccando \"Vai\", accetti il nostro <2>accordo di licenza con l'utente finale (EULA)2>",
+ "Camera": "Fotocamera",
+ "Close": "Chiudi",
+ "Confirm password": "Conferma password",
+ "Connectivity to the server has been lost.": "La connessione al server è stata persa.",
+ "Copied!": "Copiato!",
+ "Copy": "Copia",
+ "Copy and share this call link": "Copia e condividi questo collegamento alla chiamata",
+ "Create account": "Crea profilo",
+ "Debug log": "Registro di debug",
+ "Debug log request": "Richiesta registro di debug",
+ "Developer": "Sviluppatore",
+ "Developer Settings": "Impostazioni per sviluppatori",
+ "Display name": "Nome da mostrare",
+ "Download debug logs": "Scarica registri di debug",
+ "Element Call Home": "Inizio di Element Call",
+ "Enable end-to-end encryption (password protected calls)": "Attiva crittografia end-to-end (chiamate protette da password)",
+ "Encrypted": "Cifrata",
+ "End call": "Termina chiamata",
+ "Exit full screen": "Esci da schermo intero",
+ "Expose developer settings in the settings window.": "Mostra le impostazioni per sviluppatori nella finestra delle impostazioni.",
+ "Feedback": "Feedback",
+ "Full screen": "Schermo intero",
+ "Go": "Vai",
+ "Grid": "Griglia",
+ "Home": "Pagina iniziale",
+ "How did it go?": "Com'è andata?",
+ "Include debug logs": "Includi registri di debug",
+ "Join call": "Entra in chiamata",
+ "Join call now": "Entra in chiamata ora",
+ "Loading…": "Caricamento…",
+ "Local volume": "Volume locale",
+ "Logging in…": "Accesso…",
+ "Login": "Accedi",
+ "Login to your account": "Accedi al tuo profilo",
+ "Microphone": "Microfono",
+ "Microphone off": "Microfono spento",
+ "Microphone on": "Microfono acceso",
+ "More": "Altro",
+ "No": "No",
+ "Not encrypted": "Non cifrata",
+ "Inspector": "Ispettore",
+ "Join existing call?": "Entrare in una chiamata esistente?",
+ "Not registered yet? <2>Create an account2>": "Non hai ancora un profilo? <2>Creane uno2>",
+ "Password": "Password",
+ "Passwords must match": "Le password devono coincidere",
+ "Profile": "Profilo",
+ "Recaptcha dismissed": "Recaptcha annullato",
+ "Recaptcha not loaded": "Recaptcha non caricato",
+ "Reconnect": "Riconnetti",
+ "Register": "Registra",
+ "Registering…": "Registrazione…",
+ "Remove": "Rimuovi",
+ "Retry sending logs": "Riprova l'invio dei registri",
+ "Return to home screen": "Torna alla schermata di iniziale",
+ "Select an option": "Seleziona un'opzione",
+ "Send debug logs": "Invia registri di debug",
+ "Sending debug logs…": "Invio dei registri di debug…",
+ "Sending…": "Invio…",
+ "Settings": "Impostazioni",
+ "Share": "Condividi",
+ "Share screen": "Condividi schermo",
+ "Share this call": "Condividi questa chiamata",
+ "Sharing screen": "Condivisione schermo",
+ "Show connection stats": "Mostra statistiche connessione",
+ "Sign in": "Accedi",
+ "Sign out": "Disconnetti",
+ "Speaker": "Altoparlante",
+ "Submit": "Invia",
+ "Submit feedback": "Invia commento",
+ "Show call inspector": "Mostra ispettore della chiamata",
+ "Spotlight": "In primo piano",
+ "Thanks, we received your feedback!": "Grazie, abbiamo ricevuto il tuo commento!",
+ "Thanks!": "Grazie!",
+ "This call already exists, would you like to join?": "Questa chiamata esiste già, vuoi entrare?",
+ "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy2> and <6>Terms of Service6> apply.<9>9>By clicking \"Register\", you agree to our <12>End User Licensing Agreement (EULA)12>": "Questo sito è protetto da ReCAPTCHA e si applicano l'<2>informativa sulla privacy2> e i <6>termini di servizio6> di Google.<9>9>Cliccando \"Registra\", accetti il nostro <12>accordo di licenza con l'utente finale (EULA)12>",
+ "User menu": "Menu utente",
+ "Username": "Nome utente",
+ "Version: {{version}}": "Versione: {{version}}",
+ "Video": "Video",
+ "Waiting for other participants…": "In attesa di altri partecipanti…",
+ "Yes, join call": "Sì, entra in chiamata",
+ "You were disconnected from the call": "Sei stato disconnesso dalla chiamata",
+ "Your feedback": "Il tuo commento",
+ "{{displayName}}, your call has ended.": "{{displayName}}, la chiamata è terminata.",
+ "<0>0><1>1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0>0><1>1>Puoi revocare il consenso deselezionando questa casella. Se attualmente sei in una chiamata, avrà effetto al termine di essa.",
+ "<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>": "<0>Ti va di terminare impostando una password per mantenere il profilo?0><1>Potrai mantenere il tuo nome e impostare un avatar da usare in chiamate future1>",
+ "Element Call is temporarily not end-to-end encrypted while we test scalability.": "Element Call temporaneamente non è cifrato end-to-end mentre proviamo la scalabilità.",
+ "If you are experiencing issues or simply would like to provide some feedback, please send us a short description below.": "Se stai riscontrando problemi o semplicemente vuoi dare un'opinione, inviaci una breve descrizione qua sotto.",
+ "Not now, return to home screen": "Non ora, torna alla schermata principale",
+ "Submitting…": "Invio…",
+ "Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Un altro utente in questa chiamata sta avendo problemi. Per diagnosticare meglio questi problemi, vorremmo raccogliere un registro di debug.",
+ "End-to-end encryption isn't supported on your browser.": "La crittografia end-to-end non è supportata nel tuo browser.",
+ "By clicking \"Join call now\", you agree to our <2>End User Licensing Agreement (EULA)2>": "Cliccando \"Entra in chiamata ora\", accetti il nostro <2>accordo di licenza con l'utente finale (EULA)2>",
+ "By participating in this beta, you consent to the collection of anonymous data, which we use to improve the product. You can find more information about which data we track in our <2>Privacy Policy2> and our <5>Cookie Policy5>.": "Partecipando a questa beta, acconsenti alla raccolta di dati anonimi che usiamo per migliorare il prodotto. Puoi trovare più informazioni su quali dati monitoriamo nella nostra <2>informativa sulla privacy2> e nell'<5>informativa sui cookie5>.",
+ "You": "Tu",
+ "Continue in browser": "Continua nel browser",
+ "Mute microphone": "Spegni il microfono",
+ "Select app": "Seleziona app",
+ "Name of call": "Nome della chiamata",
+ "Open in the app": "Apri nell'app",
+ "Ready to join?": "Tutto pronto per entrare?",
+ "Start video": "Avvia video",
+ "Stop video": "Ferma video",
+ "Unmute microphone": "Riaccendi il microfono",
+ "Back to recents": "Torna ai recenti",
+ "Start new call": "Inizia nuova chiamata",
+ "Call not found": "Chiamata non trovata",
+ "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.": "Le chiamate ora sono cifrate end-to-end e devono essere create dalla pagina principale. Ciò assicura che chiunque usi la stessa chiave di crittografia."
+}
diff --git a/public/locales/ja/app.json b/public/locales/ja/app.json
index f9c3f8a8..57ad651a 100644
--- a/public/locales/ja/app.json
+++ b/public/locales/ja/app.json
@@ -1,10 +1,8 @@
{
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>既にアカウントをお持ちですか?0><1><0>ログイン0>または<2>ゲストとしてアクセス2>1>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>アカウントを作成0>または<2>ゲストとしてアクセス2>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>今すぐ通話に参加0><1>または1><2>通話リンクをコピーし、後で参加2>",
"<0>Oops, something's gone wrong.0>": "<0>何かがうまく行きませんでした。0>",
"Camera": "カメラ",
- "Call link copied": "通話リンクをコピーしました",
"Avatar": "アバター",
"Audio": "音声",
"Confirm password": "パスワードを確認",
@@ -15,7 +13,6 @@
"Debug log": "デバッグログ",
"Create account": "アカウントを作成",
"Go": "続行",
- "Fetching group call timed out.": "グループ通話の取得がタイムアウトしました。",
"Element Call Home": "Element Call ホーム",
"Download debug logs": "デバッグログをダウンロード",
"Display name": "表示名",
@@ -24,7 +21,6 @@
"Exit full screen": "全画面表示を終了",
"Include debug logs": "デバッグログを含める",
"Home": "ホーム",
- "Incompatible versions": "互換性のないバージョン",
"Join existing call?": "既存の通話に参加しますか?",
"Join call now": "今すぐ通話に参加",
"Join call": "通話に参加",
@@ -52,20 +48,13 @@
"Passwords must match": "パスワードが一致する必要があります",
"Password": "パスワード",
"Speaker": "スピーカー",
- "Video call name": "ビデオ通話の名称",
- "Video call": "ビデオ通話",
"Video": "ビデオ",
"Waiting for other participants…": "他の参加者を待機しています…",
- "Walkie-talkie call name": "トランシーバー通話の名称",
- "Walkie-talkie call": "トランシーバー通話",
"Yes, join call": "はい、通話に参加",
"Select an option": "オプションを選択",
"Debug log request": "デバッグログを要求",
- "Your recent calls": "最近の通話",
- "WebRTC is not supported or is being blocked in this browser.": "お使いのブラウザでWebRTCがサポートされていないか、またはブロックされています。",
"Login to your account": "アカウントにログイン",
"Remove": "削除",
"No": "いいえ",
- "This call already exists, would you like to join?": "この通話は既に存在します。参加しますか?",
- "Take me Home": "ホームに戻る"
+ "This call already exists, would you like to join?": "この通話は既に存在します。参加しますか?"
}
diff --git a/public/locales/lv/app.json b/public/locales/lv/app.json
index ecc993e8..b6e3dc3c 100644
--- a/public/locales/lv/app.json
+++ b/public/locales/lv/app.json
@@ -3,7 +3,6 @@
"{{count}} stars|other": "{{count}} zvaigznes",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Jau ir konts?0><1><0>Pieteikties0> vai <2>Piekļūt kā viesim2>1>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Izveidot kontu0> vai <2>Piekļūt kā viesim2>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Pievienoties zvanam tagad0><1>vai1><2>ievietot zvana saiti starpliktuvē un pievienoties vēlāk2>",
"<0>Oops, something's gone wrong.0>": "<0>Ak vai, kaut kas nogāja greizi!0>",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Atkļūdošanas žurnāla ierakstu iesūtīšana palīdzēs mums atklāt nepilnību.0>",
"<0>We'd love to hear your feedback so we can improve your experience.0>": "<0>Mums patiktu saņemt Tavu atsauksmi, lai mēs varētu uzlabot Tavu pieredzi.0>",
@@ -11,8 +10,6 @@
"Audio": "Skaņa",
"Avatar": "Attēls",
"By clicking \"Go\", you agree to our <2>End User Licensing Agreement (EULA)2>": "Klikšķināšana uz \"Aiziet\" apliecina piekrišanu mūsu <2>galalietotāja licencēšanas nolīgumam (GLLN)2>",
- "Call link copied": "Zvana saite ievietota starpliktuvē",
- "Call type menu": "Zvana veida izvēlne",
"Camera": "Kamera",
"Close": "Aizvērt",
"Confirm password": "Apstiprināt paroli",
@@ -31,7 +28,6 @@
"Exit full screen": "Iziet no pilnekrāna",
"Expose developer settings in the settings window.": "Izstādīt izstrādātāja iestatījumus iestatījumu logā.",
"Feedback": "Atsauksmes",
- "Fetching group call timed out.": "Grupas zvana iegūšanā iestājās noildze.",
"Full screen": "Pilnekrāns",
"Go": "Aiziet",
"By clicking \"Join call now\", you agree to our <2>End User Licensing Agreement (EULA)2>": "Klikšķināšana uz \"Pievienoties zvanam tagad\" apliecina piekrišanu mūsu <2>galalietotāja licencēšanas nolīgumam (GLLN)2>",
@@ -46,13 +42,10 @@
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Citam lietotājam šajā zvanā ir sarežģījumi. Lai labāk atklātu šīs nepilnības, mēs gribētu iegūt atkļūdošanas žurnālu.",
"Home": "Sākums",
"Waiting for other participants…": "Gaida citus dalībniekus…",
- "Walkie-talkie call": "Rācijas zvans",
"Yes, join call": "Jā, pievienoties zvanam",
"Your feedback": "Tava atsauksme",
- "Your recent calls": "Nesenie zvani",
"How did it go?": "Kā Tev veicās?",
"Include debug logs": "Iekļaut atkļūdošanas žurnāla ierakstus",
- "Incompatible versions": "Nesaderīgas versijas",
"Inspector": "Inspektors",
"Join call": "Pievienoties zvanam",
"Join call now": "Pievienoties zvanam tagad",
@@ -92,7 +85,6 @@
"Submit": "Iesniegt",
"Submit feedback": "Iesniegt atsauksmi",
"Submitting…": "Iesniedz…",
- "Take me Home": "Aizvest uz sākumu",
"Thanks, we received your feedback!": "Paldies, mēs saņēmām atsauksmi!",
"Thanks!": "Paldies!",
"This call already exists, would you like to join?": "Šis zvans jau pastāv. Vai vēlies pievienoties?",
@@ -100,13 +92,8 @@
"User menu": "Lietotāja izvēlne",
"Username": "Lietotājvārds",
"Video": "Video",
- "Video call": "Video zvans",
- "Video call name": "Video zvana nosaukums",
"You were disconnected from the call": "Tu tiki atvienots no zvana",
"Version: {{version}}": "Versija: {{version}}",
- "Walkie-talkie call name": "Rācijas zvana nosaukums",
- "WebRTC is not supported or is being blocked in this browser.": "Šajā pārlūkā nav nodrošināts WebRTC vai tiek liegta tā izmantošana.",
"If you are experiencing issues or simply would like to provide some feedback, please send us a short description below.": "Ja tiek piedzīvoti sarežģījumi vai vienkārši ir vēlme sniegt kādu atsauksmi, lūgums zemāk nosūtīt mums īsu aprakstu.",
- "Not registered yet? <2>Create an account2>": "Vēl neesi reģistrējies? <2>Izveidot kontu2>",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Citi lietotāji mēģina pievienoties šim zvanam no nesaderīgām versijām. Šiem lietotājiem vajadzētu nodrošināt, ka viņi ir atsvaidzinājuši savus pārlūkus: <1>{userLis}1>"
+ "Not registered yet? <2>Create an account2>": "Vēl neesi reģistrējies? <2>Izveidot kontu2>"
}
diff --git a/public/locales/pl/app.json b/public/locales/pl/app.json
index 157887d6..c70620ae 100644
--- a/public/locales/pl/app.json
+++ b/public/locales/pl/app.json
@@ -1,20 +1,13 @@
{
"Login": "Zaloguj się",
"Go": "Przejdź",
- "Your recent calls": "Twoje ostatnie połączenia",
"Yes, join call": "Tak, dołącz do połączenia",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC jest niewspierane lub zablokowane w tej przeglądarce.",
- "Walkie-talkie call name": "Nazwa połączenia walkie-talkie",
- "Walkie-talkie call": "Połączenie walkie-talkie",
"Waiting for other participants…": "Oczekiwanie na pozostałych uczestników…",
- "Video call name": "Nazwa połączenia wideo",
- "Video call": "Połączenie wideo",
"Video": "Wideo",
"Version: {{version}}": "Wersja: {{version}}",
"Username": "Nazwa użytkownika",
"User menu": "Menu użytkownika",
"This call already exists, would you like to join?": "Te połączenie już istnieje, czy chcesz do niego dołączyć?",
- "Take me Home": "Zabierz mnie do strony głównej",
"Submit feedback": "Prześlij opinię",
"Spotlight": "Centrum uwagi",
"Speaker": "Głośnik",
@@ -36,7 +29,6 @@
"Profile": "Profil",
"Passwords must match": "Hasła muszą pasować",
"Password": "Hasło",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Inni użytkownicy próbują dołączyć do tego połączenia przy użyciu niekompatybilnych wersji. Powinni oni upewnić się, że odświeżyli stronę w swoich przeglądarkach:<1>{userLis}1>",
"Not registered yet? <2>Create an account2>": "Nie masz konta? <2>Utwórz je2>",
"Not now, return to home screen": "Nie teraz, powróć do ekranu domowego",
"No": "Nie",
@@ -50,11 +42,9 @@
"Join call now": "Dołącz do połączenia teraz",
"Join call": "Dołącz do połączenia",
"Inspector": "Inspektor",
- "Incompatible versions": "Niekompatybilne wersje",
"Include debug logs": "Dołącz dzienniki debugowania",
"Home": "Strona domowa",
"Full screen": "Pełny ekran",
- "Fetching group call timed out.": "Przekroczono limit czasu na uzyskanie połączenia grupowego.",
"Exit full screen": "Opuść pełny ekran",
"Download debug logs": "Pobierz dzienniki debugowania",
"Display name": "Nazwa wyświetlana",
@@ -67,8 +57,6 @@
"Confirm password": "Potwierdź hasło",
"Close": "Zamknij",
"Camera": "Kamera",
- "Call type menu": "Menu typu połączenia",
- "Call link copied": "Skopiowano link do połączenia",
"Avatar": "Awatar",
"Audio": "Dźwięk",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Inny użytkownik w tym połączeniu napotkał problem. Aby lepiej zdiagnozować tę usterkę, chcielibyśmy zebrać dzienniki debugowania.",
@@ -78,7 +66,6 @@
"Copy": "Kopiuj",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Wysłanie dzienników debuggowania pomoże nam ustalić przyczynę problemu.0>",
"<0>Oops, something's gone wrong.0>": "<0>Ojej, coś poszło nie tak.0>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Dołącz do rozmowy już teraz0><1>lub1><2>Skopiuj link do rozmowy i dołącz później2>",
"Expose developer settings in the settings window.": "Wyświetl opcje programisty w oknie ustawień.",
"Element Call Home": "Strona główna Element Call",
"Developer Settings": "Opcje programisty",
@@ -91,7 +78,7 @@
"Submit": "Wyślij",
"Your feedback": "Twoje opinie",
"{{count}} stars|other": "{{count}} gwiazdki",
- "{{count}} stars|one": "{{count}} gwiazdka",
+ "{{count}} stars|one": "{{count}} gwiazdki",
"{{displayName}}, your call has ended.": "{{displayName}}, Twoje połączenie zostało zakończone.",
"<0>Thanks for your feedback!0>": "<0>Dziękujemy za Twoją opinię!0>",
"<0>We'd love to hear your feedback so we can improve your experience.0>": "<0>Z przyjemnością wysłuchamy Twojej opinii, aby poprawić Twoje doświadczenia.0>",
@@ -108,5 +95,17 @@
"You were disconnected from the call": "Rozłączono Cię z połączenia",
"Connectivity to the server has been lost.": "Utracono połączenie z serwerem.",
"Reconnect": "Połącz ponownie",
- "Enable end-to-end encryption (password protected calls)": "Włącz szyfrowanie end-to-end (połączenia chronione hasłem)"
+ "Enable end-to-end encryption (password protected calls)": "Włącz szyfrowanie end-to-end (połączenia chronione hasłem)",
+ "{{count, number}}|other": "{{count, number}}",
+ "Encrypted": "Szyfrowane",
+ "End call": "Zakończ połączenie",
+ "Grid": "Siatka",
+ "Microphone off": "Mikrofon wyłączony",
+ "Microphone on": "Mikrofon włączony",
+ "Not encrypted": "Nie szyfrowane",
+ "Share": "Udostępnij",
+ "Share this call": "Udostępnij to połączenie",
+ "Sharing screen": "Udostępnianie ekranu",
+ "{{count, number}}|one": "{{count, number}}",
+ "{{names, list(style: short;)}}": "{{names, list(style: short;)}}"
}
diff --git a/public/locales/ru/app.json b/public/locales/ru/app.json
index 9f2be372..7864275e 100644
--- a/public/locales/ru/app.json
+++ b/public/locales/ru/app.json
@@ -7,22 +7,14 @@
"Submit feedback": "Отправить отзыв",
"Sending debug logs…": "Отправка журнала отладки…",
"Select an option": "Выберите вариант",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Другие пользователи пытаются присоединиться с неподдерживаемых версий программы. Этим участникам надо перезагрузить браузер: <1>{userLis}1>",
"<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>": "<0>Почему бы не задать пароль, тем самым сохранив аккаунт?0><1>Так вы можете оставить своё имя и задать аватар для будущих звонков.1>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Создать аккаунт0> или <2>Зайти как гость2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Уже есть аккаунт?0><1><0>Войти с ним0> или <2>Зайти как гость2>1>",
- "Your recent calls": "Ваши недавние звонки",
"Yes, join call": "Да, присоединиться",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC не поддерживается или заблокирован в этом браузере.",
- "Walkie-talkie call name": "Название звонка-рации",
- "Walkie-talkie call": "Звонок-рация",
- "Video call name": "Название видео-звонка",
- "Video call": "Видео-звонок",
"Video": "Видео",
"Version: {{version}}": "Версия: {{version}}",
"Username": "Имя пользователя",
"User menu": "Меню пользователя",
- "Take me Home": "Перейти в Начало",
"Spotlight": "Внимание",
"Speaker": "Динамик",
"Sign out": "Выйти",
@@ -32,7 +24,6 @@
"Settings": "Настройки",
"Sending…": "Отправка…",
"Local volume": "Местная громкость",
- "Call type menu": "Меню \"Тип звонка\"",
"Include debug logs": "Приложить журнал отладки",
"Download debug logs": "Скачать журнал отладки",
"Debug log request": "Запрос журнала отладки",
@@ -58,11 +49,9 @@
"Join call now": "Присоединиться сейчас",
"Join call": "Присоединиться",
"Inspector": "Инспектор",
- "Incompatible versions": "Несовместимые версии",
"Home": "Начало",
"Go": "Далее",
"Full screen": "Полноэкранный режим",
- "Fetching group call timed out.": "Истекло время ожидания для группового звонка.",
"Exit full screen": "Выйти из полноэкранного режима",
"Display name": "Видимое имя",
"Developer": "Разработчику",
@@ -72,12 +61,10 @@
"Confirm password": "Подтвердите пароль",
"Close": "Закрыть",
"Camera": "Камера",
- "Call link copied": "Ссылка на звонок скопирована",
"Avatar": "Аватар",
"Audio": "Аудио",
"Element Call Home": "Главная Element Call",
"Copy": "Копировать",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Присоединиться сейчас0><1>или<1><2>Скопировать ссылку и присоединиться позже2>",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Отправка журналов поможет нам найти и устранить проблему.0>",
"<0>Oops, something's gone wrong.0>": "<0>Упс, что-то пошло не так.0>",
"Expose developer settings in the settings window.": "Раскрыть настройки разработчика в окне настроек.",
diff --git a/public/locales/sk/app.json b/public/locales/sk/app.json
index 8ac28b0b..cc3b6235 100644
--- a/public/locales/sk/app.json
+++ b/public/locales/sk/app.json
@@ -2,10 +2,8 @@
"Spotlight": "Stredobod",
"Local volume": "Lokálna hlasitosť",
"Include debug logs": "Zahrnúť záznamy o ladení",
- "Fetching group call timed out.": "Vypršal čas načítania skupinového volania.",
"Element Call Home": "Domov Element Call",
"Waiting for other participants…": "Čaká sa na ďalších účastníkov…",
- "Take me Home": "Zober ma domov",
"Submit feedback": "Odoslať spätnú väzbu",
"Show call inspector": "Zobraziť inšpektora hovorov",
"Share screen": "Zdieľať obrazovku",
@@ -22,7 +20,6 @@
"Profile": "Profil",
"Passwords must match": "Heslá sa musia zhodovať",
"Password": "Heslo",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Ostatní používatelia sa pokúšajú pripojiť k tomuto hovoru z nekompatibilných verzií. Títo používatelia by sa mali uistiť, že si obnovili svoje prehliadače:<1>{userLis}1>",
"Not registered yet? <2>Create an account2>": "Ešte nie ste zaregistrovaný? <2>Vytvorte si účet2>",
"Not now, return to home screen": "Teraz nie, vrátiť sa na domovskú obrazovku",
"No": "Nie",
@@ -36,19 +33,12 @@
"Join call now": "Pripojiť sa k hovoru teraz",
"Join call": "Pripojiť sa k hovoru",
"Inspector": "Inšpektor",
- "Incompatible versions": "Nekompatibilné verzie",
"Home": "Domov",
"Go": "Prejsť",
"Full screen": "Zobrazenie na celú obrazovku",
"Exit full screen": "Ukončiť zobrazenie na celú obrazovku",
"Download debug logs": "Stiahnuť záznamy ladenia",
- "Your recent calls": "Vaše nedávne hovory",
"Yes, join call": "Áno, pripojiť sa k hovoru",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC nie je podporované alebo je v tomto prehliadači blokované.",
- "Walkie-talkie call name": "Názov vysielačkového hovoru",
- "Walkie-talkie call": "Vysielačkový hovor",
- "Video call name": "Názov video hovoru",
- "Video call": "Video hovor",
"Video": "Video",
"Version: {{version}}": "Verzia: {{version}}",
"Username": "Meno používateľa",
@@ -69,13 +59,10 @@
"Confirm password": "Potvrdiť heslo",
"Close": "Zatvoriť",
"Camera": "Kamera",
- "Call type menu": "Ponuka typu hovoru",
- "Call link copied": "Odkaz na hovor skopírovaný",
"Avatar": "Obrázok",
"Audio": "Audio",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Ďalší používateľ v tomto hovore má problém. Aby sme mohli lepšie diagnostikovať tieto problémy, chceli by sme získať záznam o ladení.",
"<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>": "<0>Prečo neskončiť nastavením hesla, aby ste si zachovali svoj účet? 0><1>Budete si môcť ponechať svoje meno a nastaviť obrázok, ktorý sa bude používať pri budúcich hovoroch1>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Pripojiť sa k hovoru teraz0><1>alebo1><2>Kopírovať odkaz na hovor a pripojiť sa neskôr2>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Vytvoriť konto0> Alebo <2>Prihlásiť sa ako hosť2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Už máte konto?0><1><0>Prihláste sa0> Alebo <2>Prihlásiť sa ako hosť2>1>",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Odoslanie záznamov ladenia nám pomôže nájsť problém.0>",
@@ -108,5 +95,32 @@
"Thanks!": "Ďakujeme!",
"You were disconnected from the call": "Boli ste odpojení z hovoru",
"Enable end-to-end encryption (password protected calls)": "Povoliť end-to-end šifrovanie (hovory chránené heslom)",
- "End-to-end encryption isn't supported on your browser.": "End-to-end šifrovanie nie je vo vašom prehliadači podporované."
+ "End-to-end encryption isn't supported on your browser.": "End-to-end šifrovanie nie je vo vašom prehliadači podporované.",
+ "{{count, number}}|other": "{{count, number}}",
+ "Encrypted": "Šifrované",
+ "End call": "Ukončiť hovor",
+ "Microphone off": "Mikrofón vypnutý",
+ "Microphone on": "Mikrofón zapnutý",
+ "Grid": "Sieť",
+ "Not encrypted": "Nie je zašifrované",
+ "Share": "Zdieľať",
+ "Sharing screen": "Zdieľanie obrazovky",
+ "{{count, number}}|one": "{{count, number}}",
+ "Share this call": "Zdieľať tento hovor",
+ "{{names, list(style: short;)}}": "{{names, list(style: short;)}}",
+ "You": "Vy",
+ "Continue in browser": "Pokračovať v prehliadači",
+ "Mute microphone": "Stlmiť mikrofón",
+ "Name of call": "Názov hovoru",
+ "Open in the app": "Otvoriť v aplikácii",
+ "Ready to join?": "Ste pripravení sa pridať?",
+ "Select app": "Vybrať aplikáciu",
+ "Start new call": "Spustiť nový hovor",
+ "Start video": "Spustiť video",
+ "Stop video": "Zastaviť video",
+ "Back to recents": "Späť k nedávnym",
+ "Unmute microphone": "Zrušiť stlmenie mikrofónu",
+ "Call not found": "Hovor nebol nájdený",
+ "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.": "Hovory sú teraz end-to-end šifrované a je potrebné ich vytvoriť z domovskej stránky. To pomáha zabezpečiť, aby všetci používali rovnaký šifrovací kľúč.",
+ "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117": "Váš webový prehliadač nepodporuje end-to-end šifrovanie médií. Podporované prehliadače sú Chrome, Safari, Firefox >=117"
}
diff --git a/public/locales/tr/app.json b/public/locales/tr/app.json
index 1b84c80c..3f652bc9 100644
--- a/public/locales/tr/app.json
+++ b/public/locales/tr/app.json
@@ -3,8 +3,6 @@
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Bu aramadaki başka bir kullanıcı sorun yaşıyor. Sorunu daha iyi çözebilmemiz için hata ayıklama kütüğünü almak isteriz.",
"Audio": "Ses",
"Avatar": "Avatar",
- "Call link copied": "Arama bağlantısı kopyalandı",
- "Call type menu": "Arama tipi menüsü",
"Camera": "Kamera",
"Close": "Kapat",
"Confirm password": "Parolayı tekrar edin",
@@ -17,12 +15,10 @@
"Display name": "Ekran adı",
"Download debug logs": "Hata ayıklama kütüğünü indir",
"Exit full screen": "Tam ekranı terk et",
- "Fetching group call timed out.": "Grup çağrısı zaman aşımına uğradı.",
"Full screen": "Tam ekran",
"Go": "Git",
"Home": "Ev",
"Include debug logs": "Hata ayıklama kütüğünü dahil et",
- "Incompatible versions": "Uyumsuz sürümler",
"Inspector": "Denetçi",
"Join call": "Aramaya katıl",
"Join call now": "Aramaya katıl",
@@ -37,7 +33,6 @@
"No": "Hayır",
"Not now, return to home screen": "Şimdi değil, ev ekranına dön",
"Not registered yet? <2>Create an account2>": "Kaydolmadınız mı? <2>Hesap açın2>",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Başka kullanıcılar uyumsuz sürümden katılmaya çalışıyorlar. <1>{userLis}1> tarayıcılarını mutlaka tazelemeliler.",
"Password": "Parola",
"Passwords must match": "Parolalar aynı olmalı",
"Recaptcha dismissed": "reCAPTCHA atlandı",
@@ -55,7 +50,6 @@
"Sign in": "Gir",
"Sign out": "Çık",
"Submit feedback": "Geri bildirim ver",
- "Take me Home": "Ev ekranına gir",
"This call already exists, would you like to join?": "Bu arama zaten var, katılmak ister misiniz?",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Hesap oluştur0> yahut <2>Konuk olarak gir2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Mevcut hesabınız mı var?0><1><0>Gir0> yahut <2>Konuk girişi2>1>"
diff --git a/public/locales/uk/app.json b/public/locales/uk/app.json
index f43b27ad..10848c7d 100644
--- a/public/locales/uk/app.json
+++ b/public/locales/uk/app.json
@@ -1,19 +1,12 @@
{
"Loading…": "Завантаження…",
- "Your recent calls": "Ваші недавні виклики",
"Yes, join call": "Так, приєднатися до виклику",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC не підтримується або блокується в цьому браузері.",
- "Walkie-talkie call name": "Назва виклику-рації",
- "Walkie-talkie call": "Виклик-рація",
"Waiting for other participants…": "Очікування на інших учасників…",
- "Video call name": "Назва відеовиклику",
- "Video call": "Відеовиклик",
"Video": "Відео",
"Version: {{version}}": "Версія: {{version}}",
"Username": "Ім'я користувача",
"User menu": "Меню користувача",
"This call already exists, would you like to join?": "Цей виклик уже існує, бажаєте приєднатися?",
- "Take me Home": "Перейти до Домівки",
"Submit feedback": "Надіслати відгук",
"Spotlight": "У центрі уваги",
"Speaker": "Динамік",
@@ -35,7 +28,6 @@
"Profile": "Профіль",
"Passwords must match": "Паролі відрізняються",
"Password": "Пароль",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "Інші користувачі намагаються приєднатися до цього виклику з несумісних версій. Ці користувачі повинні переконатися, що вони оновили сторінки своїх браузерів:<1>{userLis}1>",
"Not registered yet? <2>Create an account2>": "Ще не зареєстровані? <2>Створіть обліковий запис2>",
"Not now, return to home screen": "Не зараз, повернутися на екран домівки",
"No": "Ні",
@@ -49,12 +41,10 @@
"Join call now": "Приєднатися до виклику зараз",
"Join call": "Приєднатися до виклику",
"Inspector": "Інспектор",
- "Incompatible versions": "Несумісні версії",
"Include debug logs": "Долучити журнали налагодження",
"Home": "Домівка",
"Go": "Далі",
"Full screen": "Повноекранний режим",
- "Fetching group call timed out.": "Вичерпано час очікування групового виклику.",
"Exit full screen": "Вийти з повноекранного режиму",
"Download debug logs": "Завантажити журнали налагодження",
"Display name": "Псевдонім",
@@ -67,15 +57,12 @@
"Confirm password": "Підтвердити пароль",
"Close": "Закрити",
"Camera": "Камера",
- "Call type menu": "Меню типу виклику",
- "Call link copied": "Посилання на виклик скопійовано",
"Avatar": "Аватар",
"Audio": "Звук",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Інший користувач у цьому виклику має проблему. Щоб краще визначити ці проблеми, ми хотіли б зібрати журнал налагодження.",
"<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>": "<0>Чому б не завершити, налаштувавши пароль для збереження свого облікового запису?0><1>Ви зможете зберегти своє ім'я та встановити аватарку для подальшого користування під час майбутніх викликів1>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Створити обліковий запис0> або <2>Отримати доступ як гість2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Уже маєте обліковий запис?0><1><0>Увійти0> Or <2>Отримати доступ як гість2>1>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Приєднатися до виклику зараз0><1>Or1><2>Скопіювати посилання на виклик і приєднатися пізніше2>",
"Element Call Home": "Домівка Element Call",
"Copy": "Копіювати",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Надсилання журналів налагодження допоможе нам виявити проблему.0>",
@@ -91,7 +78,7 @@
"If you are experiencing issues or simply would like to provide some feedback, please send us a short description below.": "Якщо у вас виникли проблеми або ви просто хочете залишити відгук, надішліть нам короткий опис нижче.",
"Feedback": "Відгук",
"<0>Thanks for your feedback!0>": "<0>Дякуємо за ваш відгук!0>",
- "{{count}} stars|one": "{{count}} зірка",
+ "{{count}} stars|one": "{{count}} зірок",
"{{count}} stars|other": "{{count}} зірок",
"{{displayName}}, your call has ended.": "{{displayName}}, ваш виклик завершено.",
"<0>We'd love to hear your feedback so we can improve your experience.0>": "<0>Ми будемо раді почути ваші відгуки, щоб поліпшити роботу застосунку.0>",
@@ -116,11 +103,24 @@
"Not encrypted": "Не зашифровано",
"Share": "Поділитися",
"Sharing screen": "Презентація екрана",
- "Video off": "Відео вимкнено",
- "Video on": "Відео ввімкнено",
"{{count, number}}|one": "{{count, number}}",
"End call": "Завершити виклик",
"Grid": "Сітка",
"Microphone off": "Мікрофон вимкнено",
- "Share this call": "Поділитися цим викликом"
+ "Share this call": "Поділитися цим викликом",
+ "You": "Ви",
+ "Mute microphone": "Вимкнути мікрофон",
+ "Open in the app": "Відкрити у застосунку",
+ "Ready to join?": "Готові приєднатися?",
+ "Select app": "Вибрати застосунок",
+ "Start video": "Розпочати відео",
+ "Stop video": "Зупинити відео",
+ "Unmute microphone": "Увімкнути мікрофон",
+ "Continue in browser": "Продовжити у браузері",
+ "Name of call": "Назва виклику",
+ "Start new call": "Розпочати новий виклик",
+ "Back to recents": "Повернутися до недавніх",
+ "Call not found": "Виклик не знайдено",
+ "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.": "Відтепер виклики захищено наскрізним шифруванням, і їх потрібно створювати з домашньої сторінки. Це допомагає переконатися, що всі користувачі використовують один і той самий ключ шифрування.",
+ "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117": "Ваш браузер не підтримує наскрізне шифрування мультимедійних даних. Підтримувані браузери: Chrome, Safari, Firefox >=117"
}
diff --git a/public/locales/vi/app.json b/public/locales/vi/app.json
index 7dab73fc..430231c6 100644
--- a/public/locales/vi/app.json
+++ b/public/locales/vi/app.json
@@ -6,14 +6,10 @@
"Sending…": "Đang gửi…",
"Sign in": "Đăng nhập",
"Submit": "Gửi",
- "Video call name": "Tên cuộc gọi truyền hình",
- "Video call": "Gọi truyền hình",
"Video": "Truyền hình",
"Username": "Tên người dùng",
"Yes, join call": "Vâng, tham gia cuộc gọi",
"Your feedback": "Phản hồi của bạn",
- "Your recent calls": "Cuộc gọi gần đây",
- "WebRTC is not supported or is being blocked in this browser.": "WebRTC không được hỗ trợ hay bị chặn trong trình duyệt này.",
"Waiting for other participants…": "Đang đợi những người khác…",
"Version: {{version}}": "Phiên bản: {{version}}",
"Submit feedback": "Gửi phản hồi",
@@ -24,12 +20,10 @@
"Join call now": "Tham gia cuộc gọi",
"Create account": "Tạo tài khoản",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>Tạo tài khoản0> Hay <2>Tham gia dưới tên khác2>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>Tham gia cuộc gọi0><1>hay1><2>Sao chép liên kết cuộc gọi và tham gia sau2>",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>Gửi nhật ký gỡ lỗi sẽ giúp chúng tôi theo dõi vấn đề.0>",
"Avatar": "Ảnh đại diện",
"Audio": "Âm thanh",
"Camera": "Máy quay",
- "Call link copied": "Đã sao chép liên kết cuộc gọi",
"Copied!": "Đã sao chép!",
"Confirm password": "Xác nhận mật khẩu",
"Close": "Đóng",
@@ -42,7 +36,6 @@
"Download debug logs": "Tải xuống nhật ký gỡ lỗi",
"Feedback": "Phản hồi",
"Full screen": "Toàn màn hình",
- "Incompatible versions": "Phiên bản không tương thích",
"Include debug logs": "Kèm theo nhật ký gỡ lỗi",
"Join existing call?": "Tham gia cuộc gọi?",
"Loading…": "Đang tải…",
@@ -55,8 +48,6 @@
"Spotlight": "Tiêu điểm",
"Submitting…": "Đang gửi…",
"Thanks, we received your feedback!": "Cảm ơn, chúng tôi đã nhận được phản hồi!",
- "Walkie-talkie call": "Cuộc gọi thoại",
- "Walkie-talkie call name": "Tên cuộc gọi thoại",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>Đã có tài khoản?0><1><0>Đăng nhập0> Hay <2>Tham gia dưới tên Khách2>1>",
"Exit full screen": "Rời chế độ toàn màn hình",
"Profile": "Hồ sơ",
diff --git a/public/locales/zh-Hans/app.json b/public/locales/zh-Hans/app.json
index 58f3dbc5..1ee29d30 100644
--- a/public/locales/zh-Hans/app.json
+++ b/public/locales/zh-Hans/app.json
@@ -1,18 +1,11 @@
{
- "Your recent calls": "最近通话",
"Yes, join call": "是,加入通话",
- "WebRTC is not supported or is being blocked in this browser.": "此浏览器不支持WebRTC或WebRTC被浏览器阻止。",
- "Walkie-talkie call name": "对讲机通话名称",
- "Walkie-talkie call": "对讲机通话",
"Waiting for other participants…": "等待其他参与者……",
- "Video call name": "视频通话名称",
- "Video call": "视频通话",
"Video": "视频",
"Version: {{version}}": "版本:{{version}}",
"Username": "用户名",
"User menu": "用户菜单",
"This call already exists, would you like to join?": "该通话已存在,你想加入吗?",
- "Take me Home": "返回主页",
"Submit feedback": "提交反馈",
"Spotlight": "聚焦模式",
"Speaker": "发言人",
@@ -21,7 +14,6 @@
"Audio": "音频",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "这个通话中的另一个用户出现了问题。为了更好地诊断这些问题,我们想收集调试日志。",
"<0>Why not finish by setting up a password to keep your account?0><1>You'll be able to keep your name and set an avatar for use on future calls1>": "<0>为什么不设置一个密码来保留你的账户?0><1>你将可以保留你的名字并设置一个头像,以便在未来的通话中使用。1>",
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>现在加入通话0><1>或1><2>复制通话链接并稍后加入2>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>创建账户0> Or <2>以访客身份继续2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>已有账户?0><1><0>登录0> Or <2>以访客身份继续2>1>",
"Inspector": "检查器",
@@ -41,7 +33,6 @@
"Profile": "个人信息",
"Passwords must match": "密码必须匹配",
"Password": "密码",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "其他用户正试图从不兼容的版本加入这一呼叫。这些用户应该确保已经刷新了浏览器:<1>{userLis}1>",
"Not registered yet? <2>Create an account2>": "还没有注册? <2>创建账户<2>",
"Not now, return to home screen": "暂不,先返回主页",
"No": "否",
@@ -55,12 +46,10 @@
"Join existing call?": "加入现有的通话?",
"Join call now": "现在加入通话",
"Join call": "加入通话",
- "Incompatible versions": "不兼容版本",
"Include debug logs": "包含调试日志",
"Home": "主页",
"Go": "开始",
"Full screen": "全屏",
- "Fetching group call timed out.": "获取群组通话超时。",
"Exit full screen": "退出全屏",
"Element Call Home": "Element Call 主页",
"Download debug logs": "下载调试日志",
@@ -75,8 +64,6 @@
"Confirm password": "确认密码",
"Close": "关闭",
"Camera": "摄像头",
- "Call type menu": "通话类型菜单",
- "Call link copied": "链接已复制",
"Avatar": "头像",
"<0>Oops, something's gone wrong.0>": "<0>哎哟,出问题了。0>",
"<0>0><1>1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": ""
diff --git a/public/locales/zh-Hant/app.json b/public/locales/zh-Hant/app.json
index 6267fe86..0883e20b 100644
--- a/public/locales/zh-Hant/app.json
+++ b/public/locales/zh-Hant/app.json
@@ -1,25 +1,17 @@
{
- "<0>Join call now0><1>Or1><2>Copy call link and join later2>": "<0>現在加入通話0><1>或1><2>複製通話連結,稍後再加入2>",
"<0>Create an account0> Or <2>Access as a guest2>": "<0>建立帳號0> 或<2>以訪客身份登入2>",
"<0>Already have an account?0><1><0>Log in0> Or <2>Access as a guest2>1>": "<0>已經有帳號?0><1><0>登入0> 或<2>以訪客身份登入2>1>",
"Expose developer settings in the settings window.": "在設定視窗中顯示開發者設定。",
"Developer Settings": "開發者設定",
"<0>Submitting debug logs will help us track down the problem.0>": "<0>送出除錯紀錄,可幫助我們修正問題。0>",
"<0>Oops, something's gone wrong.0>": "<0>喔喔,有些地方怪怪的。0>",
- "Your recent calls": "您最近的通話",
"Yes, join call": "是,加入對話",
- "WebRTC is not supported or is being blocked in this browser.": "此瀏覽器未支援 WebRTC 或 WebRTC 被瀏覽器封鎖。",
- "Walkie-talkie call name": "對講機式通話名稱",
- "Walkie-talkie call": "即時通話",
"Waiting for other participants…": "等待其他參加者…",
- "Video call name": "視訊通話姓名",
- "Video call": "視訊通話",
"Video": "視訊",
"Version: {{version}}": "版本: {{version}}",
"Username": "使用者名稱",
"User menu": "使用者選單",
"This call already exists, would you like to join?": "通話已經開始,請問您要加入嗎?",
- "Take me Home": "帶我回主畫面",
"Submit feedback": "遞交回覆",
"Spotlight": "聚焦",
"Speaker": "發言者",
@@ -41,7 +33,6 @@
"Profile": "個人檔案",
"Passwords must match": "密碼必須相符",
"Password": "密碼",
- "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}1>": "有使用者試著加入通話,但他們的軟體版本不相容。這些使用者需要確認已將瀏覽器更新到最新版本:<1>{userLis}1>",
"Not registered yet? <2>Create an account2>": "還沒註冊嗎?<2>建立帳號2>",
"Not now, return to home screen": "現在不行,回到首頁",
"No": "否",
@@ -56,12 +47,10 @@
"Join call now": "現在加入通話",
"Join call": "加入通話",
"Inspector": "稽查員",
- "Incompatible versions": "不相容版本",
"Include debug logs": "包含除錯紀錄",
"Home": "首頁",
"Go": "前往",
"Full screen": "全螢幕",
- "Fetching group call timed out.": "加入群組對話已逾時。",
"Exit full screen": "退出全螢幕",
"Element Call Home": "Element Call 首頁",
"Download debug logs": "下載偵錯報告",
@@ -76,8 +65,6 @@
"Confirm password": "確認密碼",
"Close": "關閉",
"Camera": "相機",
- "Call type menu": "通話類型選單",
- "Call link copied": "已複製通話連結",
"Avatar": "大頭照",
"Audio": "語音",
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "這通對話中的另一位使用者遇到了某些問題。為了診斷問題,我們將會建立除錯紀錄。",
@@ -108,5 +95,32 @@
"Thanks!": "感謝!",
"You were disconnected from the call": "您已從通話斷線",
"Enable end-to-end encryption (password protected calls)": "啟用端到端加密(密碼保護通話)",
- "End-to-end encryption isn't supported on your browser.": "您的瀏覽器不支援端到端加密。"
+ "End-to-end encryption isn't supported on your browser.": "您的瀏覽器不支援端到端加密。",
+ "{{count, number}}|one": "{{count, number}}",
+ "{{count, number}}|other": "{{count, number}}",
+ "{{names, list(style: short;)}}": "{{names, list(style: short;)}}",
+ "Encrypted": "已加密",
+ "End call": "結束通話",
+ "Grid": "網格",
+ "Microphone off": "麥克風關閉",
+ "Microphone on": "麥克風開啟",
+ "Not encrypted": "未加密",
+ "Share": "分享",
+ "Share this call": "分享此通話",
+ "Sharing screen": "分享畫面",
+ "You": "您",
+ "Continue in browser": "在瀏覽器中繼續",
+ "Mute microphone": "將麥克風靜音",
+ "Name of call": "通話名稱",
+ "Open in the app": "在應用程式中開啟",
+ "Ready to join?": "準備好加入了?",
+ "Select app": "選取應用程式",
+ "Start new call": "開始新通話",
+ "Start video": "開始影片",
+ "Back to recents": "回到最近的通話",
+ "Stop video": "停止影片",
+ "Unmute microphone": "將麥克風取消靜音",
+ "Call not found": "找不到通話",
+ "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.": "通話現在是端對端加密的,必須從首頁建立。這有助於確保每個人都使用相同的加密金鑰。",
+ "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117": "您的網路瀏覽器不支援媒體端到端加密。支援的瀏覽器包含了 Chrome、Safari、Firefox >=117"
}
diff --git a/src/App.tsx b/src/App.tsx
index 1931a8c7..00890f31 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -15,7 +15,12 @@ limitations under the License.
*/
import { Suspense, useEffect, useState } from "react";
-import { BrowserRouter as Router, Switch, Route } from "react-router-dom";
+import {
+ BrowserRouter as Router,
+ Switch,
+ Route,
+ useLocation,
+} from "react-router-dom";
import * as Sentry from "@sentry/react";
import { OverlayProvider } from "@react-aria/overlays";
import { History } from "history";
@@ -34,6 +39,26 @@ import { MediaDevicesProvider } from "./livekit/MediaDevicesContext";
const SentryRoute = Sentry.withSentryRouting(Route);
+interface BackgroundProviderProps {
+ children: JSX.Element;
+}
+
+const BackgroundProvider = ({ children }: BackgroundProviderProps) => {
+ const { pathname } = useLocation();
+
+ useEffect(() => {
+ let backgroundImage = "";
+ if (!["/login", "/register"].includes(pathname)) {
+ backgroundImage = "var(--background-gradient)";
+ }
+
+ document.getElementsByTagName("body")[0].style.backgroundImage =
+ backgroundImage;
+ }, [pathname]);
+
+ return <>{children}>;
+};
+
interface AppProps {
history: History;
}
@@ -53,40 +78,42 @@ export default function App({ history }: AppProps) {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
- {loaded ? (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ) : (
-
- )}
+
+ {loaded ? (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ) : (
+
+ )}
+
);
}
diff --git a/src/Glass.module.css b/src/Glass.module.css
new file mode 100644
index 00000000..cdb9621a
--- /dev/null
+++ b/src/Glass.module.css
@@ -0,0 +1,31 @@
+/*
+Copyright 2023 New Vector Ltd
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+.glass {
+ border-radius: 36px;
+ padding: 11px;
+ border: 1px solid var(--cpd-color-alpha-gray-400);
+ background: var(--cpd-color-alpha-gray-400);
+ backdrop-filter: blur(10px);
+}
+
+.glass > * {
+ border-radius: 24px;
+}
+
+.glass.frosted {
+ backdrop-filter: blur(20px);
+}
diff --git a/src/Glass.tsx b/src/Glass.tsx
new file mode 100644
index 00000000..5f01d47a
--- /dev/null
+++ b/src/Glass.tsx
@@ -0,0 +1,52 @@
+/*
+Copyright 2023 New Vector Ltd
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+import {
+ ComponentPropsWithoutRef,
+ ReactNode,
+ forwardRef,
+ Children,
+} from "react";
+import classNames from "classnames";
+
+import styles from "./Glass.module.css";
+
+interface Props extends ComponentPropsWithoutRef<"div"> {
+ children: ReactNode;
+ className?: string;
+ /**
+ * Increases the blur effect.
+ * @default false
+ */
+ frosted?: boolean;
+}
+
+/**
+ * Adds a border of glass around a child component.
+ */
+export const Glass = forwardRef(
+ ({ frosted = false, children, className, ...rest }, ref) => (
+
+ {Children.only(children)}
+
+ )
+);
diff --git a/src/Header.module.css b/src/Header.module.css
index 84b9df7b..4f36182d 100644
--- a/src/Header.module.css
+++ b/src/Header.module.css
@@ -21,6 +21,7 @@ limitations under the License.
align-items: center;
user-select: none;
flex-shrink: 0;
+ padding-inline: var(--inline-content-inset);
}
.nav {
@@ -28,7 +29,6 @@ limitations under the License.
flex: 1;
align-items: center;
white-space: nowrap;
- padding-inline: var(--inline-content-inset);
height: 80px;
}
diff --git a/src/Modal.module.css b/src/Modal.module.css
index 19c2ce72..e72f6496 100644
--- a/src/Modal.module.css
+++ b/src/Modal.module.css
@@ -1,5 +1,5 @@
/*
-Copyright 2022 New Vector Ltd
+Copyright 2022 - 2023 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -14,77 +14,210 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-.modalOverlay {
+.overlay {
position: fixed;
z-index: 100;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: rgba(23, 25, 28, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
+ inset: 0;
+ background: rgba(3, 12, 27, 0.528);
+}
+
+@keyframes fade-in {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+.dialogOverlay[data-state="open"] {
+ animation: fade-in 200ms;
+}
+
+@keyframes fade-out {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+}
+
+.dialogOverlay[data-state="closed"] {
+ animation: fade-out 130ms;
}
.modal {
- background: var(--cpd-color-bg-subtle-secondary);
- box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
- border-radius: 8px;
- max-width: 90vw;
- width: 600px;
+ position: fixed;
+ z-index: 101;
display: flex;
flex-direction: column;
}
-.modalHeader {
- display: flex;
- justify-content: space-between;
- padding: 34px 32px 0 32px;
+.dialog {
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ box-sizing: border-box;
+ inline-size: 520px;
+ max-inline-size: 90%;
+ max-block-size: 600px;
}
-.modalHeader h3 {
- font-weight: 600;
- font-size: var(--font-size-title);
- margin: 0;
+@keyframes zoom-in {
+ from {
+ opacity: 0;
+ transform: translate(-50%, -50%) scale(80%);
+ }
+ to {
+ opacity: 1;
+ transform: translate(-50%, -50%) scale(100%);
+ }
}
-.closeButton {
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: transparent;
- padding: 0;
- border: none;
- cursor: pointer;
+@keyframes zoom-out {
+ from {
+ opacity: 1;
+ transform: translate(-50%, -50%) scale(100%);
+ }
+ to {
+ opacity: 0;
+ transform: translate(-50%, -50%) scale(80%);
+ }
+}
+
+.dialog[data-state="open"] {
+ animation: zoom-in 200ms;
+}
+
+.dialog[data-state="closed"] {
+ animation: zoom-out 130ms;
+}
+
+@media (prefers-reduced-motion) {
+ .dialog[data-state="open"] {
+ animation-name: fade-in;
+ }
+
+ .dialog[data-state="closed"] {
+ animation-name: fade-out;
+ }
}
.content {
- padding: 24px 32px;
+ display: flex;
+ flex-direction: column;
+ overflow: hidden;
+ flex-grow: 1;
}
-.content p {
- margin-top: 0;
+.dialog .content {
+ background: var(--cpd-color-bg-canvas-default);
}
-@media (max-width: 799px) {
- .modalHeader {
- display: flex;
- justify-content: space-between;
- padding: 32px 20px 0 20px;
- }
+.drawer .content {
+ overflow: auto;
+}
- .modal.mobileFullScreen {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- max-width: none;
- max-height: none;
- border-radius: 0;
+.drawer {
+ background: var(--cpd-color-bg-canvas-default);
+ inset-block-end: 0;
+ inset-inline: max(0px, calc((100% - 520px) / 2));
+ max-block-size: 90%;
+ border-start-start-radius: var(--border-radius);
+ border-start-end-radius: var(--border-radius);
+ /* Drawer comes in the Android style by default */
+ --border-radius: 28px;
+ --handle-block-size: 4px;
+ --handle-inline-size: 32px;
+ --handle-inset-block-start: var(--cpd-space-4x);
+ --handle-inset-block-end: var(--cpd-space-4x);
+}
+
+body[data-platform="ios"] .drawer {
+ --border-radius: 10px;
+ --handle-block-size: 5px;
+ --handle-inline-size: 36px;
+ --handle-inset-block-start: var(--cpd-space-1-5x);
+ --handle-inset-block-end: calc(var(--cpd-space-1x) / 4);
+}
+
+.close {
+ cursor: pointer;
+ color: var(--cpd-color-icon-secondary);
+ border-radius: var(--cpd-radius-pill-effect);
+ padding: var(--cpd-space-1x);
+ background: var(--cpd-color-bg-subtle-secondary);
+ border: none;
+}
+
+.close svg {
+ display: block;
+}
+
+@media (hover: hover) {
+ .close:hover {
+ background: var(--cpd-color-bg-subtle-primary);
+ color: var(--cpd-color-icon-primary);
}
}
+
+.close:active {
+ background: var(--cpd-color-bg-subtle-primary);
+ color: var(--cpd-color-icon-primary);
+}
+
+.header {
+ background: var(--cpd-color-bg-subtle-secondary);
+ display: grid;
+}
+
+.dialog .header {
+ padding-block-start: var(--cpd-space-4x);
+ grid-template-columns:
+ var(--cpd-space-10x) 1fr minmax(var(--cpd-space-6x), auto)
+ var(--cpd-space-4x);
+ grid-template-rows: auto minmax(var(--cpd-space-4x), auto);
+ /* TODO: Support tabs */
+ grid-template-areas: ". title close ." "tabs tabs tabs tabs";
+ align-items: center;
+}
+
+.dialog .header h2 {
+ grid-area: title;
+ margin: 0;
+}
+
+.drawer .header {
+ grid-template-areas: "tabs";
+ position: relative;
+}
+
+.close {
+ grid-area: close;
+}
+
+.body {
+ flex-grow: 1;
+}
+
+.dialog .body {
+ padding-inline: var(--cpd-space-10x);
+ padding-block: var(--cpd-space-10x) var(--cpd-space-12x);
+ overflow: auto;
+}
+
+.drawer .body {
+ padding-inline: var(--cpd-space-4x);
+ padding-block: var(--cpd-space-9x) var(--cpd-space-10x);
+}
+
+.handle {
+ content: "";
+ position: absolute;
+ block-size: var(--handle-block-size);
+ inset-inline: calc((100% - var(--handle-inline-size)) / 2);
+ inset-block-start: var(--handle-inset-block-start);
+ background: var(--cpd-color-icon-secondary);
+ border-radius: var(--cpd-radius-pill-effect);
+}
diff --git a/src/Modal.tsx b/src/Modal.tsx
index 56db481e..b644abe4 100644
--- a/src/Modal.tsx
+++ b/src/Modal.tsx
@@ -1,5 +1,5 @@
/*
-Copyright 2022 New Vector Ltd
+Copyright 2023 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -14,123 +14,130 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-/* eslint-disable jsx-a11y/no-autofocus */
-
-import { useRef, useMemo, ReactNode } from "react";
-import {
- useOverlay,
- usePreventScroll,
- useModal,
- OverlayContainer,
- OverlayProps,
-} from "@react-aria/overlays";
-import {
- OverlayTriggerState,
- useOverlayTriggerState,
-} from "@react-stately/overlays";
-import { useDialog } from "@react-aria/dialog";
-import { FocusScope } from "@react-aria/focus";
-import { useButton } from "@react-aria/button";
-import classNames from "classnames";
+import { ReactNode, useCallback } from "react";
import { AriaDialogProps } from "@react-types/dialog";
import { useTranslation } from "react-i18next";
+import {
+ Root as DialogRoot,
+ Portal as DialogPortal,
+ Overlay as DialogOverlay,
+ Content as DialogContent,
+ Title as DialogTitle,
+ Close as DialogClose,
+} from "@radix-ui/react-dialog";
+import { Drawer } from "vaul";
+import { VisuallyHidden } from "@radix-ui/react-visually-hidden";
+import { ReactComponent as CloseIcon } from "@vector-im/compound-design-tokens/icons/close.svg";
+import classNames from "classnames";
+import { Heading } from "@vector-im/compound-web";
-import { ReactComponent as CloseIcon } from "./icons/Close.svg";
import styles from "./Modal.module.css";
+import { useMediaQuery } from "./useMediaQuery";
+import { Glass } from "./Glass";
-export interface ModalProps extends OverlayProps, AriaDialogProps {
+// TODO: Support tabs
+export interface ModalProps extends AriaDialogProps {
title: string;
children: ReactNode;
className?: string;
- mobileFullScreen?: boolean;
- onClose: () => void;
+ /**
+ * The controlled open state of the modal.
+ */
+ // An option to leave the open state uncontrolled is intentionally not
+ // provided, since modals are always opened due to external triggers, and it
+ // is the author's belief that controlled components lead to more obvious code.
+ open: boolean;
+ /**
+ * Callback for when the user dismisses the modal. If undefined, the modal
+ * will be non-dismissable.
+ */
+ onDismiss?: () => void;
}
+/**
+ * A modal, taking the form of a drawer / bottom sheet on touchscreen devices,
+ * and a dialog box on desktop.
+ */
export function Modal({
title,
children,
className,
- mobileFullScreen,
- onClose,
+ open,
+ onDismiss,
...rest
}: ModalProps) {
const { t } = useTranslation();
- const modalRef = useRef(null);
- const { overlayProps, underlayProps } = useOverlay(
- { ...rest, onClose },
- modalRef
- );
- usePreventScroll();
- const { modalProps } = useModal();
- const { dialogProps, titleProps } = useDialog(rest, modalRef);
- const closeButtonRef = useRef(null);
- const { buttonProps: closeButtonProps } = useButton(
- {
- onPress: () => onClose(),
+ // Empirically, Chrome on Android can end up not matching (hover: none), but
+ // still matching (pointer: coarse) :/
+ const touchscreen = useMediaQuery("(hover: none) or (pointer: coarse)");
+ const onOpenChange = useCallback(
+ (open: boolean) => {
+ if (!open) onDismiss?.();
},
- closeButtonRef
+ [onDismiss]
);
- return (
-
-