Compare commits

..

1 Commits

Author SHA1 Message Date
Robin Townsend
e33980511c Fix a crash when someone leaves while screensharing 2022-11-03 20:24:53 +00:00
379 changed files with 25548 additions and 27232 deletions

View File

@@ -1,19 +1,31 @@
#### ####
# Build-time app config # App Config
# Environment files are documented here: # Environment files are documented here:
# https://vitejs.dev/guide/env-and-mode.html#env-files # https://vitejs.dev/guide/env-and-mode.html#env-files
#### ####
# Develop backend settings:
LIVEKIT_KEY="devkey"
LIVEKIT_SECRET="secret"
# Used for determining the homeserver to use for short urls etc. # Used for determining the homeserver to use for short urls etc.
# VITE_DEFAULT_HOMESERVER=http://localhost:8008
# VITE_FALLBACK_STUN_ALLOWED=false # VITE_FALLBACK_STUN_ALLOWED=false
# CSS to be injected into the page for the purpose of custom theming. # Used for submitting debug logs to an external rageshake server
# Generally, writing a custom theme involves overriding Compound design tokens, # VITE_RAGESHAKE_SUBMIT_URL=http://localhost:9110/api/submit
# which are documented here:
# https://compound.element.io/?path=/docs/foundations-design-tokens--docs # The Sentry DSN to use for error reporting. Leave undefined to disable.
# https://compound.element.io/?path=/docs/tokens-color-palettes--docs # VITE_SENTRY_DSN=https://examplePublicKey@o0.ingest.sentry.io/0
# https://compound.element.io/?path=/docs/tokens-semantic-colors--docs
# VITE_CUSTOM_CSS=".cpd-theme-dark.cpd-theme-dark { --cpd-color-theme-bg: #101317; }" # VITE_CUSTOM_THEME=true
# VITE_THEME_ACCENT=#0dbd8b
# VITE_THEME_ACCENT_20=#0dbd8b33
# VITE_THEME_ALERT=#ff5b55
# VITE_THEME_ALERT_20=#ff5b5533
# VITE_THEME_LINKS=#0086e6
# VITE_THEME_PRIMARY_CONTENT=#ffffff
# VITE_THEME_SECONDARY_CONTENT=#a9b2bc
# VITE_THEME_TERTIARY_CONTENT=#8e99a4
# VITE_THEME_TERTIARY_CONTENT_20=#8e99a433
# VITE_THEME_QUATERNARY_CONTENT=#6f7882
# VITE_THEME_QUINARY_CONTENT=#394049
# VITE_THEME_SYSTEM=#21262c
# VITE_THEME_BACKGROUND=#15191e
# VITE_THEME_BACKGROUND_85=#15191ed9

View File

@@ -1,48 +1,42 @@
const COPYRIGHT_HEADER = `/*
Copyright %%CURRENT_YEAR%% 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.
*/
`;
module.exports = { module.exports = {
plugins: ["matrix-org"], plugins: [
extends: [ "matrix-org",
"plugin:matrix-org/react", ],
"plugin:matrix-org/a11y", extends: [
"plugin:matrix-org/typescript", "plugin:matrix-org/react",
"prettier", "plugin:matrix-org/a11y",
], "prettier",
parserOptions: { ],
ecmaVersion: "latest", env: {
sourceType: "module", browser: true,
project: ["./tsconfig.json"], node: true,
}, },
env: { parserOptions: {
browser: true, "ecmaVersion": "latest",
node: true, "sourceType": "module",
}, },
rules: { rules: {
"matrix-org/require-copyright-header": ["error", COPYRIGHT_HEADER], "jsx-a11y/media-has-caption": ["off"],
"jsx-a11y/media-has-caption": "off", },
// We should use the js-sdk logger, never console directly. overrides: [
"no-console": ["error"], {
"react/display-name": "error", files: [
}, "src/**/*.{ts,tsx}",
settings: { ],
react: { extends: [
version: "detect", "plugin:matrix-org/typescript",
"plugin:matrix-org/react",
"prettier",
],
rules: {
// We're aiming to convert this code to strict mode
"@typescript-eslint/no-non-null-assertion": "off",
},
},
],
settings: {
react: {
version: "detect",
},
}, },
},
}; };

2
.github/CODEOWNERS vendored
View File

@@ -1 +1 @@
* @element-hq/element-call-reviewers * @vector-im/element-call-reviewers

View File

@@ -42,7 +42,7 @@ body:
id: browser id: browser
attributes: attributes:
label: Browser information label: Browser information
description: Which browser are you using? Which version? description: Which browser are you using? Which version?
placeholder: e.g. Chromium Version 92.0.4515.131 placeholder: e.g. Chromium Version 92.0.4515.131
validations: validations:
required: false required: false
@@ -58,10 +58,10 @@ body:
id: rageshake id: rageshake
attributes: attributes:
label: Will you send logs? label: Will you send logs?
description: | description: |
To send them, press the 'Submit Feedback' button and check 'Include Debug Logs'. Please link to this issue in the description field. To send them, press the 'Submit Feedback' button and check 'Include Debug Logs'. Please link to this issue in the description field.
options: options:
- "Yes" - 'Yes'
- "No" - 'No'
validations: validations:
required: true required: true

View File

@@ -1,25 +1,31 @@
name: Build name: Build
on: on:
pull_request:
types:
- synchronize
- opened
- labeled
paths-ignore:
- ".github/**"
- "docs/**"
push: push:
branches: [livekit, full-mesh] branches: [main]
paths-ignore: env:
- ".github/**" VITE_DEFAULT_HOMESERVER: "https://call.ems.host"
- "docs/**" VITE_SENTRY_DSN: https://b1e328d49be3402ba96101338989fb35@sentry.matrix.org/41
VITE_SENTRY_ENVIRONMENT: main-branch-cd
VITE_RAGESHAKE_SUBMIT_URL: https://element.io/bugreports/submit
jobs: jobs:
build_element_call: build:
uses: ./.github/workflows/element-call.yaml name: Build
with: runs-on: ubuntu-latest
vite_app_version: ${{ github.event.release.tag_name || github.sha }} steps:
secrets: - name: Checkout code
SENTRY_ORG: ${{ secrets.SENTRY_ORG }} uses: actions/checkout@v2
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} - name: Yarn cache
SENTRY_URL: ${{ secrets.SENTRY_URL }} uses: actions/setup-node@v3
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} with:
cache: 'yarn'
- name: Install dependencies
run: "yarn install"
- name: Build
run: "yarn run build"
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: build
path: dist
# We'll only use this in a triggered job, then we're done with it
retention-days: 1

View File

@@ -1,60 +0,0 @@
name: Docker - Deploy
on:
workflow_call:
inputs:
docker_tags:
required: true
type: string
artifact_run_id:
required: false
type: string
default: ${{ github.run_id }}
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build_and_deploy:
name: Build & publish docker
runs-on: ubuntu-latest
permissions:
contents: write # required to upload release asset
packages: write
steps:
- name: Check it out
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: 📥 Download artifact
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ inputs.artifact_run_id }}
name: build-output
path: dist
- name: Log in to container registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: ${{ inputs.docker_tags}}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
- name: Build and push Docker image
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@@ -1,24 +0,0 @@
name: Run E2E tests
on:
workflow_run:
workflows: ["deploy"]
types:
- completed
branches-ignore:
- "livekit"
jobs:
e2e:
name: E2E tests runs on Element Call
runs-on: ubuntu-latest
steps:
- name: Check out test private repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
repository: element-hq/static-call-participant
ref: refs/heads/main
path: static-call-participant
token: ${{ secrets.GH_E2E_TEST_TOKEN }}
- name: Build E2E Image
run: "cd static-call-participant && docker build --no-cache --tag matrixdotorg/chrome-node-static-call-participant:latest ."
- name: Run E2E tests in container
run: "docker run --rm -v '${{ github.workspace }}/static-call-participant/callemshost-users.txt:/opt/app/callemshost-users.txt' matrixdotorg/chrome-node-static-call-participant:latest ./e2e.sh"

View File

@@ -1,47 +0,0 @@
name: Element Call - Build
on:
workflow_call:
inputs:
vite_app_version:
required: true
type: string
secrets:
SENTRY_ORG:
required: true
SENTRY_PROJECT:
required: true
SENTRY_URL:
required: true
SENTRY_AUTH_TOKEN:
required: true
jobs:
build:
name: Build Element Call
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Yarn cache
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: "yarn"
node-version: "lts/*"
- name: Install dependencies
run: "yarn install"
- name: Build
run: "yarn run build"
env:
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_URL: ${{ secrets.SENTRY_URL }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
VITE_APP_VERSION: ${{ inputs.vite_app_version }}
NODE_OPTIONS: "--max-old-space-size=4096"
- name: Upload Artifact
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4
with:
name: build-output
path: dist
# We'll only use this in a triggered job, then we're done with it
retention-days: 1

View File

@@ -7,12 +7,11 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 uses: actions/checkout@v2
- name: Yarn cache - name: Yarn cache
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 uses: actions/setup-node@v3
with: with:
cache: "yarn" cache: 'yarn'
node-version: "lts/*"
- name: Install dependencies - name: Install dependencies
run: "yarn install" run: "yarn install"
- name: Prettier - name: Prettier
@@ -20,8 +19,6 @@ jobs:
- name: i18n - name: i18n
run: "yarn run i18n:check" run: "yarn run i18n:check"
- name: ESLint - name: ESLint
run: "yarn run lint:eslint" run: "yarn run lint:js"
- name: Type check - name: Type check
run: "yarn run lint:types" run: "yarn run lint:types"
- name: Dead code analysis
run: "yarn run lint:knip"

79
.github/workflows/netlify-main.yaml vendored Normal file
View File

@@ -0,0 +1,79 @@
name: Netlify Main
on:
workflow_run:
workflows: ["Build"]
types:
- completed
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
deployments: write
if: github.event.workflow_run.conclusion == 'success'
steps:
- name: Create Deployment
uses: bobheadxi/deployments@v1
id: deployment
with:
step: start
token: ${{ secrets.GITHUB_TOKEN }}
env: main-branch-cd
ref: ${{ github.event.workflow_run.head_sha }}
- name: 'Download artifact'
uses: actions/github-script@v3.1.0
with:
script: |
const artifacts = await github.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{ github.event.workflow_run.id }},
});
const matchArtifact = artifacts.data.artifacts.filter((artifact) => {
return artifact.name == "build"
})[0];
const download = await github.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
artifact_id: matchArtifact.id,
archive_format: 'zip',
});
const fs = require('fs');
fs.writeFileSync('${{github.workspace}}/build.zip', Buffer.from(download.data));
- name: Extract Artifacts
run: unzip -d dist build.zip && rm build.zip
- name: Add redirects file
# We fetch from github directly as we don't bother checking out the repo
run: curl -s https://raw.githubusercontent.com/vector-im/element-call/main/config/netlify_redirects > dist/_redirects
- name: Deploy to Netlify
id: netlify
uses: nwtgck/actions-netlify@v1.2.3
with:
publish-dir: dist
deploy-message: "Deploy from GitHub Actions"
production-branch: main
production-deploy: true
# These don't work because we're in workflow_run
enable-pull-request-comment: false
enable-commit-comment: false
github-deployment-environment: main
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1
- name: Update deployment status
uses: bobheadxi/deployments@v1
if: always()
with:
step: finish
override: false
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
env: ${{ steps.deployment.outputs.env }}
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
env_url: ${{ steps.netlify.outputs.deploy-url }}

View File

@@ -1,88 +0,0 @@
name: Netlify - Deploy
on:
workflow_call:
inputs:
pr_number:
required: true
type: string
pr_head_full_name:
required: true
type: string
pr_head_ref:
required: true
type: string
deployment_ref:
required: true
type: string
artifact_run_id:
required: false
type: string
default: ${{ github.run_id }}
secrets:
ELEMENT_BOT_TOKEN:
required: true
NETLIFY_AUTH_TOKEN:
required: true
NETLIFY_SITE_ID:
required: true
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
deployments: write
environment: Netlify
steps:
- name: 📝 Create Deployment
uses: bobheadxi/deployments@648679e8e4915b27893bd7dbc35cb504dc915bc8 # v1
id: deployment
with:
step: start
token: ${{ secrets.GITHUB_TOKEN }}
env: Netlify
ref: ${{ inputs.deployment_ref }}
desc: |
Do you trust the author of this PR? Maybe this build will steal your keys or give you malware.
Exercise caution. Use test accounts.
- name: 📥 Download artifact
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
run-id: ${{ inputs.artifact_run_id }}
name: build-output
path: webapp
- name: Add redirects file
# We fetch from github directly as we don't bother checking out the repo
run: curl -s https://raw.githubusercontent.com/element-hq/element-call/main/config/netlify_redirects > webapp/_redirects
- name: Add config file
run: curl -s "https://raw.githubusercontent.com/${{ inputs.pr_head_full_name }}/${{ inputs.pr_head_ref }}/config/config_netlify_preview.json" > webapp/config.json
- name: ☁️ Deploy to Netlify
id: netlify
uses: nwtgck/actions-netlify@4cbaf4c08f1a7bfa537d6113472ef4424e4eb654 # v3.0
with:
publish-dir: webapp
deploy-message: "Deploy from GitHub Actions"
alias: pr${{ inputs.pr_number }}
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1
- name: 🚦 Update deployment status
uses: bobheadxi/deployments@648679e8e4915b27893bd7dbc35cb504dc915bc8 # v1
if: always()
with:
step: finish
override: false
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
env: ${{ steps.deployment.outputs.env }}
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
env_url: ${{ steps.netlify.outputs.deploy-url }}
desc: |
Do you trust the author of this PR? Maybe this build will steal your keys or give you malware.
Exercise caution. Use test accounts.

View File

@@ -1,50 +0,0 @@
name: PR Preview Deployments
on:
workflow_run:
workflows: ["Build"]
types:
- completed
jobs:
prdetails:
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' }}
runs-on: ubuntu-latest
outputs:
pr_number: ${{ steps.prdetails.outputs.pr_id }}
pr_data_json: ${{ steps.prdetails.outputs.data }}
steps:
- id: prdetails
uses: matrix-org/pr-details-action@15bde5285d7850ba276cc3bd8a03733e3f24622a # v1.3
continue-on-error: true
with:
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
branch: ${{ github.event.workflow_run.head_branch }}
netlify:
needs: prdetails
permissions:
deployments: write
uses: ./.github/workflows/netlify.yaml
with:
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
pr_number: ${{ needs.prdetails.outputs.pr_number }}
pr_head_full_name: ${{ github.event.workflow_run.head_repository.full_name }}
pr_head_ref: ${{ needs.prdetails.outputs.pr_data_json && fromJSON(needs.prdetails.outputs.pr_data_json).head.ref }}
deployment_ref: ${{ needs.prdetails.outputs.pr_data_json && fromJSON(needs.prdetails.outputs.pr_data_json).head.sha || github.ref || github.head_ref }}
secrets:
ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
docker:
if: ${{ needs.prdetails.outputs.pr_data_json && contains(fromJSON(needs.prdetails.outputs.pr_data_json).labels.*.name, 'docker build') }}
needs: prdetails
permissions:
contents: write
packages: write
uses: ./.github/workflows/docker.yaml
with:
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }}
docker_tags: |
type=sha,format=short,event=branch
type=raw,value=pr_${{ needs.prdetails.outputs.pr_number }}

View File

@@ -3,70 +3,43 @@ name: Build & publish images to the package registry for tags
on: on:
release: release:
types: [published] types: [published]
workflow_run:
workflows: ["Build"]
branches: [livekit]
types:
- completed
env: env:
REGISTRY: ghcr.io REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }} IMAGE_NAME: ${{ github.repository }}
jobs: jobs:
build_element_call: build:
if: ${{ github.event_name == 'release' }} name: Build & publish
uses: ./.github/workflows/element-call.yaml
with:
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
secrets:
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_URL: ${{ secrets.SENTRY_URL }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
publish_tarball:
needs: build_element_call
if: always()
name: Publish tarball
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs:
unix_time: ${{steps.current-time.outputs.unix_time}}
permissions: permissions:
contents: write # required to upload release asset contents: read
packages: write packages: write
steps: steps:
- name: Get current time - name: Check it out
id: current-time uses: actions/checkout@v2
run: echo "unix_time=$(date +'%s')" >> $GITHUB_OUTPUT
- name: 📥 Download artifact - name: Log in to container registry
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4 uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} registry: ${{ env.REGISTRY }}
run-id: ${{ github.event.workflow_run.id || github.run_id }} username: ${{ github.actor }}
name: build-output password: ${{ secrets.GITHUB_TOKEN }}
path: dist
- name: Create Tarball - name: Extract metadata (tags, labels) for Docker
env: id: meta
TARBALL_VERSION: ${{ github.event.release.tag_name || github.sha }} uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
run: |
tar --numeric-owner --transform "s/dist/element-call-${TARBALL_VERSION}/" -cvzf element-call-${TARBALL_VERSION}.tar.gz dist
- name: Upload
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
env:
GITHUB_TOKEN: ${{ github.token }}
with: with:
path: "./element-call-*.tar.gz" images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
publish_docker:
needs: publish_tarball - name: Set up Docker Buildx
if: always() uses: docker/setup-buildx-action@dc7b9719a96d48369863986a06765841d7ea23f6
permissions:
contents: write - name: Build and push Docker image
packages: write uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
uses: ./.github/workflows/docker.yaml with:
with: context: .
artifact_run_id: ${{ github.event.workflow_run.id || github.run_id }} platforms: linux/amd64,linux/arm64
docker_tags: | push: true
type=sha,format=short,event=branch tags: ${{ steps.meta.outputs.tags }}
type=semver,pattern=v{{version}} labels: ${{ steps.meta.outputs.labels }}
type=raw,value=latest-ci,enable={{is_default_branch}}
type=raw,value=latest-ci_${{needs.publish_tarball.outputs.unix_time}},enable={{is_default_branch}}

View File

@@ -1,28 +1,18 @@
name: Run unit tests name: Run jest tests
on: on:
pull_request: {} pull_request: {}
push:
branches: [livekit, full-mesh]
jobs: jobs:
vitest: jest:
name: Run vitest tests name: Run jest tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 uses: actions/checkout@v2
- name: Yarn cache - name: Yarn cache
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 uses: actions/setup-node@v3
with: with:
cache: "yarn" cache: "yarn"
node-version: "lts/*"
- name: Install dependencies - name: Install dependencies
run: "yarn install" run: "yarn install"
- name: Vitest - name: Jest
run: "yarn run test:coverage" run: "yarn run test"
- name: Upload to codecov
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
flags: unittests
fail_ci_if_error: true

View File

@@ -1,57 +0,0 @@
name: Download translation files from Localazy
on:
workflow_dispatch:
secrets:
ELEMENT_BOT_TOKEN:
required: true
jobs:
download:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout the code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: "yarn"
node-version: "lts/*"
- name: Install Deps
run: "yarn install --frozen-lockfile"
- name: Prune i18n
run: "rm -R public/locales"
- name: Download translation files
uses: localazy/download@0a79880fb66150601e3b43606fab69c88123c087 # v1.1.0
with:
groups: "-p includeSourceLang:true"
- name: Fix the owner of the downloaded files
run: "sudo chown runner:docker -R public/locales"
- name: Prettier
run: yarn prettier:format
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
with:
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
branch: actions/localazy-download
delete-branch: true
title: Localazy Download
commit-message: Translations updates
labels: |
T-Task
- name: Enable automerge
run: gh pr merge --merge --auto "$PR_NUMBER"
if: steps.cpr.outputs.pull-request-operation == 'created'
env:
GH_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
PR_NUMBER: ${{ steps.cpr.outputs.pull-request-number }}

View File

@@ -1,22 +0,0 @@
name: Upload translation files to Localazy
on:
push:
branches:
- livekit
paths-ignore:
- ".github/**"
jobs:
upload:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout the code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Upload
uses: localazy/upload@27e6b5c0fddf4551596b42226b1c24124335d24a # v1
with:
write_key: ${{ secrets.LOCALAZY_WRITE_KEY }}

27
.github/workflows/triage-incoming.yaml vendored Normal file
View File

@@ -0,0 +1,27 @@
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 }}

3
.gitignore vendored
View File

@@ -5,6 +5,3 @@ dist
dist-ssr dist-ssr
*.local *.local
.idea/ .idea/
public/config.json
/coverage
yarn-error.log

25
.storybook/main.js Normal file
View File

@@ -0,0 +1,25 @@
const svgrPlugin = require("vite-plugin-svgr");
const path = require("path");
module.exports = {
stories: ["../src/**/*.stories.@(js|jsx|ts|tsx)"],
framework: "@storybook/react",
core: {
builder: "storybook-builder-vite",
},
async viteFinal(config) {
config.plugins = config.plugins.filter(
(item) =>
!(
Array.isArray(item) &&
item.length > 0 &&
item[0].name === "vite-plugin-mdx"
)
);
config.plugins.push(svgrPlugin());
config.resolve = config.resolve || {};
config.resolve.dedupe = config.resolve.dedupe || [];
config.resolve.dedupe.push("react", "react-dom", "matrix-js-sdk");
return config;
},
};

25
.storybook/preview.jsx Normal file
View File

@@ -0,0 +1,25 @@
import React from "react";
import { addDecorator } from "@storybook/react";
import { MemoryRouter } from "react-router-dom";
import { usePageFocusStyle } from "../src/usePageFocusStyle";
import { OverlayProvider } from "@react-aria/overlays";
import "../src/index.css";
export const parameters = {
actions: { argTypesRegex: "^on[A-Z].*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
};
addDecorator((story) => {
usePageFocusStyle();
return (
<MemoryRouter initialEntries={["/"]}>
<OverlayProvider>{story()}</OverlayProvider>
</MemoryRouter>
);
});

View File

@@ -5,18 +5,18 @@
"editor.tabSize": 2, "editor.tabSize": 2,
"[typescriptreact]": { "[typescriptreact]": {
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode",
}, },
"[javascriptreact]": { "[javascriptreact]": {
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode",
}, },
"[typescript]": { "[typescript]": {
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode",
}, },
"[javascript]": { "[javascript]": {
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode",
} }
} }

View File

@@ -1,3 +1,4 @@
# Contributing code to Element Contributing code to Element
============================
Element follows the same pattern as the [matrix-js-sdk](https://github.com/matrix-org/matrix-js-sdk/blob/develop/CONTRIBUTING.md). Element follows the same pattern as the [matrix-js-sdk](https://github.com/matrix-org/matrix-js-sdk/blob/develop/CONTRIBUTING.md).

View File

@@ -1,7 +1,15 @@
FROM --platform=$BUILDPLATFORM node:16-buster as builder
WORKDIR /src
COPY . /src/element-call
RUN element-call/scripts/dockerbuild.sh
# App
FROM nginxinc/nginx-unprivileged:alpine FROM nginxinc/nginx-unprivileged:alpine
COPY ./dist /app COPY --from=builder /src/element-call/dist /app
COPY config/nginx.conf /etc/nginx/conf.d/default.conf COPY config/default.conf /etc/nginx/conf.d/
USER root USER root

141
README.md
View File

@@ -1,36 +1,32 @@
# Element Call # Element Call
[![Chat](https://img.shields.io/matrix/webrtc:matrix.org)](https://matrix.to/#/#webrtc:matrix.org) [![Chat](https://img.shields.io/matrix/webrtc:matrix.org)](https://matrix.to/#/#webrtc:matrix.org)
[![Localazy](https://img.shields.io/endpoint?url=https%3A%2F%2Fconnect.localazy.com%2Fstatus%2Felement-call%2Fdata%3Fcontent%3Dall%26title%3Dlocalazy%26logo%3Dtrue)](https://localazy.com/p/element-call) [![Translate](https://translate.element.io/widgets/element-call/-/element-call/svg-badge.svg)](https://translate.element.io/engage/element-call/)
Group calls with WebRTC that leverage [Matrix](https://matrix.org) and an open-source WebRTC toolkit from [LiveKit](https://livekit.io/). Full mesh group calls powered by [Matrix](https://matrix.org), implementing [MatrixRTC](https://github.com/matrix-org/matrix-spec-proposals/blob/matthew/group-voip/proposals/3401-group-voip.md).
For prior version of the Element Call that relied solely on full-mesh logic, check [`full-mesh`](https://github.com/element-hq/element-call/tree/full-mesh) branch. To try it out, visit our hosted version at [call.element.io](https://call.element.io). You can also find the latest development version continuously deployed to [element-call.netlify.app](https://element-call.netlify.app).
![A demo of Element Call with six people](demo.jpg)
To try it out, visit our hosted version at [call.element.io](https://call.element.io). You can also find the latest development version continuously deployed to [call.element.dev](https://call.element.dev/).
## Host it yourself ## Host it yourself
Until prebuilt tarballs are available, you'll need to build Element Call from source. First, clone and install the package: Until prebuilt tarballs are available, you'll need to build Element Call from source. First, clone and install the package:
``` ```
git clone https://github.com/element-hq/element-call.git git clone https://github.com/vector-im/element-call.git
cd element-call cd element-call
yarn yarn
cp .env.example .env
```
You can now edit the configuration in `.env` to your liking. The most important thing is to set `VITE_DEFAULT_HOMESERVER` to the homeserver that the app should use, such as `https://call.ems.host`.
Next, build the project:
```
yarn build yarn build
``` ```
If all went well, you can now find the build output under `dist` as a series of static files. These can be hosted using any web server that can be configured with custom routes (see below). If all went well, you can now find the build output under `dist` as a series of static files. These can be hosted using any web server of your choice.
You may also wish to add a configuration file (Element Call uses the domain it's hosted on as a Homeserver URL by default,
but you can change this in the config file). This goes in `public/config.json` - you can use the sample as a starting point:
```
cp config/config.sample.json public/config.json
# edit public/config.json
```
Because Element Call uses client-side routing, your server must be able to route any requests to non-existing paths back to `/index.html`. For example, in Nginx you can achieve this with the `try_files` directive: Because Element Call uses client-side routing, your server must be able to route any requests to non-existing paths back to `/index.html`. For example, in Nginx you can achieve this with the `try_files` directive:
@@ -44,61 +40,14 @@ server {
} }
``` ```
By default, the app expects you to have a Matrix homeserver (such as [Synapse](https://matrix-org.github.io/synapse/latest/setup/installation.html)) installed locally and running on port 8008. If you wish to use a homeserver on a different URL or one that is hosted on a different server, you can add a config file as above, and include the homeserver URL that you'd like to use.
Element Call requires a homeserver with registration enabled without any 3pid or token requirements, if you want it to be used by unregistered users. Furthermore, it is not recommended to use it with an existing homeserver where user accounts have joined normal rooms, as it may not be able to handle those yet and it may behave unreliably.
Therefore, to use a self-hosted homeserver, this is recommended to be a new server where any user account created has not joined any normal rooms anywhere in the Matrix federated network. The homeserver used can be setup to disable federation, so as to prevent spam registrations (if you keep registrations open) and to ensure Element Call continues to work in case any user decides to log in to their Element Call account using the standard Element app and joins normal rooms that Element Call cannot handle.
## Configuration
There are currently two different config files. `.env` holds variables that are used at build time, while `public/config.json` holds variables that are used at runtime. Documentation and default values for `public/config.json` can be found in [ConfigOptions.ts](src/config/ConfigOptions.ts).
If you're using [Synapse](https://github.com/element-hq/synapse/), you'll need to additionally add the following to `homeserver.yaml` or Element Call won't work:
```
experimental_features:
msc3266_enabled: true
```
MSC3266 allows to request a room summary of rooms you are not joined.
The summary contains the room join rules. We need that to decide if the user gets prompted with the option to knock ("ask to join"), a cannot join error or the join view.
Element Call requires a Livekit SFU behind a Livekit jwt service to work. The url to the Livekit jwt service can either be configured in the config of Element Call (fallback/legacy configuration) or be configured by your homeserver via the `.well-known`.
This is the recommended method.
The configuration is a list of Foci configs:
```json
"org.matrix.msc4143.rtc_foci": [
{
"type": "livekit",
"livekit_service_url": "https://someurl.com"
},
{
"type": "livekit",
"livekit_service_url": "https://livekit2.com"
},
{
"type": "another_foci",
"props_for_another_foci": "val"
},
]
```
## Translation
If you'd like to help translate Element Call, head over to [Localazy](https://localazy.com/p/element-call). You're also encouraged to join the [Element Translators](https://matrix.to/#/#translators:element.io) space to discuss and coordinate translation efforts.
## Development ## Development
### Frontend Element Call is built against the `robertlong/group-call` branch of [matrix-js-sdk](https://github.com/matrix-org/matrix-js-sdk/pull/2553). To get started, clone, install, and link the package:
Element Call is built against [matrix-js-sdk](https://github.com/matrix-org/matrix-js-sdk/pull/2553). To get started, clone, install, and link the package:
``` ```
git clone https://github.com/matrix-org/matrix-js-sdk.git git clone https://github.com/matrix-org/matrix-js-sdk.git
cd matrix-js-sdk cd matrix-js-sdk
git switch robertlong/group-call
yarn yarn
yarn link yarn link
``` ```
@@ -106,69 +55,25 @@ yarn link
Next, we can set up this project: Next, we can set up this project:
``` ```
git clone https://github.com/element-hq/element-call.git git clone https://github.com/vector-im/element-call.git
cd element-call cd element-call
yarn yarn
yarn link matrix-js-sdk yarn link matrix-js-sdk
cp .env.example .env
``` ```
By default, the app expects you to have [Synapse](https://matrix-org.github.io/synapse/latest/setup/installation.html) installed locally and running on port 8008. If you wish to use another homeserver, you can set it in your `.env` file.
You're now ready to launch the development server: You're now ready to launch the development server:
``` ```
yarn dev yarn dev
``` ```
### Backend ## Config
A docker compose file is provided to start a LiveKit server and auth Configuration options are documented in the `.env` file.
service for development. These use a test 'secret' published in this
repository, so this must be used only for local development and
**_never be exposed to the public Internet._**
To use it, add a SFU parameter in your local config `./public/config.json`: ## Translation
(Be aware, that this is only the fallback Livekit SFU. If the homeserver
advertises one in the client well-known, this will not be used.)
```json If you'd like to help translate Element Call, head over to [translate.element.io](https://translate.element.io/engage/element-call/). You're also encouraged to join the [Element Translators](https://matrix.to/#/#translators:element.io) space to discuss and coordinate translation efforts.
"livekit": {
"livekit_service_url": "http://localhost:7881"
},
```
Run backend components:
```
yarn backend
```
### Test Coverage
<img src="https://codecov.io/github/element-hq/element-call/graphs/tree.svg?token=O6CFVKK6I1"></img>
### Add a new translation key
To add a new translation key you can do these steps:
1. Add the new key entry to the code where the new key is used: `t("some_new_key")`
1. Run `yarn i18n` to extract the new key and update the translation files. This will add a skeleton entry to the `public/locales/en-GB/app.json` file:
```jsonc
{
...
"some_new_key": "",
...
}
```
1. Update the skeleton entry in the `public/locales/en-GB/app.json` file with the English translation:
```jsonc
{
...
"some_new_key": "Some new key",
...
}
```
## Documentation
Usage and other technical details about the project can be found here:
[**Docs**](./docs/README.md)

View File

@@ -8,12 +8,7 @@ module.exports = {
}, },
}, },
], ],
[ "@babel/preset-react",
"@babel/preset-react",
{
runtime: "automatic",
},
],
"@babel/preset-typescript", "@babel/preset-typescript",
], ],
plugins: ["babel-plugin-transform-vite-meta-env"], plugins: ["babel-plugin-transform-vite-meta-env"],

View File

@@ -1,44 +0,0 @@
version: "3.9"
networks:
lkbackend:
services:
auth-service:
image: ghcr.io/element-hq/lk-jwt-service:latest-ci
hostname: auth-server
ports:
- 8881:8080
environment:
- LIVEKIT_URL=ws://localhost:7880
- LIVEKIT_KEY=devkey
- LIVEKIT_SECRET=secret
deploy:
restart_policy:
condition: on-failure
networks:
- lkbackend
livekit:
image: livekit/livekit-server:latest
command: --dev --config /etc/livekit.yaml
restart: unless-stopped
ports:
- "7880:7880"
- "7881:7881"
- "7882:7882"
- "50100-50200:50100-50200"
volumes:
- ./backend/livekit.yaml:/etc/livekit.yaml
networks:
- lkbackend
redis:
image: redis:6-alpine
command: redis-server /etc/redis.conf
ports:
- 6379:6379
volumes:
- ./backend/redis.conf:/etc/redis.conf
networks:
- lkbackend

View File

@@ -1,23 +0,0 @@
port: 7880
bind_addresses:
- "0.0.0.0"
rtc:
tcp_port: 7881
port_range_start: 50100
port_range_end: 50200
use_external_ip: false
#redis:
# address: redis:6379
# username: ""
# password: ""
# db: 0
turn:
enabled: false
domain: localhost
cert_file: ""
key_file: ""
tls_port: 5349
udp_port: 443
external_tls: true
keys:
devkey: secret

View File

@@ -1,5 +0,0 @@
bind 0.0.0.0
protected-mode yes
port 6379
timeout 0
tcp-keepalive 300

View File

@@ -1,13 +0,0 @@
# Don't post comments on PRs; they're noisy and the same information can be
# gotten through the checks section at the bottom of the PR anyways
comment: false
coverage:
status:
project:
default:
# Track the impact of changes on overall coverage without blocking PRs
informational: true
patch:
default:
# Expect 80% coverage on all lines that a PR touches
target: 80%

View File

@@ -1,15 +0,0 @@
{
"default_server_config": {
"m.homeserver": {
"base_url": "https://call.ems.host",
"server_name": "call.ems.host"
}
},
"livekit": {
"livekit_service_url": "http://localhost:7881"
},
"features": {
"feature_use_device_session_member_events": true
},
"eula": "https://static.element.io/legal/online-EULA.pdf"
}

View File

@@ -1,21 +0,0 @@
{
"default_server_config": {
"m.homeserver": {
"base_url": "https://call-unstable.ems.host",
"server_name": "call-unstable.ems.host"
}
},
"livekit": {
"livekit_service_url": "https://livekit-jwt.call.element.dev"
},
"features": {
"feature_use_device_session_member_events": true
},
"posthog": {
"api_key": "phc_rXGHx9vDmyEvyRxPziYtdVIv0ahEv8A9uLWFcCi1WcU",
"api_host": "https://posthog-element-call.element.io"
},
"rageshake": {
"submit_url": "https://element.io/bugreports/submit"
}
}

10
config/default.conf Normal file
View File

@@ -0,0 +1,10 @@
server {
listen 8080;
server_name localhost;
location / {
root /app;
try_files $uri /$uri /index.html;
}
}

View File

@@ -1,30 +0,0 @@
<VirtualHost *:8080>
ServerName localhost
DocumentRoot "/app"
<Location "/">
# disable cache entriely by default (apart from Etag which is accurate enough)
Header add Cache-Control "private no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0"
CacheDisable on
ExpiresActive off
# also turn off last-modified since they are just the timestamps of the file in the docker image
# and may or may not bear any resemblance to when the resource changed
Header add Last-Modified ""
DirectoryIndex index.html
</Location>
# assets can be cached because they have hashed filenames
<Location "/assets">
ExpiresActive on
ExpiresDefault "access plus 1 week"
Header add Cache-Control "public, no-transform"
</Location>
<Location "/apple-app-site-association">
ForceType application/json
</Location>
</VirtualHost>

View File

@@ -1,29 +0,0 @@
server {
listen 8080;
server_name localhost;
root /app;
location / {
# disable cache entriely by default (apart from Etag which is accurate enough)
add_header Cache-Control 'private no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
if_modified_since off;
expires off;
# also turn off last-modified since they are just the timestamps of the file in the docker image
# and may or may not bear any resemblance to when the resource changed
add_header Last-Modified "";
try_files $uri /$uri /index.html;
}
# assets can be cached because they have hashed filenames
location /assets {
expires 1w;
add_header Cache-Control "public, no-transform";
}
location /apple-app-site-association {
default_type application/json;
}
}

View File

@@ -1,18 +0,0 @@
# OpenTelemetry Collector for development
This directory contains a docker compose file that starts a jaeger all-in-one instance
with an in-memory database, along with a standalone OpenTelemetry collector that forwards
traces into the jaeger. Jaeger has a built-in OpenTelemetry collector, but it can't be
configured to send CORS headers so can't be used from a browser. This sets the config on
the collector to send CORS headers.
This also adds an nginx to add CORS headers to the jaeger query endpoint, such that it can
be used from webapps like stalk (https://deniz.co/stalk/). The CORS enabled endpoint is
exposed on port 16687. To use stalk, you should simply be able to navigate to it and add
http://127.0.0.1:16687/api as a data source.
(Yes, we could enable the OTLP collector in jaeger all-in-one and passed this through
the nginx to enable CORS too, rather than running a separate collector. There's no reason
it's done this way other than that I'd already set up the separate collector.)
Running `docker compose up` in this directory should be all you need.

View File

@@ -1,41 +0,0 @@
receivers:
otlp:
protocols:
http:
endpoint: 0.0.0.0:4318
cors:
allowed_origins:
# This can't be '*' because opentelemetry-js uses sendBeacon which always operates
# in 'withCredentials' mode, which browsers don't allow with an allow-origin of '*'
#- "https://pr976--element-call.netlify.app"
- "http://*"
allowed_headers:
- "*"
processors:
batch:
timeout: 1s
resource:
attributes:
- key: test.key
value: "test-value"
action: insert
exporters:
logging:
loglevel: info
jaeger:
endpoint: jaeger-all-in-one:14250
tls:
insecure: true
extensions:
health_check:
pprof:
endpoint: :1888
zpages:
endpoint: :55679
service:
extensions: [pprof, zpages, health_check]
pipelines:
traces:
receivers: [otlp]
processors: [batch, resource]
exporters: [logging, jaeger]

View File

@@ -1,29 +0,0 @@
version: "2"
services:
# Jaeger
jaeger-all-in-one:
image: jaegertracing/all-in-one:latest
ports:
- "16686:16686"
- "14268"
- "14250"
# Collector
collector-gateway:
image: otel/opentelemetry-collector:latest
volumes:
- ./collector-gateway.yaml:/etc/collector-gateway.yaml
command: ["--config=/etc/collector-gateway.yaml"]
ports:
- "1888:1888" # pprof extension
- "13133:13133" # health_check extension
- "4317:4317" # OTLP gRPC receiver
- "4318:4318" # OTLP HTTP receiver
- "55670:55679" # zpages extension
depends_on:
- jaeger-all-in-one
nginx:
image: nginxinc/nginx-unprivileged:latest
volumes:
- ./nginx_otel.conf:/etc/nginx/conf.d/default.conf:ro
ports:
- "16687:8080"

View File

@@ -1,16 +0,0 @@
server {
listen 8080;
server_name localhost;
location / {
proxy_pass http://jaeger-all-in-one:16686/;
add_header Access-Control-Allow-Origin *;
if ($request_method = OPTIONS) {
add_header Access-Control-Allow-Origin *;
add_header Content-Type text/plain;
add_header Content-Length 0;
return 204;
}
}
}

BIN
demo.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 179 KiB

View File

@@ -1,7 +0,0 @@
## Element Call Docs
This folder contains documentation for Element Call setup and usage.
- [Embedded vs standalone mode](./embedded-standalone.md)
- [Url format and parameters](./url-params.md)
- [Global JS controls](./controls.md)

View File

@@ -1,7 +0,0 @@
# Global JS controls
A few aspects of Element Call's interface can be controlled through a global API on the `window`:
- `controls.canEnterPip(): boolean` Determines whether it's possible to enter picture-in-picture mode.
- `controls.enablePip(): void` Puts the call interface into picture-in-picture mode. Throws if not in a call.
- `controls.disablePip(): void` Takes the call interface out of picture-in-picture mode, restoring it to its natural display mode. Throws if not in a call.

View File

@@ -1,9 +0,0 @@
## Embedded vs standalone mode
Element call is developed using the js-sdk with matroska mode. This means the app can run either as a standalone app directly connected to a homeserver providing login interfaces or it can be used as a widget.
As a widget the app only uses the core calling (matrixRTC) parts. The rest (authentication, sending events, getting room state updates about calls) is done by the hosting client.
Element Call and the hosting client are connected via the widget api.
Element call detects that it is run as a widget if a widgetId is defined in the url parameters. If `widgetId` is present element call will try to connect to the client via the widget postMessage api using the parameters provided in [Url Format and parameters
](./url-params.md).

View File

@@ -1,252 +0,0 @@
# Url Format and parameters
There are two formats for Element Call urls.
- **Current Format**
```text
https://element_call.domain/room/#
/<room_name_alias>?roomId=!id:domain&password=1234&<other params see below>
```
The url is split into two sections. The `https://element_call.domain/room/#`
contains the app and the intend that the link brings you into a specific room
(`https://call.element.io/#` would be the homepage). The fragment is used for
query parameters to make sure they never get sent to the element_call.domain
server. Here we have the actual matrix roomId and the password which are used
to connect all participants with e2ee. This allows that `<room_name_alias>` does
not need to be unique. Multiple meetings with the label weekly-sync can be created
without collisions.
- **deprecated**
```text
https://element_call.domain/<room_name>
```
With this format the livekit alias that will be used is the `<room_name>`.
All ppl connecting to this url will end up in the same unencrypted room.
This does not scale, is super unsecure
(ppl could end up in the same room by accident) and it also is not really
possible to support encryption.
The url parameters are spit into two categories: **general** and **widget related**.
## Widget related params
**widgetId**
The id used by the widget. The presence of this parameter implies that element
call will not connect to a homeserver directly and instead tries to establish
postMessage communication via the `parentUrl`.
```ts
widgetId: string | null;
```
**parentUrl**
The url used to send widget action postMessages. This should be the domain of
the client or the webview the widget is hosted in. (in case the widget is not
in an Iframe but in a dedicated webview we send the postMessages same webview
the widget lives in. Filtering is done in the widget so it ignores the messages
it receives from itself)
```ts
parentUrl: string | null;
```
**userId**
The user's ID (only used in matryoshka mode).
```ts
userId: string | null;
```
**deviceId**
The device's ID (only used in matryoshka mode).
```ts
deviceId: string | null;
```
**baseUrl**
The base URL of the homeserver to use for media lookups in matryoshka mode.
```ts
baseUrl: string | null;
```
### General url parameters
**roomId**
Anything about what room we're pointed to should be from useRoomIdentifier which
parses the path and resolves alias with respect to the default server name, however
roomId is an exception as we need the room ID in embedded (matroyska) mode, and not
the room alias (or even the via params because we are not trying to join it). This
is also not validated, where it is in useRoomIdentifier().
```ts
roomId: string | null;
```
**confineToRoom**
Whether the app should keep the user confined to the current call/room.
```ts
confineToRoom: boolean; (default: false)
```
**appPrompt**
Whether upon entering a room, the user should be prompted to launch the
native mobile app. (Affects only Android and iOS.)
```ts
appPrompt: boolean; (default: true)
```
**preload**
Whether the app should pause before joining the call until it sees an
io.element.join widget action, allowing it to be preloaded.
```ts
preload: boolean; (default: false)
```
**hideHeader**
Whether to hide the room header when in a call.
```ts
hideHeader: boolean; (default: false)
```
**showControls**
Whether to show the buttons to mute, screen-share, invite, hangup are shown
when in a call.
```ts
showControls: boolean; (default: true)
```
**hideScreensharing**
Whether to hide the screen-sharing button.
```ts
hideScreensharing: boolean; (default: false)
```
**enableE2EE** (Deprecated)
Whether to use end-to-end encryption. This is a legacy flag for the full mesh branch.
It is not used on the livekit branch and has no impact there!
```ts
enableE2EE: boolean; (default: true)
```
**perParticipantE2EE**
Whether to use per participant encryption.
Keys will be exchanged over encrypted matrix room messages.
```ts
perParticipantE2EE: boolean; (default: false)
```
**password**
E2EE password when using a shared secret.
(For individual sender keys in embedded mode this is not required.)
```ts
password: string | null;
```
**displayName**
The display name to use for auto-registration.
```ts
displayName: string | null;
```
**lang**
The BCP 47 code of the language the app should use.
```ts
lang: string | null;
```
**fonts**
The font/fonts which the interface should use.
There can be multiple font url parameters: `?font=font-one&font=font-two...`
```ts
font: string;
font: string;
...
```
**fontScale**
The factor by which to scale the interface's font size.
```ts
fontScale: number | null;
```
**analyticsID**
The Posthog analytics ID. It is only available if the user has given consent for
sharing telemetry in element web.
```ts
analyticsID: string | null;
```
**allowIceFallback**
Whether the app is allowed to use fallback STUN servers for ICE in case the
user's homeserver doesn't provide any.
```ts
allowIceFallback: boolean; (default: false)
```
**skipLobby**
Setting this flag skips the lobby and brings you in the call directly.
In the widget this can be combined with preload to pass the device settings
with the join widget action.
```ts
skipLobby: boolean; (default: false)
```
**returnToLobby**
Setting this flag makes element call show the lobby in widget mode after leaving
a call.
This is useful for video rooms.
If set to false, the widget will show a blank page after leaving the call.
```ts
returnToLobby: boolean; (default: false)
```
**theme**
The theme to use for element call.
can be "light", "dark", "light-high-contrast" or "dark-high-contrast".
If not set element call will use the dark theme.
```ts
theme: string | null;
```
**viaServers**
This defines the homeserver that is going to be used when joining a room.
It has to be set to a non default value for links to rooms
that are not on the default homeserver,
that is in use for the current user.
```ts
viaServers: string; (default: undefined)
```
**homeserver**
This defines the homeserver that is going to be used when registering
a new (guest) user.
This can be user to configure a non default guest user server when
creating a spa link.
```ts
homeserver: string; (default: undefined)
```

20
i18next-parser.config.js Normal file
View File

@@ -0,0 +1,20 @@
export default {
keySeparator: false,
namespaceSeparator: false,
contextSeparator: "|",
pluralSeparator: "|",
createOldCatalogs: false,
defaultNamespace: "app",
lexers: {
ts: [{
lexer: "JavascriptLexer",
functions: ["t", "translatedError"],
functionsNamespace: ["useTranslation", "withTranslation"],
}],
},
locales: ["en-GB"],
output: "public/locales/$LOCALE/$NAMESPACE.json",
input: ["src/**/*.{ts,tsx}"],
sort: true,
useKeysAsDefaultValue: true,
};

View File

@@ -1,28 +0,0 @@
export default {
keySeparator: ".",
namespaceSeparator: false,
contextSeparator: "|",
pluralSeparator: "_",
createOldCatalogs: false,
defaultNamespace: "app",
lexers: {
ts: [
{
lexer: "JavascriptLexer",
functions: ["t", "translatedError"],
namespaceFunctions: ["useTranslation", "withTranslation"],
},
],
tsx: [
{
lexer: "JsxLexer",
functions: ["t", "translatedError"],
namespaceFunctions: ["useTranslation", "withTranslation"],
},
],
},
locales: ["en-GB"],
output: "public/locales/$LOCALE/$NAMESPACE.json",
input: ["src/**/*.{ts,tsx}"],
sort: true,
};

30
knip.ts
View File

@@ -1,30 +0,0 @@
import { KnipConfig } from "knip";
export default {
entry: ["src/main.tsx", "i18next-parser.config.ts"],
ignoreBinaries: [
// This is deprecated, so Knip doesn't actually recognize it as a globally
// installed binary. TODO We should switch to Compose v2:
// https://docs.docker.com/compose/migrate/
"docker-compose",
],
ignoreDependencies: [
// Used in CSS
"normalize.css",
// Used for its global type declarations
"@types/grecaptcha",
// Because we use matrix-js-sdk as a Git dependency rather than consuming
// the proper release artifacts, and also import directly from src/, we're
// forced to re-install some of the types that it depends on even though
// these look unused to Knip
"@types/content-type",
"@types/sdp-transform",
"@types/uuid",
// We obviously use this, but if the package has been linked with yarn link,
// then Knip will flag it as a false positive
// https://github.com/webpro-nl/knip/issues/766
"@vector-im/compound-web",
"matrix-widget-api",
],
ignoreExportsUsedInFile: true,
} satisfies KnipConfig;

View File

@@ -1,33 +0,0 @@
{
"readKey": "a7580769542256117579-70975387172511848f4c6533943d776547bad4853931ba352ee684b738f4494e",
"upload": {
"type": "json",
"deprecate": "file",
"features": ["plural_postfix_us", "filter_untranslated"],
"files": [
{
"pattern": "public/locales/en-GB/*.json",
"lang": "inherited"
},
{
"group": "existing",
"pattern": "public/locales/*/*.json",
"excludes": ["public/locales/en-GB/*.json"],
"lang": "${autodetectLang}"
}
]
},
"download": {
"files": [
{
"output": "public/locales/${langLsrDash}/${file}"
}
],
"includeSourceLang": "${includeSourceLang|false}",
"langAliases": {
"en": "en_GB"
}
}
}

View File

@@ -1,114 +1,113 @@
{ {
"name": "element-call",
"version": "0.0.0", "version": "0.0.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "NODE_OPTIONS=--max-old-space-size=16384 vite build", "build": "vite build",
"serve": "vite preview", "serve": "vite preview",
"prettier:check": "prettier -c .", "storybook": "start-storybook -p 6006",
"prettier:format": "prettier -w .", "build-storybook": "build-storybook",
"lint": "yarn lint:types && yarn lint:eslint && yarn lint:knip", "prettier:check": "prettier -c src",
"lint:eslint": "eslint --max-warnings 0 src", "prettier:format": "prettier -w src",
"lint:eslint-fix": "eslint --max-warnings 0 src --fix", "lint": "yarn lint:types && yarn lint:js",
"lint:knip": "knip", "lint:js": "eslint --max-warnings 0 src",
"lint:types": "tsc", "lint:types": "tsc",
"i18n": "i18next", "i18n": "node_modules/i18next-parser/bin/cli.js",
"i18n:check": "i18next --fail-on-warnings --fail-on-update", "i18n:check": "node_modules/i18next-parser/bin/cli.js --fail-on-warnings --fail-on-update",
"test": "vitest", "test": "jest"
"test:coverage": "vitest --coverage",
"backend": "docker-compose -f backend-docker-compose.yml up"
}, },
"devDependencies": { "dependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@juggle/resize-observer": "^3.3.1", "@juggle/resize-observer": "^3.3.1",
"@livekit/components-core": "^0.11.0", "@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.8.tgz",
"@livekit/components-react": "^2.0.0", "@react-aria/button": "^3.3.4",
"@opentelemetry/api": "^1.4.0", "@react-aria/dialog": "^3.1.4",
"@opentelemetry/core": "^1.25.1", "@react-aria/focus": "^3.5.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.53.0", "@react-aria/menu": "^3.3.0",
"@opentelemetry/resources": "^1.25.1", "@react-aria/overlays": "^3.7.3",
"@opentelemetry/sdk-trace-base": "^1.25.1", "@react-aria/select": "^3.6.0",
"@opentelemetry/sdk-trace-web": "^1.9.1", "@react-aria/tabs": "^3.1.0",
"@opentelemetry/semantic-conventions": "^1.25.1", "@react-aria/tooltip": "^3.1.3",
"@radix-ui/react-dialog": "^1.0.4", "@react-aria/utils": "^3.10.0",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-visually-hidden": "^1.0.3",
"@react-spring/web": "^9.4.4", "@react-spring/web": "^9.4.4",
"@sentry/react": "^8.0.0", "@react-stately/collections": "^3.3.4",
"@sentry/vite-plugin": "^2.0.0", "@react-stately/overlays": "^3.1.3",
"@testing-library/dom": "^10.1.0", "@react-stately/select": "^3.1.3",
"@testing-library/react": "^16.0.0", "@react-stately/tooltip": "^3.0.5",
"@testing-library/user-event": "^14.5.1", "@react-stately/tree": "^3.2.0",
"@types/content-type": "^1.1.5", "@sentry/react": "^6.13.3",
"@types/grecaptcha": "^3.0.9", "@sentry/tracing": "^6.13.3",
"@types/jsdom": "^21.1.7", "@types/grecaptcha": "^3.0.4",
"@types/lodash": "^4.14.199",
"@types/node": "^20.0.0",
"@types/qrcode": "^1.5.5",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/sdp-transform": "^2.4.5", "@types/sdp-transform": "^2.4.5",
"@types/uuid": "10",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@use-gesture/react": "^10.2.11", "@use-gesture/react": "^10.2.11",
"@vector-im/compound-design-tokens": "^1.0.0",
"@vector-im/compound-web": "^6.0.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^2.0.5",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"classnames": "^2.3.1", "classnames": "^2.3.1",
"eslint": "^8.14.0", "color-hash": "^2.0.1",
"eslint-config-google": "^0.14.0", "events": "^3.3.0",
"eslint-config-prettier": "^9.0.0", "i18next": "^21.10.0",
"eslint-plugin-deprecate": "^0.8.2", "i18next-browser-languagedetector": "^6.1.8",
"eslint-plugin-import": "^2.26.0", "i18next-http-backend": "^1.4.4",
"eslint-plugin-jsx-a11y": "^6.5.1", "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#7ec726e10be835588d4b188fcd3d137b4690d79a",
"eslint-plugin-matrix-org": "^1.2.1", "matrix-widget-api": "^1.0.0",
"eslint-plugin-react": "^7.29.4", "mermaid": "^8.13.8",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unicorn": "^55.0.0",
"global-jsdom": "^24.0.0",
"history": "^4.0.0",
"i18next": "^23.0.0",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.0.0",
"i18next-parser": "^9.0.0",
"jsdom": "^25.0.0",
"knip": "^5.27.2",
"livekit-client": "^2.0.2",
"lodash": "^4.17.21",
"loglevel": "^1.9.1",
"matrix-js-sdk": "^v34.4.0",
"matrix-widget-api": "^1.8.2",
"normalize.css": "^8.0.1", "normalize.css": "^8.0.1",
"observable-hooks": "^4.2.3",
"pako": "^2.0.4", "pako": "^2.0.4",
"postcss": "^8.4.41", "postcss-preset-env": "^7",
"postcss-preset-env": "^10.0.0", "re-resizable": "^6.9.0",
"posthog-js": "^1.29.0",
"prettier": "^3.0.0",
"qrcode": "^1.5.4",
"react": "18", "react": "18",
"react-dom": "18", "react-dom": "18",
"react-i18next": "^15.0.0", "react-i18next": "^11.18.6",
"react-json-view": "^1.21.3",
"react-router": "6",
"react-router-dom": "^5.2.0", "react-router-dom": "^5.2.0",
"react-use-clipboard": "^1.0.7", "react-use-clipboard": "^1.0.7",
"react-use-measure": "^2.1.1", "react-use-measure": "^2.1.1",
"rxjs": "^7.8.1", "sdp-transform": "^2.14.1",
"unique-names-generator": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.8.tgz",
"@storybook/react": "^6.5.0-alpha.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/request": "^2.48.8",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-loader": "^8.2.3",
"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-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-matrix-org": "^0.4.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"i18next-parser": "^6.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"prettier": "^2.6.2",
"sass": "^1.42.1", "sass": "^1.42.1",
"typescript": "^5.1.6", "storybook-builder-vite": "^0.1.12",
"typescript-eslint-language-service": "^5.0.5", "typescript": "^4.6.4",
"unique-names-generator": "^4.6.0", "typescript-strict-plugin": "^2.0.1",
"vaul": "^0.9.0", "vite": "^2.4.2",
"vite": "^5.0.0",
"vite-plugin-html-template": "^1.1.0", "vite-plugin-html-template": "^1.1.0",
"vite-plugin-svgr": "^4.0.0", "vite-plugin-svgr": "^0.4.0"
"vitest": "^2.0.0" },
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"<rootDir>/test/**/*-test.[jt]s?(x)"
],
"transformIgnorePatterns": [
"/node_modules/(?!d3)+$",
"/node_modules/(?!internmap)+$"
],
"moduleNameMapper": {
"\\.(css|less|svg)+$": "identity-obj-proxy",
"^\\./IndexedDBWorker\\?worker$": "<rootDir>/test/mocks/workerMock.ts",
"^\\./olm$": "<rootDir>/test/mocks/olmMock.ts"
}
} }
} }

View File

@@ -1,26 +0,0 @@
{
"applinks": {
"details": [
{
"appIDs": [
"7J4U792NQT.io.element.elementx",
"7J4U792NQT.io.element.elementx.nightly",
"7J4U792NQT.io.element.elementx.pr"
],
"components": [
{
"?": {
"no_universal_links": "?*"
},
"exclude": true,
"comment": "Opt out of universal links"
},
{
"/": "/*",
"comment": "Matches any URL"
}
]
}
]
}
}

View File

@@ -1,32 +0,0 @@
[
{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "io.element.android.x.debug",
"sha256_cert_fingerprints": [
"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"
]
}
}
]

View File

@@ -1,20 +1,20 @@
<!doctype html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<title><%- title %></title>
<script>
window.global = window;
</script>
</head>
<!-- The default class is: .no-theme {display: none}. It will be overwritten once the app is loaded. --> <head>
<body class="no-theme"> <meta charset="UTF-8" />
<div id="root"></div> <link rel="icon" type="image/svg+xml" href="favicon.png" />
</body> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
</html> <title>
<%- title %>
</title>
<script>
window.global = window;
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>

View File

@@ -1,75 +1,131 @@
{ {
"a11y": { "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Вече имате акаунт?</0><1><0>Влезте с него</0> или <2>Влезте като гост</2></1>",
"user_menu": "Потребителско меню" "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Създайте акаунт</0> или <2>Влезте като гост</2>",
}, "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Възникна грешка.</0><1>Изпращнето на debug логове ще ни помогне да открием проблема.</1>",
"action": { "<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 calls</1>": "<0>Защо не настройте парола за да запазите акаунта си?</0><1>Ще можете да запазите името и аватара си за бъдещи разговори</1>",
"close": "Затвори", "Accept camera/microphone permissions to join the call.": "Приемете разрешенията за камера/микрофон за да се присъедините в разговора.",
"go": "Напред", "Accept microphone permissions to join the call.": "Приемете разрешението за микрофона за да се присъедините в разговора.",
"no": "Не", "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 логове.",
"register": "Регистрация", "Audio": "Звук",
"remove": "Премахни", "Avatar": "Аватар",
"sign_in": "Влез", "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Натискайки \"Напред\" се съгласявате с нашите <2>Правила и условия</2>",
"sign_out": "Излез" "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Натискайки \"Влез в разговора сега\", се съгласявате с нашите <2>Правила и условия</2>",
}, "Call link copied": "Връзка към разговора бе копирана",
"call_ended_view": { "Call type menu": "Меню \"тип на разговора\"",
"create_account_button": "Създай акаунт", "Camera": "Камера",
"create_account_prompt": "<0>Защо не настройте парола за да запазите акаунта си?</0><1>Ще можете да запазите името и аватара си за бъдещи разговори</1>", "Camera {{n}}": "Камера {{n}}",
"not_now_button": "Не сега, върни се на началния екран" "Camera/microphone permissions needed to join the call.": "Необходими са разрешения за камера/микрофон за да се присъедините в разговора.",
}, "Change layout": "Промени изгледа",
"common": { "Close": "Затвори",
"audio": "Звук", "Confirm password": "Потвърди паролата",
"avatar": "Аватар", "Connection lost": "Връзката се изгуби",
"camera": "Камера", "Copied!": "Копирано!",
"copied": "Копирано!", "Copy and share this call link": "Копирай и сподели връзка към разговора",
"display_name": "Име/псевдоним", "Create account": "Създай акаунт",
"home": "Начало", "Debug log": "Debug логове",
"loading": "Зареждане…", "Debug log request": "Заявка за debug логове",
"microphone": "Микрофон", "Description (optional)": "Описание (незадължително)",
"password": "Парола", "Details": "Детайли",
"profile": "Профил", "Developer": "Разработчик",
"settings": "Настройки", "Display name": "Име/псевдоним",
"username": "Потребителско име", "Download debug logs": "Изтеглете debug логове",
"video": "Видео" "Entering room…": "Влизане в стаята…",
}, "Exit full screen": "Излез от цял екран",
"join_existing_call_modal": { "Fetching group call timed out.": "Изтече времето за взимане на груповия разговор.",
"join_button": "Да, присъедини се", "Freedom": "Свобода",
"text": "Този разговор вече съществува, искате ли да се присъедините?", "Full screen": "Цял екран",
"title": "Присъединяване към съществуващ разговор?" "Go": "Напред",
}, "Grid layout menu": "Меню \"решетков изглед\"",
"layout_spotlight_label": "Прожектор", "Having trouble? Help us fix it.": "Имате проблем? Помогнете да го поправим.",
"lobby": { "Home": "Начало",
"join_button": "Влез в разговора" "Include debug logs": "Включи debug логове",
}, "Incompatible versions": "Несъвместими версии",
"logging_in": "Влизане…", "Incompatible versions!": "Несъвместими версии!",
"login_auth_links": "<0>Създайте акаунт</0> или <2>Влезте като гост</2>", "Inspector": "Инспектор",
"login_title": "Влез", "Invite": "Покани",
"rageshake_request_modal": { "Invite people": "Покани хора",
"body": "Друг потребител в този разговор има проблем. За да диагностицираме този проблем по-добре ни се иска да съберем debug логове.", "Join call": "Влез в разговора",
"title": "Заявка за debug логове" "Join call now": "Влез в разговора сега",
}, "Join existing call?": "Присъединяване към съществуващ разговор?",
"rageshake_send_logs": "Изпратете debug логове", "Leave": "Напусни",
"rageshake_sending": "Изпращане…", "Loading room…": "Напускане на стаята…",
"recaptcha_dismissed": "Recaptcha отхвърлена", "Loading…": "Зареждане…",
"recaptcha_not_loaded": "Recaptcha не е заредена", "Local volume": "Локална сила на звука",
"register": { "Logging in…": "Влизане…",
"passwords_must_match": "Паролите не съвпадат", "Login": "Влез",
"registering": "Регистриране…" "Login to your account": "Влезте в акаунта си",
}, "Microphone": "Микрофон",
"register_auth_links": "<0>Вече имате акаунт?</0><1><0>Влезте с него</0> или <2>Влезте като гост</2></1>", "Microphone permissions needed to join the call.": "Необходими са разрешения за микрофона за да можете да се присъедините в разговора.",
"register_confirm_password_label": "Потвърди паролата", "Microphone {{n}}": "Микрофон {{n}}",
"return_home_button": "Връщане на началния екран", "More": "Още",
"room_auth_view_join_button": "Влез в разговора сега", "More menu": "Мено \"още\"",
"screenshare_button_label": "Сподели екрана", "Mute microphone": "Заглуши микрофона",
"select_input_unset_button": "Изберете опция", "No": "Не",
"settings": { "Not now, return to home screen": "Не сега, върни се на началния екран",
"developer_tab_title": "Разработчик", "Not registered yet? <2>Create an account</2>": "Все още не сте регистрирани? <2>Създайте акаунт</2>",
"feedback_tab_h4": "Изпрати обратна връзка", "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>",
"feedback_tab_send_logs_label": "Включи debug логове", "Password": "Парола",
"more_tab_title": "Още", "Passwords must match": "Паролите не съвпадат",
"speaker_device_selection_label": оворител" "Press and hold spacebar to talk": "Натиснете и задръжте Space за да говорите",
}, "Press and hold spacebar to talk over {{name}}": "Натиснете и задръжте Space за да говорите заедно с {{name}}",
"unauthenticated_view_body": "Все още не сте регистрирани? <2>Създайте акаунт</2>", "Press and hold to talk": "Натиснете и задръжте за да говорите",
"unauthenticated_view_login_button": "Влезте в акаунта си", "Press and hold to talk over {{name}}": "Натиснете и задръжте за да говорите заедно с {{name}}",
"version": "Версия: {{version}}", "Profile": "Профил",
"waiting_for_participants": "Изчакване на други участници…" "Recaptcha dismissed": "Recaptcha отхвърлена",
"Recaptcha not loaded": "Recaptcha не е заредена",
"Register": "Регистрация",
"Registering…": "Регистриране…",
"Release spacebar key to stop": "Отпуснете Space за да спрете",
"Release to stop": "Отпуснете за да спрете",
"Remove": "Премахни",
"Return to home screen": "Връщане на началния екран",
"Save": "Запази",
"Saving…": "Запазване…",
"Select an option": "Изберете опция",
"Send debug logs": "Изпратете debug логове",
"Sending…": "Изпращане…",
"Settings": "Настройки",
"Share screen": "Сподели екрана",
"Show call inspector": "Покажи инспектора на разговора",
"Sign in": "Влез",
"Sign out": "Излез",
"Spatial audio": "Пространствен звук",
"Speaker": "Говорител",
"Speaker {{n}}": "Говорител {{n}}",
"Spotlight": "Прожектор",
"Stop sharing screen": "Спри споделянето на екрана",
"Submit feedback": "Изпрати обратна връзка",
"Submitting feedback…": "Изпращане на обратна връзка…",
"Take me Home": "Отиди в Начало",
"Talk over speaker": "Говорете заедно с говорителя",
"Talking…": "Говорене…",
"Thanks! We'll get right on it.": "Благодарим! Веднага ще се заемем.",
"This call already exists, would you like to join?": "Този разговор вече съществува, искате ли да се присъедините?",
"This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "Този сайт се предпазва от ReCAPTCHA и важат <2>Политиката за поверителност</2> и <6>Условията за ползване на услугата</6> на Google.<9></9>Натискайки \"Регистрация\", се съгласявате с нашите <12>Правила и условия</12>",
"This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "Това прави звука на говорителя да изглежда, че излиза от мястото където са позиционирани на екрана. (Експериментална функция: може да повлияе на стабилността на звука.)",
"Turn off camera": "Изключи камерата",
"Turn on camera": "Включи камерата",
"Unmute microphone": "Включи микрофона",
"User ID": "Потребителски идентификатор",
"User menu": "Потребителско меню",
"Username": "Потребителско име",
"Version: {{version}}": "Версия: {{version}}",
"Video": "Видео",
"Video call": "Видео разговор",
"Video call name": "Име на видео разговора",
"Waiting for network": "Изчакване на мрежата",
"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": "Да, присъедини се",
"You can't talk at the same time": "Не можете да говорите едновременно",
"Your recent calls": "Скорошните ви разговори",
"{{count}} people connected|one": "{{count}} човек се свърза",
"{{count}} people connected|other": "{{count}} човека се звързаха",
"{{displayName}}, your call is now ended": "{{displayName}}, разговорът ви приключи",
"{{names}}, {{name}}": "{{names}}, {{name}}",
"{{name}} is presenting": "{{name}} презентира",
"{{name}} is talking…": "{{name}} говори…",
"{{roomName}} - Walkie-talkie call": "{{roomName}} - уоки-токи разговор"
} }

View File

@@ -1,79 +1,83 @@
{ {
"a11y": { "Copy and share this call link": "Zkopírujte a sdílejte odkaz na hovor",
"user_menu": "Uživatelské menu" "Copied!": "Zkopírováno!",
}, "Connection lost": "Připojení ztraceno",
"action": { "Confirm password": "Potvrdit heslo",
"close": "Zavřít", "Close": "Zavřít",
"copy": "Kopírovat", "Change layout": "Změnit rozložení",
"go": "Pokračovat", "Camera/microphone permissions needed to join the call.": "Oprávnění k přístupu ke kameře/mikrofonu jsou nutná pro připojení k hovoru.",
"no": "Ne", "Camera {{n}}": "Kamera {{n}}",
"register": "Registrace", "Camera": "Kamera",
"remove": "Odstranit", "Call link copied": "Odkaz na hovor zkopírován",
"sign_in": "Přihlásit se", "Avatar": "Avatar",
"sign_out": "Odhlásit se" "Audio": "Audio",
}, "Accept microphone permissions to join the call.": "Povolte přístup k mikrofonu pro připojení k hovoru.",
"call_ended_view": { "Accept camera/microphone permissions to join the call.": "Povolte přístup ke kameře/mikrofonu pro připojení do hovoru.",
"create_account_button": "Vytvořit účet", "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Vytvořit účet</0> Or <2>Jako host</2>",
"create_account_prompt": "<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>", "Your recent calls": "Vaše nedávné hovory",
"not_now_button": "Teď ne, vrátit se na domovskou obrazovku" "You can't talk at the same time": "Teď nemůžete mluvit",
}, "Yes, join call": "Ano, připojit se",
"common": { "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.",
"camera": "Kamera", "Waiting for other participants…": "Čekání na další účastníky…",
"copied": "Zkopírováno!", "Waiting for network": "Čekání na připojení",
"display_name": "Zobrazované jméno", "Video call name": "Jméno videohovoru",
"home": "Domov", "Video call": "Videohovor",
"loading": "Načítání…", "Video": "Video",
"microphone": "Mikrofon", "Version: {{version}}": "Verze: {{version}}",
"password": "Heslo", "Username": "Uživatelské jméno",
"profile": "Profil", "User menu": "Uživatelské menu",
"settings": "Nastavení", "User ID": "ID uživatele",
"username": "Uživatelské jméno" "Unmute microphone": "Zapnout mikrofon",
}, "Turn on camera": "Zapnout kameru",
"full_screen_view_description": "<0>Odeslání ladících záznamů nám pomůže diagnostikovat problém.</0>", "Turn off camera": "Vypnout kameru",
"full_screen_view_h1": "<0>Oops, něco se pokazilo.</0>", "This call already exists, would you like to join?": "Tento hovor již existuje, chcete se připojit?",
"header_label": "Domov Element Call", "Thanks! We'll get right on it.": "Děkujeme! Hned se na to vrhneme.",
"join_existing_call_modal": { "Take me Home": "Domovská obrazovka",
"join_button": "Ano, připojit se", "Submitting feedback…": "Odesílání zpětné vazby…",
"text": "Tento hovor již existuje, chcete se připojit?", "Submit feedback": "Dát feedback",
"title": "Připojit se k existujícimu hovoru?" "Stop sharing screen": "Zastavit sdílení obrazovek",
}, "Speaker {{n}}": "Reproduktor {{n}}",
"layout_spotlight_label": "Soustředěný mód", "Speaker": "Reproduktor",
"lobby": { "Spatial audio": "Prostorový zvuk",
"join_button": "Připojit se k hovoru" "Sign out": "Odhlásit se",
}, "Sign in": "Přihlásit se",
"logging_in": "Přihlašování se…", "Show call inspector": "Zobrazit inspektor hovoru",
"login_auth_links": "<0>Vytvořit účet</0> Or <2>Jako host</2>", "Share screen": "Sdílet obrazovku",
"login_title": "Přihlášení", "Settings": "Nastavení",
"rageshake_request_modal": { "Sending…": "Posílání…",
"body": "Jiný uživatel v tomto hovoru má problémy. Abychom mohli diagnostikovat problém, rádi bychom shromáždili protokoly ladění.", "Sending debug logs…": "Posílání ladícího záznamu…",
"title": "Žádost o protokoly ladění" "Send debug logs": "Poslat ladící záznam",
}, "Select an option": "Vyberte možnost",
"rageshake_send_logs": "Poslat ladící záznam", "Saving…": "Ukládání…",
"rageshake_sending": "Posílání…", "Save": "Uložit",
"rageshake_sending_logs": "Posílání ladícího záznamu…", "Return to home screen": "Vrátit se na domácí obrazovku",
"recaptcha_dismissed": "Recaptcha byla zamítnuta", "Remove": "Odstranit",
"recaptcha_not_loaded": "Recaptcha se nenačetla", "Registering…": "Registrování…",
"register": { "Register": "Registrace",
"passwords_must_match": "Hesla se musí shodovat", "Profile": "Profil",
"registering": "Registrová" "Press and hold to talk": "Stiskněte a držte pro mluvení",
}, "Press and hold spacebar to talk": "Stiskněte a držte mezerník pro mluvení",
"register_auth_links": "<0>Už máte účet?</0><1><0>Přihlásit se</0> Or <2>Jako host</2></1>", "Passwords must match": "Hesla se musí shodovat",
"register_confirm_password_label": "Potvrdit heslo", "Password": "Heslo",
"return_home_button": "Vrátit se na domácí obrazovku", "Not now, return to home screen": "Teď ne, vrátit se na domovskou obrazovku",
"room_auth_view_join_button": "Připojit se k hovoru", "No": "Ne",
"screenshare_button_label": "Sdílet obrazovku", "Mute microphone": "Ztlumit mikrofon",
"select_input_unset_button": "Vyberte možnost", "More": "Více",
"settings": { "Microphone permissions needed to join the call.": "Přístup k mikrofonu je nutný pro připojení se k hovoru.",
"developer_settings_label": "Vývojářské nastavení", "Microphone {{n}}": "Mikrofon {{n}}",
"developer_settings_label_description": "Zobrazit vývojářské nastavení.", "Microphone": "Mikrofon",
"developer_tab_title": "Vývojář", "Login to your account": "Přihlásit se ke svůmu účtu",
"feedback_tab_h4": "Dát feedback", "Login": "Přihlášení",
"feedback_tab_send_logs_label": "Zahrnout ladící záznamy", "Logging in…": "Přihlašování se…",
"more_tab_title": "Více", "Local volume": "Lokální hlasitost",
"speaker_device_selection_label": "Reproduktor" "Loading…": "Načítání…",
}, "Loading room…": "Načítání místnosti…",
"unauthenticated_view_body": "Nejste registrovaní? <2>Vytvořit účet</2>", "Leave": "Opustit hovor",
"unauthenticated_view_login_button": "Přihlásit se ke svému účtu", "Join call now": "Připojit se k hovoru",
"version": "Verze: {{version}}", "Join call": "Připojit se k hovoru",
"waiting_for_participants": "Čekání na další účastníky…" "Invite people": "Pozvat lidi",
"Invite": "Pozvat",
"Inspector": "Insepktor",
"Incompatible versions!": "Nekompatibilní verze!",
"Incompatible versions": "Nekompatibilní verze"
} }

View File

@@ -1,144 +1,134 @@
{ {
"a11y": { "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Du hast bereits ein Konto?</0><1><0>Anmelden</0> Oder <2>Als Gast betreten</2></1>",
"user_menu": "Benutzermenü" "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Konto erstellen</0> Oder <2>Als Gast betreten</2>",
}, "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Hoppla, da ist etwas schief gelaufen.</0><1>Die Übermittlung von Debug-Protokollen wird uns helfen, das Problem zu finden.</1>",
"action": { "<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 calls</1>": "<0>Warum vergibst du nicht abschließend ein Passwort, um dein Konto zu erhalten?</0><1>Du kannst deinen Namen behalten und ein Profilbild für zukünftige Anrufe festlegen.</1>",
"close": "Schließen", "Accept camera/microphone permissions to join the call.": "Erlaube Zugriff auf Kamera/Mikrofon um dem Anruf beizutreten.",
"copy": "Kopieren", "Accept microphone permissions to join the call.": "Erlaube Zugriff auf das Mikrofon um dem Anruf beizutreten.",
"copy_link": "Link kopieren", "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.",
"go": "Los gehts", "Audio": "Audio",
"invite": "Einladen", "Avatar": "Avatar",
"no": "Nein", "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Wenn du auf „Los gehts“ klickst, akzeptierst du unsere <2>Geschäftsbedingungen</2>",
"register": "Registrieren", "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Wenn du auf „Anruf beitreten“ klickst, akzeptierst du unsere <2>Geschäftsbedingungen</2>",
"remove": "Entfernen", "Call link copied": "Anruflink kopiert",
"sign_in": "Anmelden", "Call type menu": "Anruftyp Menü",
"sign_out": "Abmelden", "Camera": "Kamera",
"submit": "Absenden" "Camera {{n}}": "Kamera {{n}}",
}, "Camera/microphone permissions needed to join the call.": "Kamera-/Mikrofonberechtigung für die Teilnahme am Anruf erforderlich.",
"analytics_notice": "Mit der Teilnahme an der Beta akzeptierst du die Sammlung von anonymen Daten, die wir zur Verbesserung des Produkts verwenden. Weitere Informationen zu den von uns erhobenen Daten findest du in unserer <2>Datenschutzerklärung</2> und unseren <5>Cookie-Richtlinien</5>.", "Change layout": "Layout ändern",
"app_selection_modal": { "Close": "Schließen",
"continue_in_browser": "Weiter im Browser", "Confirm password": "Passwort bestätigen",
"open_in_app": "In der App öffnen", "Connection lost": "Verbindung verloren",
"text": "Bereit, beizutreten?", "Copied!": "Kopiert!",
"title": "App auswählen" "Copy and share this call link": "Kopiere und teile diesen Anruflink",
}, "Create account": "Konto erstellen",
"application_opened_another_tab": "Diese Anwendung wurde in einem anderen Tab geöffnet.", "Debug log": "Debug-Protokoll",
"browser_media_e2ee_unsupported": "Dein Webbrowser unterstützt keine Medien-Ende-zu-Ende-Verschlüsselung. Unterstützte Browser sind Chrome, Safari, Firefox >=117", "Debug log request": "Debug-Log Anfrage",
"browser_media_e2ee_unsupported_heading": "Inkompatibler Browser", "Description (optional)": "Beschreibung (optional)",
"call_ended_view": { "Details": "Details",
"body": "Deine Verbindung wurde getrennt", "Developer": "Entwickler",
"create_account_button": "Konto erstellen", "Display name": "Anzeigename",
"create_account_prompt": "<0>Warum vergibst du nicht abschließend ein Passwort, um dein Konto zu erhalten?</0><1>Du kannst deinen Namen behalten und ein Profilbild für zukünftige Anrufe festlegen.</1>", "Download debug logs": "Debug-Protokolle herunterladen",
"feedback_done": "<0>Danke für deine Rückmeldung!</0>", "Entering room…": "Betrete Raum ",
"feedback_prompt": "<0>Wir würden uns freuen, deine Rückmeldung zu hören, um deine Erfahrung verbessern zu können.</0>", "Exit full screen": "Vollbildmodus verlassen",
"headline": "{{displayName}}, dein Anruf wurde beendet.", "Freedom": "Freiraum",
"not_now_button": "Nicht jetzt, zurück zur Startseite", "Full screen": "Vollbild",
"reconnect_button": "Erneut verbinden", "Go": "Los gehts",
"survey_prompt": "Wie ist es gelaufen?" "Grid layout menu": "Grid-Layout-Menü",
}, "Having trouble? Help us fix it.": "Du hast ein Problem? Hilf uns, es zu beheben.",
"call_name": "Name des Anrufs", "Home": "Startseite",
"common": { "Include debug logs": "Debug-Protokolle einschließen",
"audio": "Audio", "Incompatible versions": "Inkompatible Versionen",
"avatar": "Profilbild", "Incompatible versions!": "Inkompatible Versionen!",
"camera": "Kamera", "Inspector": "Inspektor",
"copied": "Kopiert!", "Invite": "Einladen",
"display_name": "Anzeigename", "Invite people": "Personen einladen",
"encrypted": "Verschlüsselt", "Join call": "Anruf beitreten",
"error": "Fehler", "Join call now": "Anruf beitreten",
"home": "Startseite", "Join existing call?": "An bestehendem Anruf teilnehmen?",
"loading": "Lade ", "Leave": "Verlassen",
"microphone": "Mikrofon", "Loading room…": "Lade Raum ",
"password": "Passwort", "Loading…": "Lade ",
"profile": "Profil", "Local volume": "Lokale Lautstärke",
"settings": "Einstellungen", "Logging in…": "Anmelden ",
"unencrypted": "Nicht verschlüsselt", "Login": "Anmelden",
"username": "Benutzername", "Login to your account": "Melde dich mit deinem Konto an",
"video": "Video" "Microphone": "Mikrofon",
}, "Microphone permissions needed to join the call.": "Mikrofon-Berechtigung ist erforderlich, um dem Anruf beizutreten.",
"disconnected_banner": "Die Verbindung zum Server wurde getrennt.", "Microphone {{n}}": "Mikrofon {{n}}",
"full_screen_view_description": "<0>Übermittelte Problemberichte helfen uns, Fehler zu beheben.</0>", "More": "Mehr",
"full_screen_view_h1": "<0>Hoppla, etwas ist schiefgelaufen.</0>", "More menu": "Weiteres Menü",
"group_call_loader_failed_heading": "Anruf nicht gefunden", "Mute microphone": "Mikrofon stummschalten",
"group_call_loader_failed_text": "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.", "No": "Nein",
"hangup_button_label": "Anruf beenden", "Not now, return to home screen": "Nicht jetzt, zurück zum Startbildschirm",
"header_label": "Element Call-Startseite", "Not registered yet? <2>Create an account</2>": "Noch nicht registriert? <2>Konto erstellen</2>",
"header_participants_label": "Teilnehmende", "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>",
"invite_modal": { "Password": "Passwort",
"link_copied_toast": "Link in Zwischenablage kopiert", "Passwords must match": "Passwörter müssen übereinstimmen",
"title": "Zu diesem Anruf einladen" "Press and hold spacebar to talk": "Halte zum Sprechen die Leertaste gedrückt",
}, "Press and hold spacebar to talk over {{name}}": "Zum Verdrängen von {{name}} und Sprechen die Leertaste gedrückt halten",
"join_existing_call_modal": { "Press and hold to talk": "Zum Sprechen gedrückt halten",
"join_button": "Ja, Anruf beitreten", "Press and hold to talk over {{name}}": "Zum Verdrängen von {{name}} und Sprechen gedrückt halten",
"text": "Dieser Aufruf existiert bereits, möchtest Du teilnehmen?", "Profile": "Profil",
"title": "An bestehendem Anruf teilnehmen?" "Recaptcha dismissed": "Recaptcha abgelehnt",
}, "Recaptcha not loaded": "Recaptcha nicht geladen",
"layout_grid_label": "Raster", "Register": "Registrieren",
"layout_spotlight_label": "Rampenlicht", "Registering…": "Registrierung ",
"lobby": { "Release spacebar key to stop": "Leertaste loslassen, um zu stoppen",
"join_button": "Anruf beitreten", "Release to stop": "Loslassen zum Stoppen",
"leave_button": "Zurück zu kürzlichen Anrufen" "Remove": "Entfernen",
}, "Return to home screen": "Zurück zum Startbildschirm",
"log_in": "Anmelden", "Save": "Speichern",
"logging_in": "Anmelden …", "Saving…": "Speichere …",
"login_auth_links": "<0>Konto erstellen</0> Oder <2>Als Gast betreten</2>", "Select an option": "Wähle eine Option",
"login_auth_links_prompt": "Noch nicht registriert?", "Send debug logs": "Debug-Logs senden",
"login_subheading": "Weiter zu Element", "Sending": "Senden ",
"login_title": "Anmelden", "Settings": "Einstellungen",
"microphone_off": "Mikrofon aus", "Share screen": "Bildschirm teilen",
"microphone_on": "Mikrofon an", "Show call inspector": "Anrufinspektor anzeigen",
"mute_microphone_button_label": "Mikrofon deaktivieren", "Sign in": "Anmelden",
"rageshake_button_error_caption": "Protokolle erneut senden", "Sign out": "Abmelden",
"rageshake_request_modal": { "Spatial audio": "Räumliche Audiowiedergabe",
"body": "Ein anderer Benutzer dieses Anrufs hat ein Problem. Um es besser diagnostizieren zu können, würden wir gerne ein Debug-Protokoll erstellen.", "Speaker": "Wiedergabegerät",
"title": "Debug-Log Anfrage" "Speaker {{n}}": "Wiedergabegerät {{n}}",
}, "Spotlight": "Rampenlicht",
"rageshake_send_logs": "Debug-Logs senden", "Stop sharing screen": "Beenden der Bildschirmfreigabe",
"rageshake_sending": "Senden ", "Submit feedback": "Rückmeldung geben",
"rageshake_sending_logs": "Sende Debug-Protokolle …", "Submitting feedback…": "Sende Rückmeldung …",
"rageshake_sent": "Danke!", "Take me Home": "Zurück zur Startseite",
"recaptcha_caption": "Diese Seite wird durch reCAPTCHA geschützt und es gelten Googles <2>Datenschutzerklärung</2> und <6>Nutzungsbedingungen</6>. <9></9>Mit einem Klick auf „Registrieren“ akzeptierst du unseren <2>Endbenutzer-Lizenzvertrag (EULA)</2>", "Talk over speaker": "Aktiven Sprecher verdrängen und sprechen",
"recaptcha_dismissed": "Recaptcha abgelehnt", "Talking…": "Sprechen ",
"recaptcha_not_loaded": "Recaptcha nicht geladen", "Thanks! We'll get right on it.": "Vielen Dank! Wir werden uns sofort darum kümmern.",
"register": { "This call already exists, would you like to join?": "Dieser Aufruf existiert bereits, möchtest Du teilnehmen?",
"passwords_must_match": "Passwörter müssen übereinstimmen", "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "Diese Website wird durch ReCAPTCHA geschützt und es gelten die <2>Datenschutzerklärung</2> und <6>Nutzungsbedingungen</6> von Google.<9></9>Indem Du auf „Registrieren“ klickst, stimmst du unseren <12>Geschäftsbedingungen</12> zu",
"registering": "Registrierung …" "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "Dies wird die Audiowiedergabe eines Sprechers wirken lassen, als käme sie von der Stelle des zugehörigen Videobildes. (Experimentelle Funktion: Dies könnte die Stabilität der Audiowiedergabe beeinträchtigen.)",
}, "Turn off camera": "Kamera ausschalten",
"register_auth_links": "<0>Du hast bereits ein Konto?</0><1><0>Anmelden</0> Oder <2>Als Gast betreten</2></1>", "Turn on camera": "Kamera einschalten",
"register_confirm_password_label": "Passwort bestätigen", "Unmute microphone": "Mikrofon aktivieren",
"return_home_button": "Zurück zur Startseite", "User ID": "Benutzer-ID",
"room_auth_view_eula_caption": "Mit einem Klick auf „Anruf beitreten“ akzeptierst du unseren <2>Endbenutzer-Lizenzvertrag (EULA)</2>", "User menu": "Benutzermenü",
"room_auth_view_join_button": "Anruf beitreten", "Username": "Benutzername",
"screenshare_button_label": "Bildschirm teilen", "Version: {{version}}": "Version: {{version}}",
"select_input_unset_button": "Wähle eine Option", "Video": "Video",
"settings": { "Video call": "Videoanruf",
"developer_settings_label": "Entwicklereinstellungen", "Video call name": "Name des Videoanrufs",
"developer_settings_label_description": "Zeige die Entwicklereinstellungen im Einstellungsfenster.", "Waiting for network": "Warte auf Netzwerk",
"developer_tab_title": "Entwickler", "Waiting for other participants…": "Warte auf weitere Teilnehmer ",
"feedback_tab_body": "Falls du auf Probleme stößt oder einfach nur eine Rückmeldung geben möchtest, sende uns bitte eine kurze Beschreibung.", "Walkie-talkie call": "Walkie-Talkie-Anruf",
"feedback_tab_description_label": "Deine Rückmeldung", "WebRTC is not supported or is being blocked in this browser.": "WebRTC wird in diesem Browser nicht unterstützt oder ist blockiert.",
"feedback_tab_h4": "Rückmeldung geben", "Yes, join call": "Ja, Anruf beitreten",
"feedback_tab_send_logs_label": "Debug-Protokolle einschließen", "You can't talk at the same time": "Du kannst nicht gleichzeitig sprechen",
"feedback_tab_thank_you": "Danke, wir haben deine Rückmeldung erhalten!", "Your recent calls": "Deine letzten Anrufe",
"feedback_tab_title": "Rückmeldung", "{{count}} people connected|one": "{{count}} Person verbunden",
"more_tab_title": "Mehr", "{{count}} people connected|other": "{{count}} Personen verbunden",
"opt_in_description": "<0></0><1></1>Du kannst deine Zustimmung durch Abwählen dieses Kästchens zurückziehen. Falls du dich aktuell in einem Anruf befindest, wird diese Einstellung nach dem Ende des Anrufs wirksam.", "{{displayName}}, your call is now ended": "{{displayName}}, dein Anruf wurde beendet",
"show_connection_stats_label": "Verbindungsstatistiken zeigen", "{{names}}, {{name}}": "{{names}}, {{name}}",
"speaker_device_selection_label": "Wiedergabegerät" "{{name}} is presenting": "{{name}} präsentiert",
}, "{{name}} is talking…": "{{name}} spricht …",
"star_rating_input_label_one": "{{count}} Stern", "{{roomName}} - Walkie-talkie call": "{{roomName}} Walkie-Talkie-Anruf",
"star_rating_input_label_other": "{{count}} Sterne", "Fetching group call timed out.": "Zeitüberschreitung beim Abrufen des Gruppenanrufs.",
"start_new_call": "Neuen Anruf beginnen", "Walkie-talkie call name": "Name des Walkie-Talkie-Anrufs",
"start_video_button_label": "Video aktivieren", "Sending debug logs…": "Sende Debug-Protokolle …",
"stop_screenshare_button_label": "Bildschirm wird geteilt", "<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Anruf beitreten</0><1>Oder</1><2>Anruflink kopieren und später beitreten</2>",
"stop_video_button_label": "Video deaktivieren", "{{name}} (Connecting...)": "{{name}} (verbindet sich …)"
"submitting": "Sende …",
"unauthenticated_view_body": "Noch nicht registriert? <2>Konto erstellen</2>",
"unauthenticated_view_eula_caption": "Mit einem Klick auf „Los gehts“ akzeptierst du unseren <2>Endbenutzer-Lizenzvertrag (EULA)</2>",
"unauthenticated_view_login_button": "Melde dich mit deinem Konto an",
"unmute_microphone_button_label": "Mikrofon aktivieren",
"version": "Version: {{version}}",
"video_tile": {
"sfu_participant_local": "Du"
},
"waiting_for_participants": "Warte auf weitere Teilnehmer …"
} }

View File

@@ -1,95 +0,0 @@
{
"a11y": {
"user_menu": "Μενού χρήστη"
},
"action": {
"close": "Κλείσιμο",
"copy": "Αντιγραφή",
"go": "Μετάβαση",
"no": "Όχι",
"register": "Εγγραφή",
"remove": "Αφαίρεση",
"sign_in": "Σύνδεση",
"sign_out": "Αποσύνδεση",
"submit": "Υποβολή"
},
"analytics_notice": "Συμμετέχοντας σε αυτή τη δοκιμαστική έκδοση, συναινείτε στη συλλογή ανώνυμων δεδομένων, τα οποία χρησιμοποιούμε για τη βελτίωση του προϊόντος. Μπορείτε να βρείτε περισσότερες πληροφορίες σχετικά με το ποια δεδομένα καταγράφουμε στην <2>Πολιτική απορρήτου</2> και στην <5>Πολιτική cookies</5>.",
"call_ended_view": {
"create_account_button": "Δημιουργία λογαριασμού",
"create_account_prompt": "<0>Γιατί να μην ολοκληρώσετε με τη δημιουργία ενός κωδικού πρόσβασης για τη διατήρηση του λογαριασμού σας;</0><1>Θα μπορείτε να διατηρήσετε το όνομά σας και να ορίσετε ένα avatar για χρήση σε μελλοντικές κλήσεις.</1>",
"feedback_done": "<0>Ευχαριστώ για τα σχόλιά σας!</0>",
"feedback_prompt": "<0>Θα θέλαμε να ακούσουμε τα σχόλιά σας ώστε να βελτιώσουμε την εμπειρία σας.</0>",
"headline": "{{displayName}}, η κλήση σας τερματίστηκε.",
"not_now_button": "Όχι τώρα, επιστροφή στην αρχική οθόνη",
"survey_prompt": "Πώς σας φάνηκε;"
},
"common": {
"audio": "Ήχος",
"camera": "Κάμερα",
"copied": "Αντιγράφηκε!",
"display_name": "Εμφανιζόμενο όνομα",
"home": "Αρχική",
"loading": "Φόρτωση…",
"microphone": "Μικρόφωνο",
"password": "Κωδικός",
"profile": "Προφίλ",
"settings": "Ρυθμίσεις",
"username": "Όνομα χρήστη",
"video": "Βίντεο"
},
"full_screen_view_description": "<0>Η υποβολή αρχείων καταγραφής σφαλμάτων θα μας βοηθήσει να εντοπίσουμε το πρόβλημα.</0>",
"full_screen_view_h1": "<0>Ωχ, κάτι πήγε στραβά.</0>",
"header_label": "Element Κεντρική Οθόνη Κλήσεων",
"join_existing_call_modal": {
"join_button": "Ναι, συμμετοχή στην κλήση",
"text": "Αυτή η κλήση υπάρχει ήδη, θα θέλατε να συμμετάσχετε;",
"title": "Συμμετοχή στην υπάρχουσα κλήση;"
},
"lobby": {
"join_button": "Συμμετοχή στην κλήση"
},
"logging_in": "Σύνδεση…",
"login_auth_links": "<0>Δημιουργήστε λογαριασμό</0> Ή <2>Συμμετέχετε ως επισκέπτης</2>",
"login_title": "Σύνδεση",
"rageshake_request_modal": {
"body": "Ένας άλλος χρήστης σε αυτή την κλήση έχει ένα πρόβλημα. Για την καλύτερη διάγνωση αυτών των προβλημάτων θα θέλαμε να συλλέξουμε ένα αρχείο καταγραφής σφαλμάτων.",
"title": "Αίτημα αρχείου καταγραφής"
},
"rageshake_send_logs": "Αποστολή αρχείων καταγραφής",
"rageshake_sending": "Αποστολή…",
"rageshake_sending_logs": "Αποστολή αρχείων καταγραφής…",
"recaptcha_dismissed": "Το recaptcha απορρίφθηκε",
"recaptcha_not_loaded": "Το Recaptcha δεν φορτώθηκε",
"register": {
"passwords_must_match": "Οι κωδικοί πρέπει να ταιριάζουν",
"registering": "Εγγραφή…"
},
"register_auth_links": "<0>Έχετε ήδη λογαριασμό;</0><1><0>Συνδεθείτε</0> Ή <2>Συμμετέχετε ως επισκέπτης</2></1>",
"register_confirm_password_label": "Επιβεβαίωση κωδικού",
"return_home_button": "Επιστροφή στην αρχική οθόνη",
"room_auth_view_join_button": "Συμμετοχή στην κλήση τώρα",
"screenshare_button_label": "Κοινή χρήση οθόνης",
"select_input_unset_button": "Επιλέξτε μια επιλογή",
"settings": {
"developer_settings_label": "Ρυθμίσεις προγραμματιστή",
"developer_settings_label_description": "Εμφάνιση ρυθμίσεων προγραμματιστή στο παράθυρο ρυθμίσεων.",
"developer_tab_title": "Προγραμματιστής",
"feedback_tab_body": "Εάν αντιμετωπίζετε προβλήματα ή απλά θέλετε να μας δώσετε κάποια σχόλια, παρακαλούμε στείλτε μας μια σύντομη περιγραφή παρακάτω.",
"feedback_tab_description_label": "Τα σχόλιά σας",
"feedback_tab_h4": "Υποβάλετε σχόλια",
"feedback_tab_send_logs_label": "Να συμπεριληφθούν αρχεία καταγραφής",
"feedback_tab_thank_you": "Ευχαριστούμε, λάβαμε τα σχόλιά σας!",
"feedback_tab_title": "Ανατροφοδότηση",
"more_tab_title": "Περισσότερα",
"opt_in_description": "<0></0><1></1>Μπορείτε να ανακαλέσετε τη συγκατάθεσή σας αποεπιλέγοντας αυτό το πλαίσιο. Εάν βρίσκεστε σε κλήση, η ρύθμιση αυτή θα τεθεί σε ισχύ στο τέλος της.",
"show_connection_stats_label": "Εμφάνιση στατιστικών σύνδεσης",
"speaker_device_selection_label": "Ηχείο"
},
"star_rating_input_label_one": "{{count}} αστέρι",
"star_rating_input_label_other": "{{count}} αστέρια",
"submitting": "Υποβολή…",
"unauthenticated_view_body": "Δεν έχετε εγγραφεί ακόμα; <2>Δημιουργήστε λογαριασμό</2>",
"unauthenticated_view_login_button": "Συνδεθείτε στον λογαριασμό σας",
"version": "Έκδοση: {{version}}",
"waiting_for_participants": "Αναμονή για άλλους συμμετέχοντες…"
}

View File

@@ -1,169 +1,134 @@
{ {
"a11y": { "{{count}} people connected|one": "{{count}} person connected",
"user_menu": "User menu" "{{count}} people connected|other": "{{count}} people connected",
}, "{{displayName}}, your call is now ended": "{{displayName}}, your call is now ended",
"action": { "{{name}} (Connecting...)": "{{name}} (Connecting...)",
"close": "Close", "{{name}} is presenting": "{{name}} is presenting",
"copy_link": "Copy link", "{{name}} is talking…": "{{name}} is talking…",
"edit": "Edit", "{{names}}, {{name}}": "{{names}}, {{name}}",
"go": "Go", "{{roomName}} - Walkie-talkie call": "{{roomName}} - Walkie-talkie call",
"invite": "Invite", "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>",
"no": "No", "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Create an account</0> Or <2>Access as a guest</2>",
"register": "Register", "<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>",
"remove": "Remove", "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>",
"sign_in": "Sign in", "<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 calls</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 calls</1>",
"sign_out": "Sign out", "Accept camera/microphone permissions to join the call.": "Accept camera/microphone permissions to join the call.",
"submit": "Submit", "Accept microphone permissions to join the call.": "Accept microphone permissions to join the call.",
"upload_file": "Upload file" "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",
"analytics_notice": "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 Policy</2> and our <5>Cookie Policy</5>.", "Avatar": "Avatar",
"app_selection_modal": { "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "By clicking \"Go\", you agree to our <2>Terms and conditions</2>",
"continue_in_browser": "Continue in browser", "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>",
"open_in_app": "Open in the app", "Call link copied": "Call link copied",
"text": "Ready to join?", "Call type menu": "Call type menu",
"title": "Select app" "Camera": "Camera",
}, "Camera {{n}}": "Camera {{n}}",
"application_opened_another_tab": "This application has been opened in another tab.", "Camera/microphone permissions needed to join the call.": "Camera/microphone permissions needed to join the call.",
"browser_media_e2ee_unsupported": "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117", "Change layout": "Change layout",
"browser_media_e2ee_unsupported_heading": "Incompatible Browser", "Close": "Close",
"call_ended_view": { "Confirm password": "Confirm password",
"body": "You were disconnected from the call", "Connection lost": "Connection lost",
"create_account_button": "Create account", "Copied!": "Copied!",
"create_account_prompt": "<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 calls</1>", "Copy and share this call link": "Copy and share this call link",
"feedback_done": "<0>Thanks for your feedback!</0>", "Create account": "Create account",
"feedback_prompt": "<0>We'd love to hear your feedback so we can improve your experience.</0>", "Debug log": "Debug log",
"headline": "{{displayName}}, your call has ended.", "Debug log request": "Debug log request",
"not_now_button": "Not now, return to home screen", "Description (optional)": "Description (optional)",
"reconnect_button": "Reconnect", "Details": "Details",
"survey_prompt": "How did it go?" "Developer": "Developer",
}, "Display name": "Display name",
"call_name": "Name of call", "Download debug logs": "Download debug logs",
"common": { "Entering room…": "Entering room…",
"analytics": "Analytics", "Exit full screen": "Exit full screen",
"audio": "Audio", "Fetching group call timed out.": "Fetching group call timed out.",
"avatar": "Avatar", "Freedom": "Freedom",
"back": "Back", "Full screen": "Full screen",
"camera": "Camera", "Go": "Go",
"display_name": "Display name", "Grid layout menu": "Grid layout menu",
"encrypted": "Encrypted", "Having trouble? Help us fix it.": "Having trouble? Help us fix it.",
"error": "Error", "Home": "Home",
"home": "Home", "Include debug logs": "Include debug logs",
"loading": "Loading…", "Incompatible versions": "Incompatible versions",
"microphone": "Microphone", "Incompatible versions!": "Incompatible versions!",
"next": "Next", "Inspector": "Inspector",
"options": "Options", "Invite": "Invite",
"password": "Password", "Invite people": "Invite people",
"profile": "Profile", "Join call": "Join call",
"settings": "Settings", "Join call now": "Join call now",
"unencrypted": "Not encrypted", "Join existing call?": "Join existing call?",
"username": "Username", "Leave": "Leave",
"video": "Video" "Loading room…": "Loading room…",
}, "Loading…": "Loading…",
"crypto_version": "Crypto version: {{version}}", "Local volume": "Local volume",
"device_id": "Device ID: {{id}}", "Logging in…": "Logging in…",
"disconnected_banner": "Connectivity to the server has been lost.", "Login": "Login",
"full_screen_view_description": "<0>Submitting debug logs will help us track down the problem.</0>", "Login to your account": "Login to your account",
"full_screen_view_h1": "<0>Oops, something's gone wrong.</0>", "Microphone": "Microphone",
"group_call_loader": { "Microphone {{n}}": "Microphone {{n}}",
"banned_body": "You have been banned from the room.", "Microphone permissions needed to join the call.": "Microphone permissions needed to join the call.",
"banned_heading": "Banned", "More": "More",
"call_ended_body": "You have been removed from the call.", "More menu": "More menu",
"call_ended_heading": "Call ended", "Mute microphone": "Mute microphone",
"failed_heading": "Failed to join", "No": "No",
"failed_text": "Call not found or is not accessible.", "Not now, return to home screen": "Not now, return to home screen",
"knock_reject_body": "The room members declined your request to join.", "Not registered yet? <2>Create an account</2>": "Not registered yet? <2>Create an account</2>",
"knock_reject_heading": "Not allowed to join", "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>": "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>",
"reason": "Reason" "Password": "Password",
}, "Passwords must match": "Passwords must match",
"hangup_button_label": "End call", "Press and hold spacebar to talk": "Press and hold spacebar to talk",
"header_label": "Element Call Home", "Press and hold spacebar to talk over {{name}}": "Press and hold spacebar to talk over {{name}}",
"header_participants_label": "Participants", "Press and hold to talk": "Press and hold to talk",
"invite_modal": { "Press and hold to talk over {{name}}": "Press and hold to talk over {{name}}",
"link_copied_toast": "Link copied to clipboard", "Profile": "Profile",
"title": "Invite to this call" "Recaptcha dismissed": "Recaptcha dismissed",
}, "Recaptcha not loaded": "Recaptcha not loaded",
"join_existing_call_modal": { "Register": "Register",
"join_button": "Yes, join call", "Registering…": "Registering…",
"text": "This call already exists, would you like to join?", "Release spacebar key to stop": "Release spacebar key to stop",
"title": "Join existing call?" "Release to stop": "Release to stop",
}, "Remove": "Remove",
"layout_grid_label": "Grid", "Return to home screen": "Return to home screen",
"layout_spotlight_label": "Spotlight", "Save": "Save",
"lobby": { "Saving…": "Saving…",
"ask_to_join": "Ask to join call", "Select an option": "Select an option",
"join_button": "Join call", "Send debug logs": "Send debug logs",
"leave_button": "Back to recents", "Sending debug logs…": "Sending debug logs…",
"waiting_for_invite": "Request sent" "Sending…": "Sending…",
}, "Settings": "Settings",
"log_in": "Log In", "Share screen": "Share screen",
"logging_in": "Logging in…", "Show call inspector": "Show call inspector",
"login_auth_links": "<0>Create an account</0> Or <2>Access as a guest</2>", "Sign in": "Sign in",
"login_auth_links_prompt": "Not registered yet?", "Sign out": "Sign out",
"login_subheading": "To continue to Element", "Spatial audio": "Spatial audio",
"login_title": "Login", "Speaker": "Speaker",
"matrix_id": "Matrix ID: {{id}}", "Speaker {{n}}": "Speaker {{n}}",
"microphone_off": "Microphone off", "Spotlight": "Spotlight",
"microphone_on": "Microphone on", "Stop sharing screen": "Stop sharing screen",
"mute_microphone_button_label": "Mute microphone", "Submit feedback": "Submit feedback",
"participant_count_one": "{{count, number}}", "Submitting feedback…": "Submitting feedback…",
"participant_count_other": "{{count, number}}", "Take me Home": "Take me Home",
"qr_code": "QR Code", "Talk over speaker": "Talk over speaker",
"rageshake_button_error_caption": "Retry sending logs", "Talking…": "Talking…",
"rageshake_request_modal": { "Thanks! We'll get right on it.": "Thanks! We'll get right on it.",
"body": "Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.", "This call already exists, would you like to join?": "This call already exists, would you like to join?",
"title": "Debug log request" "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>",
}, "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)",
"rageshake_send_logs": "Send debug logs", "Turn off camera": "Turn off camera",
"rageshake_sending": "Sending…", "Turn on camera": "Turn on camera",
"rageshake_sending_logs": "Sending debug logs…", "Unmute microphone": "Unmute microphone",
"rageshake_sent": "Thanks!", "User ID": "User ID",
"recaptcha_caption": "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>End User Licensing Agreement (EULA)</12>", "User menu": "User menu",
"recaptcha_dismissed": "Recaptcha dismissed", "Username": "Username",
"recaptcha_not_loaded": "Recaptcha not loaded", "Version: {{version}}": "Version: {{version}}",
"register": { "Video": "Video",
"passwords_must_match": "Passwords must match", "Video call": "Video call",
"registering": "Registering…" "Video call name": "Video call name",
}, "Waiting for network": "Waiting for network",
"register_auth_links": "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>", "Waiting for other participants…": "Waiting for other participants…",
"register_confirm_password_label": "Confirm password", "Walkie-talkie call": "Walkie-talkie call",
"register_heading": "Create your account", "Walkie-talkie call name": "Walkie-talkie call name",
"return_home_button": "Return to home screen", "WebRTC is not supported or is being blocked in this browser.": "WebRTC is not supported or is being blocked in this browser.",
"room_auth_view_eula_caption": "By clicking \"Join call now\", you agree to our <2>End User Licensing Agreement (EULA)</2>", "Yes, join call": "Yes, join call",
"room_auth_view_join_button": "Join call now", "You can't talk at the same time": "You can't talk at the same time",
"screenshare_button_label": "Share screen", "Your recent calls": "Your recent calls"
"settings": {
"developer_settings_label": "Developer Settings",
"developer_settings_label_description": "Expose developer settings in the settings window.",
"developer_tab_title": "Developer",
"duplicate_tiles_label": "Number of additional tile copies per participant",
"feedback_tab_body": "If you are experiencing issues or simply would like to provide some feedback, please send us a short description below.",
"feedback_tab_description_label": "Your feedback",
"feedback_tab_h4": "Submit feedback",
"feedback_tab_send_logs_label": "Include debug logs",
"feedback_tab_thank_you": "Thanks, we received your feedback!",
"feedback_tab_title": "Feedback",
"more_tab_title": "More",
"opt_in_description": "<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.",
"speaker_device_selection_label": "Speaker"
},
"star_rating_input_label_one": "{{count}} stars",
"star_rating_input_label_other": "{{count}} stars",
"start_new_call": "Start new call",
"start_video_button_label": "Start video",
"stop_screenshare_button_label": "Sharing screen",
"stop_video_button_label": "Stop video",
"submitting": "Submitting…",
"unauthenticated_view_body": "Not registered yet? <2>Create an account</2>",
"unauthenticated_view_eula_caption": "By clicking \"Go\", you agree to our <2>End User Licensing Agreement (EULA)</2>",
"unauthenticated_view_login_button": "Login to your account",
"unmute_microphone_button_label": "Unmute microphone",
"version": "{{productName}} version: {{version}}",
"video_tile": {
"always_show": "Always show",
"change_fit_contain": "Fit to frame",
"exit_full_screen": "Exit full screen",
"full_screen": "Full screen",
"mute_for_me": "Mute for me",
"volume": "Volume"
}
} }

View File

@@ -1,96 +1,134 @@
{ {
"a11y": { "<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 calls</1>": "<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 llamadas</1>",
"user_menu": "Menú de usuario" "Press and hold to talk over {{name}}": "Mantén pulsado para hablar por encima de {{name}}",
}, "Your recent calls": "Tus llamadas recientes",
"action": { "WebRTC is not supported or is being blocked in this browser.": "Tu navegador no soporta o está bloqueando WebRTC.",
"close": "Cerrar", "This call already exists, would you like to join?": "Esta llamada ya existe, ¿te gustaría unirte?",
"copy": "Copiar", "Register": "Registrarse",
"go": "Comenzar", "Not registered yet? <2>Create an account</2>": "¿No estás registrado todavía? <2>Crear una cuenta</2>",
"register": "Registrarse", "Login to your account": "Iniciar sesión en tu cuenta",
"remove": "Eliminar", "Camera/microphone permissions needed to join the call.": "Se necesitan los permisos de cámara/micrófono para unirse a la llamada.",
"sign_in": "Iniciar sesión", "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Al hacer clic en \"Unirse a la llamada ahora\", aceptarás nuestros <2>Términos y condiciones</2>",
"sign_out": "Cerrar sesión", "Accept microphone permissions to join the call.": "Acepta el permiso del micrófono para unirte a la llamada.",
"submit": "Enviar" "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Al hacer clic en \"Comenzar\" aceptarás nuestros <2>Términos y condiciones</2>",
}, "You can't talk at the same time": "No podéis hablar a la vez",
"analytics_notice": "Al participar en esta beta, consientes a la recogida de datos anónimos, los cuales usaremos para mejorar el producto. Puedes encontrar más información sobre que datos recogemos en nuestra <2>Política de privacidad</2> y en nuestra <5>Política sobre Cookies</5>.", "Yes, join call": "Si, unirse a la llamada",
"call_ended_view": { "Walkie-talkie call name": "Nombre de la llamada Walkie-talkie",
"create_account_button": "Crear cuenta", "Walkie-talkie call": "Llamada Walkie-talkie",
"create_account_prompt": "<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 llamadas</1>", "Waiting for other participants…": "Esperando a los otros participantes…",
"feedback_done": "<0>¡Gracias por tus comentarios!</0>", "Waiting for network": "Esperando a la red",
"feedback_prompt": "<0>Nos encantaría conocer tu opinión para que podamos mejorar tu experiencia</0>", "Video call name": "Nombre de la videollamada",
"headline": "{{displayName}}, tu llamada ha finalizado.", "Video call": "Videollamada",
"not_now_button": "Ahora no, volver a la pantalla de inicio", "Video": "Video",
"survey_prompt": "¿Cómo ha ido?" "Version: {{version}}": "Versión: {{version}}",
}, "Username": "Nombre de usuario",
"common": { "User menu": "Menú de usuario",
"camera": "Cámara", "User ID": "ID de usuario",
"copied": "¡Copiado!", "Unmute microphone": "Desilenciar el micrófono",
"display_name": "Nombre a mostrar", "Turn on camera": "Encender la cámara",
"home": "Inicio", "Turn off camera": "Apagar la cámara",
"loading": "Cargando…", "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "Esto hará que el audio de la persona que hable parezca que viene de dondé esté posicionado en la pantalla. (Función experimental: esto puede afectar a la estabilidad del audio.)",
"microphone": "Micrófono", "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "Este sitio está protegido por ReCAPTCHA y se aplica <2>la Política de Privacidad</2> y <6>los Términos de Servicio</6> de Google.<9></9>Al hacer clic en \"Registrar\" aceptarás nuestros <12>Términos y condiciones</12>",
"password": "Contraseña", "Thanks! We'll get right on it.": "¡Gracias! Nos encargaremos de ello.",
"profile": "Perfil", "Talking…": "Hablando…",
"settings": "Ajustes", "Talk over speaker": "Hablar por encima",
"username": "Nombre de usuario" "Take me Home": "Volver al inicio",
}, "Submitting feedback…": "Enviando comentarios…",
"full_screen_view_description": "<0>Subir los registros de depuración nos ayudará a encontrar el problema.</0>", "Submit feedback": "Enviar comentarios",
"full_screen_view_h1": "<0>Ups, algo ha salido mal.</0>", "Stop sharing screen": "Dejar de compartir pantalla",
"header_label": "Inicio de Element Call", "Spotlight": "Foco",
"join_existing_call_modal": { "Speaker {{n}}": "Altavoz {{n}}",
"join_button": "Si, unirse a la llamada", "Speaker": "Altavoz",
"text": "Esta llamada ya existe, ¿te gustaría unirte?", "Spatial audio": "Audio espacial",
"title": "¿Unirse a llamada existente?" "Sign out": "Cerrar sesión",
}, "Sign in": "Iniciar sesión",
"layout_spotlight_label": "Foco", "Show call inspector": "Mostrar inspector de llamada",
"lobby": { "Share screen": "Compartir pantalla",
"join_button": "Unirse a la llamada" "Settings": "Ajustes",
}, "Sending…": "Enviando…",
"logging_in": "Iniciando sesión…", "Sending debug logs…": "Enviando registros de depuración…",
"login_auth_links": "<0>Crear una cuenta</0> o <2>Acceder como invitado</2>", "Send debug logs": "Enviar registros de depuración",
"login_title": "Iniciar sesión", "Select an option": "Selecciona una opción",
"rageshake_request_modal": { "Saving…": "Guardando…",
"body": "Otro usuario en esta llamada está teniendo problemas. Para diagnosticar estos problemas nos gustaría recopilar un registro de depuración.", "Save": "Guardar",
"title": "Petición de registros de depuración" "Return to home screen": "Volver a la pantalla de inicio",
}, "Remove": "Eliminar",
"rageshake_send_logs": "Enviar registros de depuración", "Release to stop": "Suelta para parar",
"rageshake_sending": "Enviando", "Release spacebar key to stop": "Suelta la barra espaciadora para parar",
"rageshake_sending_logs": "Enviando registros de depuración…", "Registering…": "Registrando…",
"recaptcha_caption": "Este sitio está protegido por ReCAPTCHA y se aplican la <2>Política de Privacidad</2> y los <6>Términos de Servicio de Google.<9></9>Al hacer clic en \"Registrar\", aceptas nuestro <12>Contrato de Licencia de Usuario Final (CLUF)</12>", "Recaptcha not loaded": "No se ha cargado el Recaptcha",
"recaptcha_dismissed": "Recaptcha cancelado", "Recaptcha dismissed": "Recaptcha cancelado",
"recaptcha_not_loaded": "No se ha cargado el Recaptcha", "Profile": "Perfil",
"register": { "Press and hold to talk": "Mantén pulsado para hablar",
"passwords_must_match": "Las contraseñas deben coincidir", "Press and hold spacebar to talk over {{name}}": "Mantén pulsada la barra espaciadora para hablar por encima de {{name}}",
"registering": "Registrando…" "Press and hold spacebar to talk": "Mantén pulsada la barra espaciadora para hablar",
}, "Passwords must match": "Las contraseñas deben coincidir",
"register_auth_links": "<0>¿Ya tienes una cuenta?</0><1><0>Iniciar sesión</0> o <2>Acceder como invitado</2></1>", "Password": "Contraseña",
"register_confirm_password_label": "Confirmar 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>",
"return_home_button": "Volver a la pantalla de inicio", "Not now, return to home screen": "Ahora no, volver a la pantalla de inicio",
"room_auth_view_eula_caption": "Al hacer clic en \"Unirse a la llamada ahora\", aceptas nuestro <2>Contrato de Licencia de Usuario Final (CLUF)</2>", "No": "No",
"room_auth_view_join_button": "Unirse a la llamada ahora", "Mute microphone": "Silenciar micrófono",
"screenshare_button_label": "Compartir pantalla", "More menu": "Menú Más",
"select_input_unset_button": "Selecciona una opción", "More": "Más",
"settings": { "Microphone permissions needed to join the call.": "Se necesitan permisos del micrófono para unirse a la llamada.",
"developer_settings_label": "Ajustes de desarrollador", "Microphone {{n}}": "Micrófono {{n}}",
"developer_settings_label_description": "Muestra los ajustes de desarrollador en la ventana de ajustes.", "Microphone": "Micrófono",
"developer_tab_title": "Desarrollador", "Login": "Iniciar sesión",
"feedback_tab_body": "Si tienes algún problema o simplemente quieres darnos tu opinión, por favor envíanos una breve descripción.", "Logging in…": "Iniciando sesión",
"feedback_tab_description_label": "Tus comentarios", "Local volume": "Volumen local",
"feedback_tab_h4": "Enviar comentarios", "Loading…": "Cargando…",
"feedback_tab_send_logs_label": "Incluir registros de depuración", "Loading room…": "Cargando sala…",
"feedback_tab_thank_you": "¡Gracias, hemos recibido tus comentarios!", "Leave": "Abandonar",
"feedback_tab_title": "Danos tu opinión", "Join existing call?": "¿Unirse a llamada existente?",
"more_tab_title": "Más", "Join call now": "Unirse a la llamada ahora",
"opt_in_description": "<0></0><1></1>Puedes retirar tu consentimiento desmarcando esta casilla. Si estás en una llamada, este ajuste se aplicará al final de esta.", "Join call": "Unirse a la llamada",
"show_connection_stats_label": "Mostrar estadísticas de conexión", "Invite people": "Invitar a gente",
"speaker_device_selection_label": "Altavoz" "Invite": "Invitar",
}, "Inspector": "Inspector",
"star_rating_input_label_one": "{{count}} estrella", "Incompatible versions!": "¡Versiones incompatibles!",
"star_rating_input_label_other": "{{count}} estrellas", "Incompatible versions": "Versiones incompatibles",
"submitting": "Enviando…", "Include debug logs": "Incluir registros de depuración",
"unauthenticated_view_body": "¿No estás registrado todavía? <2>Crear una cuenta</2>", "Home": "Inicio",
"unauthenticated_view_eula_caption": "Al hacer clic en \"Comenzar\", aceptas nuestro <2>Contrato de Licencia de Usuario Final (CLUF)</2>", "Having trouble? Help us fix it.": "¿Tienes problemas? Ayúdanos a resolverlos.",
"unauthenticated_view_login_button": "Iniciar sesión en tu cuenta", "Grid layout menu": "Menú de distribución de cuadrícula",
"version": "Versión: {{version}}", "Go": "Empezar",
"waiting_for_participants": "Esperando a los otros participantes…" "Full screen": "Pantalla completa",
"Freedom": "Libre",
"Fetching group call timed out.": "Se ha agotado el tiempo de espera para obtener la llamada grupal.",
"Exit full screen": "Salir de pantalla completa",
"Entering room…": "Entrando a la sala…",
"Download debug logs": "Descargar registros de depuración",
"Display name": "Nombre a mostrar",
"Developer": "Desarrollador",
"Details": "Detalles",
"Description (optional)": "Descripción (opcional)",
"Debug log request": "Petición de registros de depuración",
"Debug log": "Registro de depuración",
"Create account": "Crear cuenta",
"Copy and share this call link": "Copiar y compartir el enlace de la llamada",
"Copied!": "¡Copiado!",
"Connection lost": "Conexión perdida",
"Confirm password": "Confirmar contraseña",
"Close": "Cerrar",
"Change layout": "Cambiar distribución",
"Camera {{n}}": "Cámara {{n}}",
"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.",
"{{names}}, {{name}}": "{{names}}, {{name}}",
"Audio": "Audio",
"Avatar": "Avatar",
"Accept camera/microphone permissions to join the call.": "Acepta los permisos de cámara/micrófono para unirte a la llamada.",
"<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Ups, algo ha salido mal.</0><1>Enviar los registros de depuración nos ayudará a localizar el problema.</1>",
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Crear una cuenta</0> o <2>Acceder como invitado</2>",
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Unirse ahora</0><1>Or</1><2>Copiar el enlace y unirse más tarde</2>",
"<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>¿Ya tienes una cuenta?</0><1><0>Iniciar sesión</0> o <2>Acceder como invitado</2></1>",
"{{roomName}} - Walkie-talkie call": "{{roomName}} - Llamada de Walkie-talkie",
"{{name}} is talking…": "{{name}} está hablando…",
"{{name}} is presenting": "{{name}} está presentando",
"{{name}} (Connecting...)": "{{name}} (Conectando...)",
"{{displayName}}, your call is now ended": "{{displayName}}, tu llamada ha finalizado",
"{{count}} people connected|other": "{{count}} personas conectadas",
"{{count}} people connected|one": "{{count}} persona conectada"
} }

View File

@@ -1,136 +1,134 @@
{ {
"a11y": { "Accept camera/microphone permissions to join the call.": "Kõnega anna õigused kaamera/mikrofoni kasutamiseks.",
"user_menu": "Kasutajamenüü" "Accept microphone permissions to join the call.": "Kõnega liitumiseks anna õigused mikrofoni kasutamiseks.",
}, "<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 calls</1>": "<0>Kas hoopis tahad salasõna seadistada ja sellega oma kasutajakonto alles jätta?</0><1>Siis saad säilitada oma nime ja määrata tunnuspildi, mida saad kasutada tulevastes kõnedes</1>",
"action": { "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Ups, midagi läks valesti.</0><1>Logide saatmine meile aitab meil probleemi lahendada.</1>",
"close": "Sulge", "<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Liitu kõnega kohe</0><1> Või</1><2>Kopeeri kõne link ja liitu hiljem</2>",
"copy": "Kopeeri", "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Loo konto</0> Või <2>Sisene külalisena</2>",
"copy_link": "Kopeeri link", "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>On sul juba konto?</0><1><0>Logi sisse</0> Või <2>Logi sisse külalisena</2></1>",
"go": "Jätka", "{{roomName}} - Walkie-talkie call": "{{roomName}} - walkie-talkie-kõne",
"invite": "Kutsu", "{{names}}, {{name}}": "{{names}}, {{name}}",
"no": "Ei", "{{name}} is talking…": "{{nimi}} räägib…",
"register": "Registreeru", "{{name}} is presenting": "{{nimi}} esitab",
"remove": "Eemalda", "{{name}} (Connecting...)": "{{nimi}} (ühendamisel...)",
"sign_in": "Logi sisse", "{{displayName}}, your call is now ended": "{{displayName}}, sinu kõne on nüüd lõppenud",
"sign_out": "Logi välja", "{{count}} people connected|other": "{{count}} osalejat liitunud",
"submit": "Saada" "{{count}} people connected|one": "{{count}} osaleja liitunud",
}, "Invite people": "Kutsu inimesi",
"analytics_notice": "Nõustudes selle beetaversiooni kasutamisega sa nõustud ka toote arendamiseks kasutatavate anonüümsete andmete kogumisega. Täpsemat teavet kogutavate andmete kohta leiad meie <2>Privaatsuspoliitikast</2> ja meie <5>Küpsiste kasutamise reeglitest</5>.", "Invite": "Kutsu",
"app_selection_modal": { "Inspector": "Inspektor",
"continue_in_browser": "Jätka veebibrauseris", "Incompatible versions!": "Ühildumatud versioonid!",
"open_in_app": "Ava rakenduses", "Incompatible versions": "Ühildumatud versioonid",
"text": "Oled valmis liituma?", "Include debug logs": "Lisa veatuvastuslogid",
"title": "Vali rakendus" "Home": "Avavaatesse",
}, "Having trouble? Help us fix it.": "Kas on probleeme? Aita meil asja parandada.",
"browser_media_e2ee_unsupported": "Sinu veebibrauser ei toeta meedia läbivat krüptimist. Toetatud brauserid on Chrome, Chromium, Safari ja Firefox >=117", "Grid layout menu": "Ruudustikvaate menüü",
"call_ended_view": { "Go": "Jätka",
"body": "Sinu ühendus kõnega katkes", "Full screen": "Täisekraan",
"create_account_button": "Loo konto", "Freedom": "Vaba",
"create_account_prompt": "<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õnedes</1>", "Fetching group call timed out.": "Grupikõne kättesaamine aegus.",
"feedback_done": "<0>Täname Sind tagasiside eest!</0>", "Exit full screen": "Välju täisekraanivaatest",
"feedback_prompt": "<0>Meie rakenduse paremaks muutmiseks me hea meelega ootame Sinu arvamusi.</0>", "Entering room…": "Ruumi sisenemine…",
"headline": "{{displayName}}, sinu kõne on lõppenud.", "Download debug logs": "Lae alla veatuvastuslogid",
"not_now_button": "Mitte praegu, mine tagasi avalehele", "Display name": "Kuvatav nimi",
"reconnect_button": "Ühenda uuesti", "Developer": "Arendaja",
"survey_prompt": "Kuidas sujus?" "Details": "Täpsemalt",
}, "Description (optional)": "Kirjeldus (valikuline)",
"call_name": "Kõne nimi", "Debug log request": "Veaotsingulogi päring",
"common": { "Debug log": "Veaotsingulogi",
"audio": "Heli", "Create account": "Loo konto",
"avatar": "Tunnuspilt", "Copy and share this call link": "Kopeeri ja jaga selle kõne linki",
"camera": "Kaamera", "Copied!": "Kopeeritud!",
"copied": "Kopeeritud!", "Connection lost": "Ühendus on katkenud",
"display_name": "Kuvatav nimi", "Confirm password": "Kinnita salasõna",
"encrypted": "Krüptitud", "Close": "Sulge",
"home": "Avavaatesse", "Change layout": "Muuda paigutust",
"loading": "Laadimine …", "Camera/microphone permissions needed to join the call.": "Kõnega liitumiseks vajalikud kaamera/mikrofoni kasutamise load.",
"microphone": "Mikrofon", "Camera {{n}}": "Kaamera {{n}}",
"password": "Salasõna", "Camera": "Kaamera",
"profile": "Profiil", "Call type menu": "Kõnetüübi valik",
"settings": "Seadistused", "Call link copied": "Kõne link on kopeeritud",
"unencrypted": "Krüptimata", "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Klõpsides „Liitu kõnega“nõustud sa meie <2>kasutustingimustega</2>",
"username": "Kasutajanimi" "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Klõpsides „Jätka“nõustud sa meie <2>kasutustingimustega</2>",
}, "Avatar": "Tunnuspilt",
"disconnected_banner": "Võrguühendus serveriga on katkenud.", "Audio": "Heli",
"full_screen_view_description": "<0>Kui saadad meile vealogid, siis on lihtsam vea põhjust otsida.</0>", "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.",
"full_screen_view_h1": "<0>Ohoo, midagi on nüüd katki.</0>", "Press and hold spacebar to talk": "Rääkimiseks vajuta ja hoia all tühikuklahvi",
"group_call_loader_failed_heading": "Kõnet ei leidu", "Passwords must match": "Salasõnad ei klapi",
"group_call_loader_failed_text": "Kõned on nüüd läbivalt krüptitud ning need pead looma kodulehelt. Sellega tagad, et kõik kasutavad samu krüptovõtmeid.", "Password": "Salasõna",
"hangup_button_label": "Lõpeta kõne", "Not registered yet? <2>Create an account</2>": "Pole veel registreerunud? <2>Loo kasutajakonto</2>",
"header_participants_label": "Osalejad", "Not now, return to home screen": "Mitte praegu, mine tagasi avalehele",
"invite_modal": { "No": "Ei",
"link_copied_toast": "Link on kopeeritud lõikelauale", "Mute microphone": "Summuta mikrofon",
"title": "Kutsu liituma selle kõnaga" "Your recent calls": "Hiljutised kõned",
}, "You can't talk at the same time": "Üheaegselt ei saa rääkida",
"join_existing_call_modal": { "More menu": "Rohkem valikuid",
"join_button": "Jah, liitu kõnega", "More": "Rohkem",
"text": "See kõne on juba olemas, kas soovid liituda?", "Microphone permissions needed to join the call.": "Kõnega liitumiseks on vaja lubada mikrofoni kasutamine.",
"title": "Liitu juba käimasoleva kõnega?" "Microphone {{n}}": "Mikrofon {{n}}",
}, "Microphone": "Mikrofon",
"layout_grid_label": "Ruudustik", "Login to your account": "Logi oma kontosse sisse",
"layout_spotlight_label": "Rambivalgus", "Login": "Sisselogimine",
"lobby": { "Logging in…": "Sisselogimine …",
"join_button": "Kõnega liitumine", "Local volume": "Kohalik helitugevus",
"leave_button": "Tagasi hiljutiste kõnede juurde" "Loading…": "Laadimine …",
}, "Loading room…": "Ruumi laadimine …",
"logging_in": "Sisselogimine …", "Leave": "Lahku",
"login_auth_links": "<0>Loo konto</0> Või <2>Sisene külalisena</2>", "Join existing call?": "Liitu juba käimasoleva kõnega?",
"login_title": "Sisselogimine", "Join call now": "Kõnega liitumine",
"microphone_off": "Mikrofon ei tööta", "Join call": "Kõnega liitumine",
"microphone_on": "Mikrofon töötab", "User ID": "Kasutajatunnus",
"mute_microphone_button_label": "Summuta mikrofon", "Turn on camera": "Lülita kaamera sisse",
"rageshake_button_error_caption": "Proovi uuesti logisid saata", "Turn off camera": "Lülita kaamera välja",
"rageshake_request_modal": { "Submitting feedback…": "Tagasiside saatmine…",
"body": "Ühel teisel selles kõnes osalejal on lahenduse kasutamisel tekkinud probleem ning selle põhjuse leidmiseks me sooviksime koguda silumislogisid.", "Take me Home": "Mine avalehele",
"title": "Veaotsingulogi päring" "Submit feedback": "Jaga tagasisidet",
}, "Stop sharing screen": "Lõpeta ekraani jagamine",
"rageshake_send_logs": "Saada veaotsingulogid", "Spotlight": "Rambivalgus",
"rageshake_sending": "Saatmine…", "Speaker {{n}}": "Kõlar {{n}}",
"rageshake_sending_logs": "Veaotsingulogide saatmine…", "Speaker": "Kõlar",
"rageshake_sent": "Tänud!", "Spatial audio": "Ruumiline heli",
"recaptcha_caption": "Selles saidis on kasutusel ReCAPTCHA ja kehtivad Google'i <2>Privaatsuspoliitika</2> ning <6>Teenusetingimused</6>.<9></9>Klõpsides „Registreeru“, sa nõustud meie <12>Lõppkasutaja litsentsilepingu (EULA) tingimustega</12>", "Sign out": "Logi välja",
"recaptcha_dismissed": "Robotilõks on vahele jäetud", "Sign in": "Logi sisse",
"recaptcha_not_loaded": "Robotilõks pole laetud", "Show call inspector": "Näita kõneteavet",
"register": { "Share screen": "Jaga ekraani",
"passwords_must_match": "Salasõnad ei klapi", "Settings": "Seadistused",
"registering": "Registreerimine…" "Sending": "Saatmine…",
}, "Sending debug logs…": "Veaotsingulogide saatmine…",
"register_auth_links": "<0>On sul juba konto?</0><1><0>Logi sisse</0> Või <2>Logi sisse külalisena</2></1>", "Send debug logs": "Saada veaotsingulogid",
"register_confirm_password_label": "Kinnita salasõna", "Select an option": "Vali oma eelistus",
"return_home_button": "Tagasi avalehele", "Saving…": "Salvestamine…",
"room_auth_view_eula_caption": "Klõpsides „Liitu kõnega kohe“, nõustud sa meie <2>Lõppkasutaja litsentsilepinguga (EULA)</2>", "Save": "Salvesta",
"room_auth_view_join_button": "Liitu kõnega kohe", "Return to home screen": "Tagasi avalehele",
"screenshare_button_label": "Jaga ekraani", "Remove": "Eemalda",
"select_input_unset_button": "Vali oma eelistus", "Release to stop": "Peatamiseks vabasta klahv",
"settings": { "Release spacebar key to stop": "Peatamiseks vabasta tühikuklahv",
"developer_settings_label": "Arendaja seadistused", "Registering…": "Registreerimine…",
"developer_settings_label_description": "Näita seadistuste aknas arendajale vajalikke seadeid.", "Register": "Registreeru",
"developer_tab_title": "Arendaja", "Recaptcha not loaded": "Robotilõks pole laetud",
"feedback_tab_body": "Kui selle rakenduse kasutamisel tekib sul probleeme või lihtsalt soovid oma arvamust avaldada, siis palun täida alljärgnev lühike kirjeldus.", "Recaptcha dismissed": "Robotilõks on vahele jäetud",
"feedback_tab_description_label": "Sinu tagasiside", "Profile": "Profiil",
"feedback_tab_h4": "Jaga tagasisidet", "Press and hold to talk over {{name}}": "{{name}} ülerääkimiseks vajuta ja hoia all",
"feedback_tab_send_logs_label": "Lisa veatuvastuslogid", "Press and hold to talk": "Rääkimiseks vajuta ja hoia all",
"feedback_tab_thank_you": "Tänud, me oleme sinu tagasiside kätte saanud!", "Press and hold spacebar to talk over {{name}}": "{{name}} ülerääkimiseks vajuta ja hoia all tühikuklahvi",
"feedback_tab_title": "Tagasiside", "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>",
"more_tab_title": "Rohkem", "Waiting for other participants…": "Ootame teiste osalejate lisandumist…",
"opt_in_description": "<0></0><1></1>Sa võid selle valiku eelmaldamisega alati oma nõusoleku tagasi võtta. Kui sul parasjagu on kõne pooleli, siis seadistuste muudatus jõustub pärast kõne lõppu.", "Waiting for network": "Ootame võrguühendust",
"show_connection_stats_label": "Näita ühenduse statistikat", "Video call name": "Videokõne nimi",
"speaker_device_selection_label": "Kõlar" "Video call": "Videokõne",
}, "Video": "Video",
"star_rating_input_label_one": "{{count}} tärni", "Version: {{version}}": "Versioon: {{version}}",
"star_rating_input_label_other": "{{count}} tärni", "Username": "Kasutajanimi",
"start_new_call": "Algata uus kõne", "This call already exists, would you like to join?": "See kõne on juba olemas, kas soovid liituda?",
"start_video_button_label": "Lülita videovoog sisse", "Talking…": "Jutt käib…",
"stop_screenshare_button_label": "Ekraanivaade on jagamisel", "Talk over speaker": "Räägi teisest kõnelejast üle",
"stop_video_button_label": "Peata videovoog", "Thanks! We'll get right on it.": "Tänud! Tegeleme sellega esimesel võimalusel.",
"submitting": "Saadan…", "Unmute microphone": "Aktiveeri mikrofon",
"unauthenticated_view_body": "Sa pole veel registreerunud? <2>Loo kasutajakonto</2>", "User menu": "Kasutajamenüü",
"unauthenticated_view_eula_caption": "Klõpsides „Jätka“, nõustud sa meie <2>Lõppkasutaja litsentsilepinguga (EULA)</2>", "Yes, join call": "Jah, liitu kõnega",
"unauthenticated_view_login_button": "Logi oma kontosse sisse", "Walkie-talkie call": "Walkie-talkie stiilis kõne",
"unmute_microphone_button_label": "Lülita mikrofon sisse", "Walkie-talkie call name": "Walkie-talkie stiilis kõne nimi",
"version": "Versioon: {{version}}", "WebRTC is not supported or is being blocked in this browser.": "WebRTC pole kas selles brauseris toetatud või on keelatud.",
"video_tile": { "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "Muudab kõneleja heli nii, nagu tuleks see sealt, kus on tema pilt ekraanil. (See on katseline funktsionaalsus ja võib mõjutada heli stabiilsust.)",
"sfu_participant_local": "Sina" "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "Siin saidis on kasutusel ReCAPTCHA ning kehtivad Google <2>privaatsuspoliitika</2> ja <6>teenusetingimused</6>.<9></9>Klikkides „Registreeru“, nõustud meie <12>kasutustingimustega</12>"
},
"waiting_for_participants": "Ootame teiste osalejate lisandumist…"
} }

View File

@@ -1,78 +1,132 @@
{ {
"a11y": { "Your recent calls": "تماس‌های اخیر شما",
"user_menu": "فهرست کاربر" "Video call": "تماس تصویری",
}, "Video": "ویدیو",
"action": { "Username": "نام کاربری",
"close": "بستن", "User ID": "آی دی کاربر",
"copy": "رونوشت", "Turn on camera": "روشن کردن دوربین",
"go": "رفتن", "Turn off camera": "خاموش کردن دوربین",
"no": "خیر", "Take me Home": "مرا به خانه ببر",
"register": "ثبت‌نام", "Speaker": "بلندگو",
"remove": "حذف", "Sign out": "خروج",
"sign_in": "ورود", "Sign in": "ورود",
"sign_out": "خروج" "Settings": "تنظیمات",
}, "Save": "ذخیره",
"call_ended_view": { "Profile": "پروفایل",
"create_account_button": "ساخت حساب کاربری", "Password": "رمز عبور",
"create_account_prompt": "<0>چرا یک رمز عبور برای حساب کاربری خود تنظیم نمی‌کنید؟</0><1>شما می‌توانید نام خود را حفظ کنید و یک آواتار برای تماس‌های آینده بسازید</1>", "No": "خیر",
"not_now_button": "الان نه، به صفحه اصلی برگردید" "Mute microphone": "بی‌صدا کردن میکروفون",
}, "More": "بیشتر",
"common": { "Microphone": "میکروفون",
"audio": "صدا", "Login to your account": "به حساب کاربری خود وارد شوید",
"avatar": "آواتار", "Login": "ورود",
"camera": "دوربین", "Loading…": "بارگزاری…",
"copied": "کپی شد!", "Loading room…": "بارگزاری اتاق…",
"display_name": "نام نمایشی", "Leave": "خروج",
"home": "خانه", "Join existing call?": "پیوست به تماس؟",
"loading": "بارگزاری…", "Join call now": "الان به تماس بپیوند",
"microphone": "میکروفون", "Join call": "پیوستن به تماس",
"password": "رمز عبور", "Invite people": "دعوت از افراد",
"profile": "پروفایل", "Invite": "دعوت",
"settings": "تنظیمات", "Home": "خانه",
"username": "نام کاربری", "Go": "رفتن",
"video": "ویدیو" "Full screen": "تمام صحفه",
}, "Freedom": "آزادی",
"header_label": "خانهٔ تماس المنت", "Exit full screen": "خروج از حالت تمام صفحه",
"join_existing_call_modal": { "Entering room…": "درحال وارد شدن به اتاق…",
"join_button": "بله، به تماس بپیوندید", "Download debug logs": "دانلود لاگ عیب‌یابی",
"text": "این تماس از قبل وجود دارد، می‌خواهید بپیوندید؟", "Display name": "نام نمایشی",
"title": "پیوست به تماس؟" "Developer": "توسعه دهنده",
}, "Details": "جزئیات",
"layout_spotlight_label": "نور افکن", "Description (optional)": "توضیحات (اختیاری)",
"lobby": { "Debug log request": "درخواست لاگ عیب‌یابی",
"join_button": "پیوستن به تماس" "Debug log": "لاگ عیب‌یابی",
}, "Create account": "ساخت حساب کاربری",
"logging_in": "ورود…", "Copy and share this call link": "لینک تماس را کپی کنید و به اشتراک بگذارید",
"login_auth_links": "<0>ساخت حساب کاربری</0> Or <2>دسترسی به عنوان میهمان</2>", "Copied!": "کپی شد!",
"login_title": "ورود", "Connection lost": "ارتباط قطع شد",
"rageshake_request_modal": { "Confirm password": "تایید رمزعبور",
"body": "کاربر دیگری در این تماس مشکلی دارد. برای تشخیص بهتر مشکل، بهتر است ما لاگ عیب‌یابی را جمع‌آوری کنیم.", "Close": "بستن",
"title": "درخواست لاگ عیب‌یابی" "Change layout": "تغییر طرح",
}, "Camera/microphone permissions needed to join the call.": "برای پیوستن به تماس، دسترسی به دوربین/ میکروفون نیاز است.",
"rageshake_send_logs": "ارسال لاگ‌های عیب‌یابی", "Camera {{n}}": "دوربین {{n}}",
"rageshake_sending": "در حال ارسال…", "Camera": "دوربین",
"rageshake_sending_logs": "در حال ارسال باگ‌های عیب‌یابی…", "Call type menu": "منوی نوع تماس",
"recaptcha_dismissed": "ریکپچا رد شد", "Call link copied": "لینک تماس کپی شد",
"recaptcha_not_loaded": "کپچا بارگیری نشد", "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "با کلیک بر روی پیوستن به تماس، شما با <2>شرایط و قوانین استفاده</2> موافقت می‌کنید",
"register": { "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "با کلیک بر روی برو، شما با <2>شرایط و قوانین استفاده</2> موافقت می‌کنید",
"passwords_must_match": "رمز عبور باید همخوانی داشته باشد", "Avatar": "آواتار",
"registering": "ثبت‌نام…" "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.": "کاربر دیگری در این تماس مشکلی دارد. برای تشخیص بهتر مشکل، بهتر است ما لاگ عیب‌یابی را جمع‌آوری کنیم.",
"register_auth_links": "<0>از قبل حساب کاربری دارید؟</0><1><0>ورود</0> Or <2>به عنوان یک میهمان وارد شوید</2></1>", "{{names}}, {{name}}": "{{names}}, {{name}}",
"register_confirm_password_label": "تایید رمزعبور", "Accept microphone permissions to join the call.": "پذیرفتن دسترسی به میکروفون برای پیوستن به تماس.",
"return_home_button": "برگشت به صفحه اصلی", "Accept camera/microphone permissions to join the call.": "پذیرفتن دسترسی دوربین/ میکروفون برای پیوستن به تماس.",
"room_auth_view_join_button": "الان به تماس بپیوند", "<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 calls</1>": "<0>چرا یک رمز عبور برای حساب کاربری خود تنظیم نمی‌کنید؟</0><1>شما می‌توانید نام خود را حفظ کنید و یک آواتار برای تماس‌های آینده بسازید</1>",
"screenshare_button_label": "اشتراک گذاری صفحه نمایش", "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>اوه، مشکلی پیش آمده.</0><1>ثبت کردن لاگ رفع اشکال به پیدا کردن مشکل توسط ما کمک میکند</1>",
"select_input_unset_button": "یک گزینه را انتخاب کنید", "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>ساخت حساب کاربری</0> Or <2>دسترسی به عنوان میهمان</2>",
"settings": { "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>از قبل حساب کاربری دارید؟</0><1><0>ورود</0> Or <2>به عنوان یک میهمان وارد شوید</2></1>",
"developer_tab_title": "توسعه دهنده", "{{roomName}} - Walkie-talkie call": "{{roomName}} - تماس واکی-تاکی",
"feedback_tab_h4": "بازخورد ارائه دهید", "{{name}} is talking…": "{{name}} در حال صحبت است…",
"feedback_tab_send_logs_label": "شامل لاگ‌های عیب‌یابی", "{{name}} is presenting": "{{name}} حاضر است",
"more_tab_title": "بیشتر", "{{displayName}}, your call is now ended": "{{displayName}} تماس شما پایان یافت",
"speaker_device_selection_label": "بلندگو" "{{count}} people connected|other": "{{count}} نفر متصل هستند",
}, "{{count}} people connected|one": "{{count}} فرد متصل هستند",
"unauthenticated_view_body": "هنوز ثبت‌نام نکرده‌اید؟ <2>ساخت حساب کاربری</2>", "Local volume": "حجم داخلی",
"unauthenticated_view_login_button": "به حساب کاربری خود وارد شوید", "Inspector": "بازرس",
"version": "نسخه: {{نسخه}}", "Incompatible versions!": "نسخه‌های ناسازگار!",
"waiting_for_participants": "در انتظار برای دیگر شرکت‌کنندگان…" "Incompatible versions": "نسخه‌های ناسازگار",
"Spotlight": "نور افکن",
"Speaker {{n}}": "بلندگو {{n}}",
"Show call inspector": "نمایش بازرس تماس",
"Share screen": "اشتراک گذاری صفحه نمایش",
"Sending…": "در حال ارسال…",
"Sending debug logs…": "در حال ارسال باگ‌های عیب‌یابی…",
"Send debug logs": "ارسال لاگ‌های عیب‌یابی",
"Select an option": "یک گزینه را انتخاب کنید",
"Saving…": "در حال ذخیره…",
"Return to home screen": "برگشت به صفحه اصلی",
"Remove": "حذف",
"Release to stop": "برای توقف رها کنید",
"Release spacebar key to stop": "اسپیس بار را برای توقف رها کنید",
"Registering…": "ثبت‌نام…",
"Register": "ثبت‌نام",
"Recaptcha not loaded": "کپچا بارگیری نشد",
"Recaptcha dismissed": "بازکپچا رد شد",
"Press and hold to talk over {{name}}": "برای صحبت فشار دهید و نگه‌دارید {{name}}",
"Press and hold to talk": "برای صحبت فشار دهید و نگه‌دارید",
"Press and hold spacebar to talk over {{name}}": "برای صحبت کردن دکمه اسپیس بار را فشار دهید و نگه دارید {{name}}",
"Press and hold spacebar to talk": "برای صحبت کردن کلید فاصله را فشار داده و نگه دارید",
"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 account</2>": "هنوز ثبت‌نام نکرده‌اید؟ <2>ساخت حساب کاربری</2>",
"Not now, return to home screen": "الان نه، به صفحه اصلی برگردید",
"More menu": "تنظیمات بیشتر",
"Microphone permissions needed to join the call.": "برای پیوستن به مکالمه دسترسی به میکروفون نیاز است.",
"Microphone {{n}}": "میکروفون {{n}}",
"Logging in…": "ورود…",
"Include debug logs": "شامل لاگ‌های عیب‌یابی",
"Having trouble? Help us fix it.": "با مشکلی رو به رو شدید؟ به ما کمک کنید رفعش کنیم.",
"Grid layout menu": "منوی طرح‌بندی شبکه‌ای",
"Fetching group call timed out.": "زمان اتصال به مکالمه گروهی تمام شد.",
"You can't talk at the same time": "شما نمی توانید همزمان تماس بگیرید",
"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…": "در انتظار برای دیگر شرکت‌کنندگان…",
"Waiting for network": "در انتظار شبکه",
"Video call name": "نامِ تماسِ تصویری",
"Version: {{version}}": "نسخه: {{نسخه}}",
"User menu": "فهرست کاربر",
"Unmute microphone": "میکروفون را باصدا کنید",
"This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "این کار باعث می‌شود صدای بلندگو از جایی که کاشی‌های آن روی صفحه قرار گرفته است به نظر برسد. (ویژگی آزمایشی: این ممکن است بر پایداری صدا تأثیر بگذارد.)",
"This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "این سایت توسط ReCAPTCHA محافظت می شود و <2>خط مشی رازداری</2> و <6>شرایط خدمات</6> Google اعمال می شود.<9></9>با کلیک کردن بر روی \"ثبت نام\"، شما با <12 >شرایط و ضوابط </12> ما موافقت می کنید",
"This call already exists, would you like to join?": "این تماس از قبل وجود دارد، می‌خواهید بپیوندید؟",
"Thanks! We'll get right on it.": "با تشکر! ما به درستی آن را انجام خواهیم داد.",
"Talking…": "در حال صحبت کردن…",
"Talk over speaker": "روی بلندگو صحبت کنید",
"Submitting feedback…": "در حال ارسال بازخورد…",
"Submit feedback": "بازخورد ارائه دهید",
"Stop sharing screen": "توقف اشتراک‌گذاری صفحه نمایش",
"Spatial audio": "صدای فضایی"
} }

View File

@@ -1,134 +1,134 @@
{ {
"a11y": { "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Créer un compte</0> Or <2>Accès invité</2>",
"user_menu": "Menu utilisateur" "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Mince, une erreur est survenue.</0><1>Envoyer les journaux de débogage nous aidera à résoudre le problème.</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 calls</1>": "<0>Pourquoi ne pas créer un mot de passe pour conserver votre compte ?</0><1>Vous pourrez garder votre nom et définir un avatar pour vos futurs appels</1>",
"action": { "Accept camera/microphone permissions to join the call.": "Autorisez laccès à votre caméra et microphone pour rejoindre lappel.",
"close": "Fermer", "Accept microphone permissions to join the call.": "Autorisez laccès au microphone pour rejoindre lappel.",
"copy": "Copier", "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.",
"copy_link": "Copier le lien", "Audio": "Audio",
"go": "Commencer", "Avatar": "Avatar",
"invite": "Inviter", "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "En cliquant sur « Commencer » vous acceptez nos <2>conditions dutilisation</2>",
"no": "Non", "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "En cliquant sur « Rejoindre lappel » vous acceptez nos <2>conditions dutilisation</2>",
"register": "Senregistrer", "Call link copied": "Lien de lappel copié",
"remove": "Supprimer", "Call type menu": "Menu de type dappel",
"sign_in": "Connexion", "Camera": "Caméra",
"sign_out": "Déconnexion", "Camera {{n}}": "Caméra {{n}}",
"submit": "Envoyer" "Camera/microphone permissions needed to join the call.": "Accès à la caméra et au microphone requis pour rejoindre lappel.",
}, "Change layout": "Changer la disposition",
"analytics_notice": "En participant à cette beta, vous consentez à la collecte de données anonymes, qui seront utilisées pour améliorer le produit. Vous trouverez plus dinformations sur les données collectées dans notre <2>Politique de vie privée</2> et notre <5>Politique de cookies</5>.", "Close": "Fermer",
"app_selection_modal": { "Confirm password": "Confirmer le mot de passe",
"continue_in_browser": "Continuer dans le navigateur", "Connection lost": "Connexion interrompue",
"open_in_app": "Ouvrir dans lapplication", "Copied!": "Copié !",
"text": "Prêt à rejoindre ?", "Copy and share this call link": "Copier et partager le lien de cet appel",
"title": "Choisissez lapplication" "Create account": "Créer un compte",
}, "Debug log": "Journal de débogage",
"browser_media_e2ee_unsupported": "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", "Debug log request": "Demande dun journal de débogage",
"call_ended_view": { "Description (optional)": "Description (facultatif)",
"body": "Vous avez été déconnecté de lappel", "Details": "Informations",
"create_account_button": "Créer un compte", "Developer": "Développeur",
"create_account_prompt": "<0>Pourquoi ne pas créer un mot de passe pour conserver votre compte ?</0><1>Vous pourrez garder votre nom et définir un avatar pour vos futurs appels</1>", "Display name": "Nom daffichage",
"feedback_done": "<0>Merci pour votre commentaire !</0>", "Download debug logs": "Télécharger les journaux de débogage",
"feedback_prompt": "<0>Nous aimerions avoir vos commentaires afin que nous puissions améliorer votre expérience.</0>", "Entering room…": "Entrée dans le salon…",
"headline": "{{displayName}}, votre appel est terminé.", "Exit full screen": "Quitter le plein écran",
"not_now_button": "Pas maintenant, retourner à laccueil", "Freedom": "Libre",
"reconnect_button": "Se reconnecter", "Full screen": "Plein écran",
"survey_prompt": "Comment cela sest-il passé ?" "Go": "Commencer",
}, "Grid layout menu": "Menu en grille",
"call_name": "Nom de lappel", "Having trouble? Help us fix it.": "Un problème ? Aidez nous à le résoudre.",
"common": { "Home": "Accueil",
"camera": "Caméra", "Include debug logs": "Inclure les journaux de débogage",
"copied": "Copié !", "Incompatible versions": "Versions incompatibles",
"display_name": "Nom daffichage", "Incompatible versions!": "Versions incompatibles !",
"encrypted": "Chiffré", "Inspector": "Inspecteur",
"home": "Accueil", "Invite people": "Inviter des gens",
"loading": "Chargement…", "Join call": "Rejoindre lappel",
"password": "Mot de passe", "Join call now": "Rejoindre lappel maintenant",
"profile": "Profil", "Join existing call?": "Rejoindre un appel existant ?",
"settings": "Paramètres", "Leave": "Partir",
"unencrypted": "Non chiffré", "Loading room…": "Chargement du salon…",
"username": "Nom dutilisateur", "Loading…": "Chargement…",
"video": "Vidéo" "Local volume": "Volume local",
}, "Logging in…": "Connexion…",
"disconnected_banner": "La connexion avec le serveur a été perdue.", "Login": "Connexion",
"full_screen_view_description": "<0>Soumettre les journaux de débogage nous aidera à déterminer le problème.</0>", "Login to your account": "Connectez vous à votre compte",
"full_screen_view_h1": "<0>Oups, quelque chose sest mal passé.</0>", "Microphone": "Microphone",
"group_call_loader_failed_heading": "Appel non trouvé", "Microphone permissions needed to join the call.": "Accès au microphone requis pour rejoindre lappel.",
"group_call_loader_failed_text": "Les appels sont maintenant chiffrés de bout-en-bout et doivent être créés depuis la page daccueil. Cela permet dêtre sûr que tout le monde utilise la même clé de chiffrement.", "Microphone {{n}}": "Microphone {{n}}",
"hangup_button_label": "Terminer lappel", "More": "Plus",
"header_label": "Accueil Element Call", "More menu": "Menu plus",
"invite_modal": { "Mute microphone": "Couper le micro",
"link_copied_toast": "Lien copié dans le presse-papier", "No": "Non",
"title": "Inviter dans cet appel" "Not now, return to home screen": "Pas maintenant, retourner à laccueil",
}, "Not registered yet? <2>Create an account</2>": "Pas encore de compte ? <2>En créer un</2>",
"join_existing_call_modal": { "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>",
"join_button": "Oui, rejoindre lappel", "Password": "Mot de passe",
"text": "Cet appel existe déjà, voulez-vous le rejoindre ?", "Passwords must match": "Les mots de passe doivent correspondre",
"title": "Rejoindre un appel existant ?" "Press and hold spacebar to talk": "Appuyez et maintenez la barre despace enfoncée pour parler",
}, "Press and hold spacebar to talk over {{name}}": "Appuyez et maintenez la barre despace enfoncée pour parler par dessus {{name}}",
"layout_grid_label": "Grille", "Press and hold to talk": "Appuyez et maintenez enfoncé pour parler",
"layout_spotlight_label": "Premier plan", "Press and hold to talk over {{name}}": "Appuyez et maintenez enfoncé pour parler par dessus {{name}}",
"lobby": { "Profile": "Profil",
"join_button": "Rejoindre lappel", "Recaptcha dismissed": "Recaptcha refusé",
"leave_button": "Revenir à lhistorique des appels" "Recaptcha not loaded": "Recaptcha non chargé",
}, "Register": "Senregistrer",
"logging_in": "Connexion…", "Registering…": "Enregistrement…",
"login_auth_links": "<0>Créer un compte</0> Or <2>Accès invité</2>", "Release spacebar key to stop": "Relâcher la barre despace pour arrêter",
"login_title": "Connexion", "Release to stop": "Relâcher pour arrêter",
"microphone_off": "Microphone éteint", "Remove": "Supprimer",
"microphone_on": "Microphone allumé", "Return to home screen": "Retour à laccueil",
"mute_microphone_button_label": "Couper le microphone", "Save": "Enregistrer",
"rageshake_button_error_caption": "Réessayer denvoyer les journaux", "Saving…": "Enregistrement…",
"rageshake_request_modal": { "Select an option": "Sélectionnez une option",
"body": "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.", "Send debug logs": "Envoyer les journaux de débogage",
"title": "Demande dun journal de débogage" "Sending…": "Envoi…",
}, "Settings": "Paramètres",
"rageshake_send_logs": "Envoyer les journaux de débogage", "Share screen": "Partage décran",
"rageshake_sending": "Envoi…", "Show call inspector": "Afficher linspecteur dappel",
"rageshake_sending_logs": "Envoi des journaux de débogage…", "Sign in": "Connexion",
"rageshake_sent": "Merci !", "Sign out": "Déconnexion",
"recaptcha_caption": "Ce site est protégé par ReCAPTCHA, la <2>politique de confidentialité</2> et les <6>conditions dutilisation</6> de Google sappliquent.<9></9>En cliquant sur « Senregistrer » vous acceptez également notre <12>Contrat de Licence Utilisateur Final (CLUF)</12>", "Spatial audio": "Audio spatialisé",
"recaptcha_dismissed": "Recaptcha refusé", "Spotlight": "Premier plan",
"recaptcha_not_loaded": "Recaptcha non chargé", "Stop sharing screen": "Arrêter le partage décran",
"register": { "Submit feedback": "Envoyer des retours",
"passwords_must_match": "Les mots de passe doivent correspondre", "Submitting feedback…": "Envoi des retours…",
"registering": "Enregistrement…" "Take me Home": "Retouner à laccueil",
}, "Talk over speaker": "Parler par dessus lintervenant",
"register_auth_links": "<0>Vous avez déjà un compte ?</0><1><0>Se connecter</0> Ou <2>Accès invité</2></1>", "Thanks! We'll get right on it.": "Merci ! Nous allons nous y attaquer.",
"register_confirm_password_label": "Confirmer le mot de passe", "This call already exists, would you like to join?": "Cet appel existe déjà, voulez-vous le rejoindre ?",
"return_home_button": "Retour à laccueil", "{{name}} is presenting": "{{name}} est le présentateur",
"room_auth_view_eula_caption": "En cliquant sur « Rejoindre lappel maintenant », vous acceptez notre <2>Contrat de Licence Utilisateur Final (CLUF)</2>", "Fetching group call timed out.": "Échec de connexion à lappel de groupe dans le temps imparti.",
"room_auth_view_join_button": "Rejoindre lappel maintenant", "{{roomName}} - Walkie-talkie call": "{{roomName}} — Appel talkie-walkie",
"screenshare_button_label": "Partage décran", "{{name}} is talking…": "{{name}} est en train de parler…",
"select_input_unset_button": "Sélectionnez une option", "{{names}}, {{name}}": "{{names}}, {{name}}",
"settings": { "{{displayName}}, your call is now ended": "{{displayName}}, votre appel est désormais terminé",
"developer_settings_label": "Paramètres développeurs", "{{count}} people connected|other": "{{count}} personnes connectées",
"developer_settings_label_description": "Affiche les paramètres développeurs dans la fenêtre des paramètres.", "{{count}} people connected|one": "{{count}} personne connectée",
"developer_tab_title": "Développeur", "Your recent calls": "Appels récents",
"feedback_tab_body": "Si vous rencontrez des problèmes, ou vous voulez simplement faire un commentaire, faites-en une courte description ci-dessous.", "You can't talk at the same time": "Vous ne pouvez pas parler en même temps",
"feedback_tab_description_label": "Votre commentaire", "Yes, join call": "Oui, rejoindre lappel",
"feedback_tab_h4": "Envoyer un commentaire", "WebRTC is not supported or is being blocked in this browser.": "WebRTC nest pas pris en charge ou est bloqué par ce navigateur.",
"feedback_tab_send_logs_label": "Inclure les journaux de débogage", "Walkie-talkie call name": "Nom de lappel talkie-walkie",
"feedback_tab_thank_you": "Merci, nous avons reçu vos commentaires !", "Walkie-talkie call": "Appel talkie-walkie",
"feedback_tab_title": "Commentaires", "Waiting for other participants…": "En attente dautres participants…",
"more_tab_title": "Plus", "Waiting for network": "En attente du réseau",
"opt_in_description": "<0></0><1></1>Vous pouvez retirer votre consentement en décochant cette case. Si vous êtes actuellement en communication, ce paramètre prendra effet à la fin de lappel.", "Video call name": "Nom de lappel vidéo",
"show_connection_stats_label": "Afficher les statistiques de la connexion", "Video call": "Appel vidéo",
"speaker_device_selection_label": "Intervenant" "Video": "Vidéo",
}, "Version: {{version}}": "Version : {{version}}",
"star_rating_input_label_one": "{{count}} favori", "Username": "Nom dutilisateur",
"star_rating_input_label_other": "{{count}} favoris", "User menu": "Menu utilisateur",
"start_new_call": "Démarrer un nouvel appel", "User ID": "Identifiant utilisateur",
"start_video_button_label": "Démarrer la vidéo", "Unmute microphone": "Allumer le micro",
"stop_screenshare_button_label": "Lécran est partagé", "Turn on camera": "Allumer la caméra",
"stop_video_button_label": "Arrêter la vidéo", "Turn off camera": "Couper la caméra",
"submitting": "Envoi…", "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "Cela donnera limpression que le son de lintervenant provient de là où leur tuile est positionnée sur lécran. (Fonctionnalité expérimentale : ceci pourrait avoir un impact sur la stabilité du son.)",
"unauthenticated_view_body": "Pas encore de compte ? <2>En créer un</2>", "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "Ce site est protégé par ReCAPTCHA, la <2>politique de confidentialité</2> et les <6>conditions dutilisation</6> de Google sappliquent.<9></9>En cliquant sur « Senregistrer » vous acceptez également nos <12>conditions dutilisation</12>",
"unauthenticated_view_eula_caption": "En cliquant sur « Commencer », vous acceptez notre <2>Contrat de Licence Utilisateur Final (CLUF)</2>", "Talking…": "Vous parlez…",
"unauthenticated_view_login_button": "Connectez vous à votre compte", "Speaker {{n}}": "Intervenant {{n}}",
"unmute_microphone_button_label": "Allumer le microphone", "Speaker": "Intervenant",
"version": "Version : {{version}}", "Invite": "Inviter",
"video_tile": { "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Vous avez déjà un compte ?</0><1><0>Se connecter</0> Ou <2>Accès invité</2></1>",
"sfu_participant_local": "Vous" "Sending debug logs…": "Envoi des journaux de débogage…",
}, "<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Rejoindre lappel maintenant</0><1>Ou</1><2>Copier le lien de lappel et rejoindre plus tard</2>",
"waiting_for_participants": "En attente dautres participants…" "{{name}} (Connecting...)": "{{name}} (Connexion…)"
} }

View File

@@ -1,135 +1,134 @@
{ {
"a11y": { "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Sudah punya akun?</0><1><0>Masuk</0> Atau <2>Akses sebagai tamu</2></1>",
"user_menu": "Menu pengguna" "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Buat akun</0> Atau <2>Akses sebagai tamu</2>",
}, "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Aduh, ada yang salah.</0><1>Mengirimkan catatan pengawakutuan akan membantu kami melacak masalahnya.</1>",
"action": { "<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 calls</1>": "<0>Kenapa tidak selesaikan dengan mengatur sebuah kata sandi untuk menjaga akun Anda?</0><1>Anda akan dapat tetap menggunakan nama Anda dan atur sebuah avatar untuk digunakan dalam panggilan di masa mendatang</1>",
"close": "Tutup", "Accept camera/microphone permissions to join the call.": "Terima izin kamera/mikrofon untuk bergabung ke panggilan.",
"copy": "Salin", "Accept microphone permissions to join the call.": "Terima izin mikrofon untuk bergabung ke panggilan.",
"copy_link": "Salin tautan", "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.",
"go": "Bergabung", "Audio": "Audio",
"invite": "Undang", "Avatar": "Avatar",
"no": "Tidak", "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Dengan mengeklik \"Bergabung\", Anda terima <2>syarat dan ketentuan</2> kami",
"register": "Daftar", "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Dengan mengeklik \"Bergabung ke panggilan sekarang\", Anda terima <2>syarat dan ketentuan</2> kami",
"remove": "Hapus", "Call link copied": "Tautan panggilan disalin",
"sign_in": "Masuk", "Call type menu": "Menu jenis panggilan",
"sign_out": "Keluar", "Camera": "Kamera",
"submit": "Kirim" "Camera {{n}}": "Kamera {{n}}",
}, "Camera/microphone permissions needed to join the call.": "Izin kamera/mikrofon dibutuhkan untuk bergabung ke panggilan.",
"analytics_notice": "Dengan bergabung dalam beta ini, Anda mengizinkan kami untuk mengumpulkan data anonim, yang kami gunakan untuk meningkatkan produk ini. Anda dapat mempelajari lebih lanjut tentang data apa yang kami lacak dalam <2>Kebijakan Privasi</2> dan <5>Kebijakan Kuki</5> kami.", "Change layout": "Ubah tata letak",
"app_selection_modal": { "Close": "Tutup",
"continue_in_browser": "Lanjutkan dalam peramban", "Confirm password": "Konfirmasi kata sandi",
"open_in_app": "Buka dalam aplikasi", "Connection lost": "Koneksi hilang",
"text": "Siap untuk bergabung?", "Copied!": "Disalin!",
"title": "Pilih plikasi" "Copy and share this call link": "Salin dan bagikan tautan panggilan ini",
}, "Create account": "Buat akun",
"browser_media_e2ee_unsupported": "Peramban web Anda tidak mendukung enkripsi media ujung ke ujung. Peramban yang didukung adalah Chrome, Safari, dan Firefox >=117", "Debug log": "Catatan pengawakutuan",
"call_ended_view": { "Debug log request": "Permintaan catatan pengawakutuan",
"body": "Anda terputus dari panggilan", "Description (optional)": "Deskripsi (opsional)",
"create_account_button": "Buat akun", "Details": "Detail",
"create_account_prompt": "<0>Kenapa tidak selesaikan dengan mengatur sebuah kata sandi untuk menjaga akun Anda?</0><1>Anda akan dapat tetap menggunakan nama Anda dan atur sebuah avatar untuk digunakan dalam panggilan di masa mendatang</1>", "Developer": "Pengembang",
"feedback_done": "<0>Terima kasih atas masukan Anda!</0>", "Display name": "Nama tampilan",
"feedback_prompt": "<0>Kami ingin mendengar masukan Anda supaya kami bisa meningkatkan pengalaman Anda.</0>", "Download debug logs": "Unduh catatan pengawakutuan",
"headline": "{{displayName}}, panggilan Anda telah berakhir.", "Entering room…": "Memasuki ruangan…",
"not_now_button": "Tidak sekarang, kembali ke layar beranda", "Exit full screen": "Keluar dari layar penuh",
"reconnect_button": "Hubungkan ulang", "Fetching group call timed out.": "Waktu pendapatan panggilan grup habis.",
"survey_prompt": "Bagaimana rasanya?" "Freedom": "Bebas",
}, "Full screen": "Layar penuh",
"call_name": "Nama panggilan", "Go": "Bergabung",
"common": { "Grid layout menu": "Menu tata letak kisi",
"camera": "Kamera", "Having trouble? Help us fix it.": "Mengalami masalah? Bantu kami memperbaikinya.",
"copied": "Disalin!", "Home": "Beranda",
"display_name": "Nama tampilan", "Include debug logs": "Termasuk catatan pengawakutuan",
"encrypted": "Terenkripsi", "Incompatible versions": "Versi tidak kompatibel",
"home": "Beranda", "Incompatible versions!": "Versi tidak kompatibel!",
"loading": "Memuat…", "Inspector": "Inspektur",
"microphone": "Mikrofon", "Invite": "Undang",
"password": "Kata sandi", "Invite people": "Undang orang",
"profile": "Profil", "Join call": "Bergabung ke panggilan",
"settings": "Pengaturan", "Join call now": "Bergabung ke panggilan sekarang",
"unencrypted": "Tidak terenkripsi", "Join existing call?": "Bergabung ke panggilan yang sudah ada?",
"username": "Nama pengguna" "Leave": "Keluar",
}, "Loading room…": "Memuat ruangan…",
"disconnected_banner": "Koneksi ke server telah hilang.", "Loading…": "Memuat…",
"full_screen_view_description": "<0>Mengirim catatan pengawakutuan akan membantu kami melacak masalahnya.</0>", "Local volume": "Volume lokal",
"full_screen_view_h1": "<0>Aduh, ada yang salah.</0>", "Logging in…": "Memasuki…",
"group_call_loader_failed_heading": "Panggilan tidak ditemukan", "Login": "Masuk",
"group_call_loader_failed_text": "Panggilan sekarang terenkripsi secara ujung ke ujung dan harus dibuat dari laman beranda. Ini memastikan bahwa semuanya menggunakan kunci enkripsi yang sama.", "Login to your account": "Masuk ke akun Anda",
"hangup_button_label": "Akhiri panggilan", "Microphone": "Mikrofon",
"header_label": "Beranda Element Call", "Microphone permissions needed to join the call.": "Izin mikrofon dibutuhkan untuk bergabung ke panggilan ini.",
"header_participants_label": "Peserta", "Microphone {{n}}": "Mikrofon {{n}}",
"invite_modal": { "More": "Lainnya",
"link_copied_toast": "Tautan disalin ke papan klip", "More menu": "Menu lainnya",
"title": "Undang ke panggilan ini" "Mute microphone": "Bisukan mikrofon",
}, "No": "Tidak",
"join_existing_call_modal": { "Not now, return to home screen": "Tidak sekarang, kembali ke layar beranda",
"join_button": "Ya, bergabung ke panggilan", "Not registered yet? <2>Create an account</2>": "Belum terdaftar? <2>Buat sebuah akun</2>",
"text": "Panggilan ini sudah ada, apakah Anda ingin bergabung?", "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>",
"title": "Bergabung ke panggilan yang sudah ada?" "Password": "Kata sandi",
}, "Passwords must match": "Kata sandi harus cocok",
"layout_grid_label": "Kisi", "Press and hold spacebar to talk": "Tekan dan tahan bilah spasi untuk berbicara",
"layout_spotlight_label": "Sorotan", "Press and hold spacebar to talk over {{name}}": "Tekan dan tahan bilah spasi untuk berbicara pada {{name}}",
"lobby": { "Press and hold to talk": "Tekan dan tahan untuk berbicara",
"join_button": "Bergabung ke panggilan", "Press and hold to talk over {{name}}": "Tekan dan tahan untuk berbicara pada {{name}}",
"leave_button": "Kembali ke terkini" "Profile": "Profil",
}, "Recaptcha dismissed": "Recaptcha ditutup",
"logging_in": "Memasuki…", "Recaptcha not loaded": "Recaptcha tidak dimuat",
"login_auth_links": "<0>Buat akun</0> Atau <2>Akses sebagai tamu</2>", "Register": "Daftar",
"login_title": "Masuk", "Registering…": "Mendaftarkan…",
"microphone_off": "Mikrofon dimatikan", "Release spacebar key to stop": "Lepaskan bilah spasi untuk berhenti",
"microphone_on": "Mikrofon dinyalakan", "Release to stop": "Lepaskan untuk berhenti",
"mute_microphone_button_label": "Matikan mikrofon", "Remove": "Hapus",
"rageshake_button_error_caption": "Kirim ulang catatan", "Return to home screen": "Kembali ke layar beranda",
"rageshake_request_modal": { "Save": "Simpan",
"body": "Pengguna yang lain di panggilan ini sedang mengalami masalah. Supaya dapat mendiagnosa masalah ini, kami ingin mengumpulkan sebuah catatan pengawakutuan.", "Saving…": "Menyimpan…",
"title": "Permintaan catatan pengawakutuan" "Select an option": "Pilih sebuah opsi",
}, "Send debug logs": "Kirim catatan pengawakutuan",
"rageshake_send_logs": "Kirim catatan pengawakutuan", "Sending…": "Mengirimkan",
"rageshake_sending": "Mengirimkan", "Settings": "Pengaturan",
"rageshake_sending_logs": "Mengirimkan catatan pengawakutuan…", "Share screen": "Bagikan layar",
"rageshake_sent": "Terima kasih!", "Show call inspector": "Tampilkan inspektur panggilan",
"recaptcha_caption": "Situs ini dilindungi oleh reCAPTCHA dan <2>Kebijakan Privasi</2> dan <6>Ketentuan Layanan</6> Google berlaku.<9></9>Dengan mengeklik \"Daftar\", Anda menyetujui <12>Perjanjian Lisensi Pengguna Akhir (EULA)</12> kami", "Sign in": "Masuk",
"recaptcha_dismissed": "Recaptcha ditutup", "Sign out": "Keluar",
"recaptcha_not_loaded": "Recaptcha tidak dimuat", "Spatial audio": "Audio spasial",
"register": { "Speaker": "Pembicara",
"passwords_must_match": "Kata sandi harus cocok", "Speaker {{n}}": "Pembicara {{n}}",
"registering": "Mendaftarkan" "Spotlight": "Sorotan",
}, "Stop sharing screen": "Berhenti membagikan layar",
"register_auth_links": "<0>Sudah punya akun?</0><1><0>Masuk</0> Atau <2>Akses sebagai tamu</2></1>", "Submit feedback": "Kirim masukan",
"register_confirm_password_label": "Konfirmasi kata sandi", "Submitting feedback…": "Mengirimkan masukan…",
"return_home_button": "Kembali ke layar beranda", "Take me Home": "Bawa saya ke Beranda",
"room_auth_view_eula_caption": "Dengan mengeklik \"Bergabung ke panggilan sekarang\", Anda menyetujui <2>Perjanjian Lisensi Pengguna Akhir (EULA)</2> kami", "Talk over speaker": "Bicara pada pembicara",
"room_auth_view_join_button": "Bergabung ke panggilan sekarang", "Talking…": "Berbicara",
"screenshare_button_label": "Bagikan layar", "Thanks! We'll get right on it.": "Terima kasih! Kami akan melihatnya.",
"select_input_unset_button": "Pilih sebuah opsi", "This call already exists, would you like to join?": "Panggilan ini sudah ada, apakah Anda ingin bergabung?",
"settings": { "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "Situs ini dilindungi oleh ReCAPTCHA dan <2>Kebijakan Privasi</2> dan <6>Ketentuan Layanan</6> Google berlaku.<9>Dengan mengeklik \"Daftar\", Anda terima <12>syarat dan ketentuan</12> kami",
"developer_settings_label": "Pengaturan Pengembang", "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "Ini akan membuat suara pembicara seolah-olah berasal dari tempat ubin mereka diposisikan di layar. (Fitur uji coba: ini dapat memengaruhi stabilitas audio.)",
"developer_settings_label_description": "Ekspos pengaturan pengembang dalam jendela pengaturan.", "Turn off camera": "Matikan kamera",
"developer_tab_title": "Pengembang", "Turn on camera": "Nyalakan kamera",
"feedback_tab_body": "Jika Anda mengalami masalah atau hanya ingin memberikan masukan, silakan kirimkan kami deskripsi pendek di bawah.", "Unmute microphone": "Suarakan mikrofon",
"feedback_tab_description_label": "Masukan Anda", "User ID": "ID pengguna",
"feedback_tab_h4": "Kirim masukan", "User menu": "Menu pengguna",
"feedback_tab_send_logs_label": "Termasuk catatan pengawakutuan", "Username": "Nama pengguna",
"feedback_tab_thank_you": "Terima kasih, kami telah menerima masukan Anda!", "Version: {{version}}": "Versi: {{version}}",
"feedback_tab_title": "Masukan", "Video": "Video",
"more_tab_title": "Lainnya", "Video call": "Panggilan video",
"opt_in_description": "<0></0><1></1>Anda dapat mengurungkan kembali izin dengan mencentang kotak ini. Jika Anda saat ini dalam panggilan, pengaturan ini akan diterapkan di akhir panggilan.", "Video call name": "Nama panggilan video",
"show_connection_stats_label": "Tampilkan statistik koneksi", "Waiting for network": "Menunggu jaringan",
"speaker_device_selection_label": "Pembicara" "Waiting for other participants…": "Menunggu peserta lain…",
}, "Walkie-talkie call": "Panggilan protofon",
"star_rating_input_label_one": "{{count}} bintang", "Walkie-talkie call name": "Nama panggilan protofon",
"star_rating_input_label_other": "{{count}} bintang", "WebRTC is not supported or is being blocked in this browser.": "WebRTC tidak didukung atau diblokir di peramban ini.",
"start_new_call": "Mulai panggilan baru", "Yes, join call": "Ya, bergabung ke panggilan",
"start_video_button_label": "Nyalakan video", "You can't talk at the same time": "Anda tidak dapat berbicara pada waktu yang sama",
"stop_screenshare_button_label": "Berbagi layar", "Your recent calls": "Panggilan Anda terkini",
"stop_video_button_label": "Matikan video", "{{count}} people connected|one": "{{count}} orang terhubung",
"submitting": "Mengirim…", "{{count}} people connected|other": "{{count}} orang terhubung",
"unauthenticated_view_body": "Belum terdaftar? <2>Buat sebuah akun</2>", "{{displayName}}, your call is now ended": "{{displayName}}, panggilan Anda sekarang telah berakhir",
"unauthenticated_view_eula_caption": "Dengan mengeklik \"Bergabung\", Anda menyetujui <2>Perjanjian Lisensi Pengguna Akhir (EULA)</2>", "{{names}}, {{name}}": "{{names}}, {{name}}",
"unauthenticated_view_login_button": "Masuk ke akun Anda", "{{name}} is presenting": "{{name}} sedang mempresentasi",
"unmute_microphone_button_label": "Nyalakan mikrofon", "{{name}} is talking…": "{{name}} sedang berbicara…",
"version": "Versi: {{version}}", "{{roomName}} - Walkie-talkie call": "{{roomName}} - Panggilan protofon",
"video_tile": { "Sending debug logs…": "Mengirimkan catatan pengawakutuan…",
"sfu_participant_local": "Anda" "<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Bergabung panggilan sekarang</0><1>Atau</1><2>Salin tautan dan bergabung nanti</2>",
}, "{{name}} (Connecting...)": "{{name}} (Menghubungkan...)"
"waiting_for_participants": "Menunggu peserta lain…"
} }

View File

@@ -1,132 +0,0 @@
{
"a11y": {
"user_menu": "Menu utente"
},
"action": {
"close": "Chiudi",
"copy": "Copia",
"copy_link": "Copia collegamento",
"go": "Vai",
"invite": "Invita",
"register": "Registra",
"remove": "Rimuovi",
"sign_in": "Accedi",
"sign_out": "Disconnetti",
"submit": "Invia"
},
"analytics_notice": "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 privacy</2> e nell'<5>informativa sui cookie</5>.",
"app_selection_modal": {
"continue_in_browser": "Continua nel browser",
"open_in_app": "Apri nell'app",
"text": "Tutto pronto per entrare?",
"title": "Seleziona app"
},
"browser_media_e2ee_unsupported": "Il tuo browser non supporta la crittografia end-to-end dei media. I browser supportati sono Chrome, Safari, Firefox >=117",
"call_ended_view": {
"body": "Sei stato disconnesso dalla chiamata",
"create_account_button": "Crea profilo",
"create_account_prompt": "<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 future</1>",
"feedback_done": "<0>Grazie per la tua opinione!</0>",
"feedback_prompt": "<0>Vorremmo sapere la tua opinione in modo da migliorare l'esperienza.</0>",
"headline": "{{displayName}}, la chiamata è terminata.",
"not_now_button": "Non ora, torna alla schermata principale",
"reconnect_button": "Riconnetti",
"survey_prompt": "Com'è andata?"
},
"call_name": "Nome della chiamata",
"common": {
"camera": "Fotocamera",
"copied": "Copiato!",
"display_name": "Il tuo nome",
"encrypted": "Cifrata",
"home": "Pagina iniziale",
"loading": "Caricamento…",
"microphone": "Microfono",
"profile": "Profilo",
"settings": "Impostazioni",
"unencrypted": "Non cifrata",
"username": "Nome utente"
},
"disconnected_banner": "La connessione al server è stata persa.",
"full_screen_view_description": "<0>L'invio di registri di debug ci aiuterà ad individuare il problema.</0>",
"full_screen_view_h1": "<0>Ops, qualcosa è andato storto.</0>",
"group_call_loader_failed_heading": "Chiamata non trovata",
"group_call_loader_failed_text": "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.",
"hangup_button_label": "Termina chiamata",
"header_label": "Inizio di Element Call",
"header_participants_label": "Partecipanti",
"invite_modal": {
"link_copied_toast": "Collegamento copiato negli appunti",
"title": "Invita a questa chiamata"
},
"join_existing_call_modal": {
"join_button": "Sì, entra in chiamata",
"text": "Questa chiamata esiste già, vuoi entrare?",
"title": "Entrare in una chiamata esistente?"
},
"layout_grid_label": "Griglia",
"layout_spotlight_label": "In primo piano",
"lobby": {
"join_button": "Entra in chiamata",
"leave_button": "Torna ai recenti"
},
"logging_in": "Accesso…",
"login_auth_links": "<0>Crea un profilo</0> o <2>Accedi come ospite</2>",
"login_title": "Accedi",
"microphone_off": "Microfono spento",
"microphone_on": "Microfono acceso",
"mute_microphone_button_label": "Spegni il microfono",
"rageshake_button_error_caption": "Riprova l'invio dei registri",
"rageshake_request_modal": {
"body": "Un altro utente in questa chiamata sta avendo problemi. Per diagnosticare meglio questi problemi, vorremmo raccogliere un registro di debug.",
"title": "Richiesta registro di debug"
},
"rageshake_send_logs": "Invia registri di debug",
"rageshake_sending": "Invio…",
"rageshake_sending_logs": "Invio dei registri di debug…",
"rageshake_sent": "Grazie!",
"recaptcha_caption": "Questo sito è protetto da ReCAPTCHA e si applicano l'<2>informativa sulla privacy</2> e i <6>termini di servizio</6> di Google.<9></9>Cliccando \"Registra\", accetti il nostro <12>accordo di licenza con l'utente finale (EULA)</12>",
"recaptcha_dismissed": "Recaptcha annullato",
"recaptcha_not_loaded": "Recaptcha non caricato",
"register": {
"passwords_must_match": "Le password devono coincidere",
"registering": "Registrazione…"
},
"register_auth_links": "<0>Hai già un profilo?</0><1><0>Accedi</0> o <2>Accedi come ospite</2></1>",
"register_confirm_password_label": "Conferma password",
"return_home_button": "Torna alla schermata di iniziale",
"room_auth_view_eula_caption": "Cliccando \"Entra in chiamata ora\", accetti il nostro <2>accordo di licenza con l'utente finale (EULA)</2>",
"room_auth_view_join_button": "Entra in chiamata ora",
"screenshare_button_label": "Condividi schermo",
"select_input_unset_button": "Seleziona un'opzione",
"settings": {
"developer_settings_label": "Impostazioni per sviluppatori",
"developer_settings_label_description": "Mostra le impostazioni per sviluppatori nella finestra delle impostazioni.",
"developer_tab_title": "Sviluppatore",
"feedback_tab_body": "Se stai riscontrando problemi o semplicemente vuoi dare un'opinione, inviaci una breve descrizione qua sotto.",
"feedback_tab_description_label": "Il tuo commento",
"feedback_tab_h4": "Invia commento",
"feedback_tab_send_logs_label": "Includi registri di debug",
"feedback_tab_thank_you": "Grazie, abbiamo ricevuto il tuo commento!",
"more_tab_title": "Altro",
"opt_in_description": "<0></0><1></1>Puoi revocare il consenso deselezionando questa casella. Se attualmente sei in una chiamata, avrà effetto al termine di essa.",
"show_connection_stats_label": "Mostra statistiche connessione",
"speaker_device_selection_label": "Altoparlante"
},
"star_rating_input_label_one": "{{count}} stelle",
"star_rating_input_label_other": "{{count}} stelle",
"start_new_call": "Inizia una nuova chiamata",
"start_video_button_label": "Avvia video",
"stop_screenshare_button_label": "Condivisione schermo",
"stop_video_button_label": "Ferma video",
"submitting": "Invio…",
"unauthenticated_view_body": "Non hai ancora un profilo? <2>Creane uno</2>",
"unauthenticated_view_eula_caption": "Cliccando \"Vai\", accetti il nostro <2>accordo di licenza con l'utente finale (EULA)</2>",
"unauthenticated_view_login_button": "Accedi al tuo profilo",
"unmute_microphone_button_label": "Riaccendi il microfono",
"version": "Versione: {{version}}",
"video_tile": {
"sfu_participant_local": "Tu"
},
"waiting_for_participants": "In attesa di altri partecipanti…"
}

View File

@@ -1,73 +0,0 @@
{
"a11y": {
"user_menu": "ユーザーメニュー"
},
"action": {
"close": "閉じる",
"copy": "コピー",
"go": "続行",
"no": "いいえ",
"register": "登録",
"remove": "削除",
"sign_in": "サインイン",
"sign_out": "サインアウト"
},
"call_ended_view": {
"create_account_button": "アカウントを作成"
},
"common": {
"audio": "音声",
"avatar": "アバター",
"camera": "カメラ",
"copied": "コピーしました!",
"display_name": "表示名",
"home": "ホーム",
"loading": "読み込んでいます…",
"microphone": "マイク",
"password": "パスワード",
"profile": "プロフィール",
"settings": "設定",
"username": "ユーザー名",
"video": "ビデオ"
},
"full_screen_view_h1": "<0>何かがうまく行きませんでした。</0>",
"header_label": "Element Call ホーム",
"join_existing_call_modal": {
"join_button": "はい、通話に参加",
"text": "この通話は既に存在します。参加しますか?",
"title": "既存の通話に参加しますか?"
},
"layout_spotlight_label": "スポットライト",
"lobby": {
"join_button": "通話に参加"
},
"logging_in": "ログインしています…",
"login_auth_links": "<0>アカウントを作成</0>または<2>ゲストとしてアクセス</2>",
"login_title": "ログイン",
"rageshake_request_modal": {
"title": "デバッグログを要求"
},
"rageshake_send_logs": "デバッグログを送信",
"rageshake_sending": "送信しています…",
"rageshake_sending_logs": "デバッグログを送信しています…",
"register": {
"passwords_must_match": "パスワードが一致する必要があります",
"registering": "登録しています…"
},
"register_auth_links": "<0>既にアカウントをお持ちですか?</0><1><0>ログイン</0>または<2>ゲストとしてアクセス</2></1>",
"register_confirm_password_label": "パスワードを確認",
"return_home_button": "ホーム画面に戻る",
"room_auth_view_join_button": "今すぐ通話に参加",
"screenshare_button_label": "画面共有",
"select_input_unset_button": "オプションを選択",
"settings": {
"developer_tab_title": "開発者",
"feedback_tab_h4": "フィードバックを送信",
"feedback_tab_send_logs_label": "デバッグログを含める",
"speaker_device_selection_label": "スピーカー"
},
"unauthenticated_view_body": "アカウントがありませんか? <2>アカウントを作成</2>",
"unauthenticated_view_login_button": "アカウントにログイン",
"version": "バージョン:{{version}}",
"waiting_for_participants": "他の参加者を待機しています…"
}

View File

@@ -0,0 +1,12 @@
{
"<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "",
"<0>Create an account</0> Or <2>Access as a guest</2>": "",
"<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "",
"{{count}} people connected|one": "{{count}}명 연결됨",
"{{count}} people connected|other": "{{count}}명 연결됨",
"{{displayName}}, your call is now ended": "{{displayName}}님, 전화가 종료되었습니다",
"{{names}}, {{name}}": "{{names}}님, {{name}}님",
"{{name}} is presenting": "{{name}}님이 발표 중",
"{{name}} is talking…": "{{name}}님이 말하는 중…",
"{{roomName}} - Walkie-talkie call": "{{roomName}} - 워키토키 전화"
}

View File

@@ -1,104 +0,0 @@
{
"a11y": {
"user_menu": "Lietotāja izvēlne"
},
"action": {
"close": "Aizvērt",
"copy": "Ievietot starpliktuvē",
"go": "Aiziet",
"no": "Nē",
"register": "Reģistrēties",
"remove": "Noņemt",
"sign_in": "Pieteikties",
"sign_out": "Atteikties",
"submit": "Iesniegt"
},
"analytics_notice": "Piedalīšanās šajā beta apliecina piekrišanu anonīmu datu ievākšanai, ko mēs izmantojam, lai uzlabotu izstrādājumu. Vairāk informācijas par datiem, ko mēs ievācam, var atrast mūsu <2>privātuma nosacījumos</2> un <5>sīkdatņu nosacījumos</5>.",
"call_ended_view": {
"body": "Tu tiki atvienots no zvana",
"create_account_button": "Izveidot kontu",
"create_account_prompt": "<0>Kādēļ nepabeigt ar paroles iestatīšanu, lai paturētu savu kontu?</0><1>Būs iespējams paturēt savu vārdu un iestatīt attēlu izmantošanai turpmākajos zvanos</1>",
"feedback_done": "<0>Paldies par atsauksmi!</0>",
"feedback_prompt": "<0>Mums patiktu saņemt Tavu atsauksmi, lai mēs varētu uzlabot Tavu pieredzi.</0>",
"headline": "{{displayName}}, Tavs zvans ir beidzies.",
"not_now_button": "Ne tagad, atgriezties sākuma ekrānā",
"reconnect_button": "Atkārtoti savienoties",
"survey_prompt": "Kā Tev veicās?"
},
"common": {
"audio": "Skaņa",
"avatar": "Attēls",
"camera": "Kamera",
"copied": "Ievietots starpliktuvē.",
"display_name": "Attēlojamais vārds",
"home": "Sākums",
"loading": "Lādējas…",
"microphone": "Mikrofons",
"password": "Parole",
"profile": "Profils",
"settings": "Iestatījumi",
"username": "Lietotājvārds"
},
"disconnected_banner": "Ir zaudēts savienojums ar serveri.",
"full_screen_view_description": "<0>Atkļūdošanas žurnāla ierakstu iesūtīšana palīdzēs mums atklāt nepilnību.</0>",
"full_screen_view_h1": "<0>Ak vai, kaut kas nogāja greizi!</0>",
"header_label": "Element Call sākums",
"join_existing_call_modal": {
"join_button": "Jā, pievienoties zvanam",
"text": "Šis zvans jau pastāv. Vai vēlies pievienoties?",
"title": "Pievienoties esošam zvanam?"
},
"layout_spotlight_label": "Starmešu gaisma",
"lobby": {
"join_button": "Pievienoties zvanam"
},
"logging_in": "Piesakās…",
"login_auth_links": "<0>Izveidot kontu</0> vai <2>Piekļūt kā viesim</2>",
"login_title": "Pieteikties",
"rageshake_button_error_caption": "Atkārtoti mēģināt žurnāla ierakstu nosūtīšanu",
"rageshake_request_modal": {
"body": "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.",
"title": "Atkļūdošanas žurnāla pieprasījums"
},
"rageshake_send_logs": "Nosūtīt atkļūdošanas žurnāla ierakstus",
"rageshake_sending": "Nosūta…",
"rageshake_sending_logs": "Nosūta atkļūdošanas žurnāla ierakstus…",
"rageshake_sent": "Paldies!",
"recaptcha_caption": "Šo vietni aizsargā ReCAPTCHA, un ir attiecināmi Google <2>privātuma nosacījumi</2> un <6>pakalpojuma noteikumi</6>.<9></9>Klikšķināšana uz \"Reģistrēties\" sniedz piekrišanu mūsu <12>galalietotāja licencēšanas nolīgumam (GLLN)</12>",
"recaptcha_dismissed": "ReCaptcha atmesta",
"recaptcha_not_loaded": "ReCaptcha nav ielādēta",
"register": {
"passwords_must_match": "Parolēm ir jāsakrīt",
"registering": "Reģistrē…"
},
"register_auth_links": "<0>Jau ir konts?</0><1><0>Pieteikties</0> vai <2>Piekļūt kā viesim</2></1>",
"register_confirm_password_label": "Apstiprināt paroli",
"return_home_button": "Atgriezties sākuma ekrānā",
"room_auth_view_eula_caption": "Klikšķināšana uz \"Pievienoties zvanam tagad\" apliecina piekrišanu mūsu <2>galalietotāja licencēšanas nolīgumam (GLLN)</2>",
"room_auth_view_join_button": "Pievienoties zvanam tagad",
"screenshare_button_label": "Kopīgot ekrānu",
"select_input_unset_button": "Atlasīt iespēju",
"settings": {
"developer_settings_label": "Izstrādātāja iestatījumi",
"developer_settings_label_description": "Izstādīt izstrādātāja iestatījumus iestatījumu logā.",
"developer_tab_title": "Izstrādātājs",
"feedback_tab_body": "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.",
"feedback_tab_description_label": "Tava atsauksme",
"feedback_tab_h4": "Iesniegt atsauksmi",
"feedback_tab_send_logs_label": "Iekļaut atkļūdošanas žurnāla ierakstus",
"feedback_tab_thank_you": "Paldies, mēs saņēmām atsauksmi!",
"feedback_tab_title": "Atsauksmes",
"more_tab_title": "Vairāk",
"opt_in_description": "<0></0><1></1>Savu piekrišanu var atsaukt ar atzīmes noņemšanu no šīs rūtiņas. Ja pašreiz atrodies zvanā, šis iestatījums stāsies spēkā zvana beigās.",
"show_connection_stats_label": "Rādīt savienojuma apkopojumu",
"speaker_device_selection_label": "Runātājs"
},
"star_rating_input_label_one": "{{count}} zvaigzne",
"star_rating_input_label_other": "{{count}} zvaigznes",
"submitting": "Iesniedz…",
"unauthenticated_view_body": "Vēl neesi reģistrējies? <2>Izveidot kontu</2>",
"unauthenticated_view_eula_caption": "Klikšķināšana uz \"Aiziet\" apliecina piekrišanu mūsu <2>galalietotāja licencēšanas nolīgumam (GLLN)</2>",
"unauthenticated_view_login_button": "Pieteikties kontā",
"version": "Versija: {{version}}",
"waiting_for_participants": "Gaida citus dalībniekus…"
}

View File

@@ -1,138 +1,130 @@
{ {
"a11y": { "More menu": "Menu \"więcej\"",
"user_menu": "Menu użytkownika" "Login": "Zaloguj się",
}, "Go": "Kontynuuj",
"action": { "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Klikając \"Kontynuuj\", wyrażasz zgodę na nasze <2>Warunki</2>",
"close": "Zamknij", "{{count}} people connected|other": "{{count}} ludzi połączono",
"copy": "Kopiuj", "Your recent calls": "Twoje ostatnie połączenia",
"copy_link": "Kopiuj link", "You can't talk at the same time": "Nie możesz mówić w tym samym czasie",
"go": "Przejdź", "Yes, join call": "Tak, dołącz do połączenia",
"invite": "Zaproś", "WebRTC is not supported or is being blocked in this browser.": "WebRTC jest niewspierane lub zablokowane w tej przeglądarce.",
"no": "Nie", "Walkie-talkie call name": "Nazwa połączenia walkie-talkie",
"register": "Zarejestruj", "Walkie-talkie call": "Połączenie walkie-talkie",
"remove": "Usuń", "Waiting for other participants…": "Oczekiwanie na pozostałych uczestników…",
"sign_in": "Zaloguj się", "Waiting for network": "Oczekiwanie na si",
"sign_out": "Wyloguj się", "Video call name": "Nazwa połączenia wideo",
"submit": "Wyślij" "Video call": "Połączenie wideo",
}, "Video": "Wideo",
"analytics_notice": "Uczestnicząc w tej becie, upoważniasz nas do zbierania anonimowych danych, które wykorzystamy do ulepszenia produktu. Dowiedz się więcej na temat danych, które zbieramy w naszej <2>Polityce prywatności</2> i <5>Polityce ciasteczek</5>.", "Version: {{version}}": "Wersja: {{version}}",
"app_selection_modal": { "Username": "Nazwa użytkownika",
"continue_in_browser": "Kontynuuj w przeglądarce", "User menu": "Menu użytkownika",
"open_in_app": "Otwórz w aplikacji", "User ID": "ID użytkownika",
"text": "Gotowy, by dołączyć?", "Unmute microphone": "Wyłącz wyciszenie mikrofonu",
"title": "Wybierz aplikację" "Turn on camera": "Włącz kamerę",
}, "Turn off camera": "Wyłącz kamerę",
"browser_media_e2ee_unsupported": "Twoja przeglądarka nie wspiera szyfrowania end-to-end. Wspierane przeglądarki to Chrome, Safari, Firefox >=117", "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "Sprawi to, że dźwięk mówcy będzie zdawał się dochodzić z jego miejsca na ekranie. (Funkcja eksperymentalna: może mieć wpływ na stabilność dźwięku.)",
"call_ended_view": { "This call already exists, would you like to join?": "Te połączenie już istnieje, czy chcesz do niego dołączyć?",
"body": "Rozłączono Cię z połączenia", "Thanks! We'll get right on it.": "Dziękujemy! Zaraz się tym zajmiemy.",
"create_account_button": "Utwórz konto", "Talking…": "Mówienie…",
"create_account_prompt": "<0>Może zechcesz ustawić hasło, aby zachować swoje konto?</0><1>Będziesz w stanie utrzymać swoją nazwę i ustawić awatar do wyświetlania podczas połączeń w przyszłości</1>", "Take me Home": "Zabierz mnie do ekranu startowego",
"feedback_done": "<0>Dziękujemy za Twoją opinię!</0>", "Submitting feedback": "Przesyłanie opinii…",
"feedback_prompt": "<0>Z przyjemnością wysłuchamy Twojej opinii, aby poprawić Twoje doświadczenia.</0>", "Submit feedback": "Prześlij opinię",
"headline": "{{displayName}}, Twoje połączenie zostało zakończone.", "Stop sharing screen": "Zatrzymaj udostępnianie ekranu",
"not_now_button": "Nie teraz, powróć do ekranu domowego", "Spotlight": "Centrum uwagi",
"reconnect_button": "Połącz ponownie", "Speaker {{n}}": "Głośnik {{n}}",
"survey_prompt": "Jak poszło?" "Speaker": "Głośnik",
}, "Spatial audio": "Dźwięk przestrzenny",
"call_name": "Nazwa połączenia", "Sign out": "Wyloguj się",
"common": { "Sign in": "Zaloguj się",
"audio": "Dźwięk", "Show call inspector": "Pokaż inspektora połączenia",
"avatar": "Awatar", "Share screen": "Udostępnij ekran",
"camera": "Kamera", "Settings": "Ustawienia",
"copied": "Skopiowano!", "Sending…": "Wysyłanie…",
"display_name": "Nazwa wyświetlana", "Sending debug logs…": "Wysyłanie dzienników debugowania…",
"encrypted": "Szyfrowane", "Send debug logs": "Wyślij dzienniki debugowania",
"home": "Strona domowa", "Select an option": "Wybierz opcję",
"loading": "Ładowanie…", "Saving": "Zapisywanie…",
"microphone": "Mikrofon", "Save": "Zapisz",
"password": "Hasło", "Return to home screen": "Powróć do ekranu domowego",
"profile": "Profil", "Remove": "Usuń",
"settings": "Ustawienia", "Release to stop": "Puść przycisk, aby przestać",
"unencrypted": "Nie szyfrowane", "Release spacebar key to stop": "Puść spację, aby przestać",
"username": "Nazwa użytkownika", "Registering…": "Rejestrowanie…",
"video": "Wideo" "Register": "Zarejestruj",
}, "Recaptcha not loaded": "Recaptcha nie została załadowana",
"disconnected_banner": "Utracono połączenie z serwerem.", "Recaptcha dismissed": "Recaptcha odrzucona",
"full_screen_view_description": "<0>Wysłanie dzienników debuggowania pomoże nam ustalić przyczynę problemu.</0>", "Profile": "Profil",
"full_screen_view_h1": "<0>Ojej, coś poszło nie tak.</0>", "Press and hold to talk over {{name}}": "Przytrzymaj, aby mówić wraz z {{name}}",
"group_call_loader_failed_heading": "Nie znaleziono połączenia", "Press and hold to talk": "Przytrzymaj, aby mówić",
"group_call_loader_failed_text": "Połączenia są teraz szyfrowane end-to-end i muszą zostać utworzone ze strony głównej. Pomaga to upewnić się, że każdy korzysta z tego samego klucza szyfrującego.", "Press and hold spacebar to talk over {{name}}": "Przytrzymaj spację, aby mówić wraz z {{name}}",
"hangup_button_label": "Zakończ połączenie", "Press and hold spacebar to talk": "Przytrzymaj spację, aby mówić",
"header_label": "Strona główna Element Call", "Passwords must match": "Hasła muszą być identyczne",
"header_participants_label": "Uczestnicy", "Password": "Hasło",
"invite_modal": { "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>",
"link_copied_toast": "Skopiowano link do schowka", "Not registered yet? <2>Create an account</2>": "Nie masz konta? <2>Utwórz je</2>",
"title": "Zaproś do połączenia" "Not now, return to home screen": "Nie teraz, powróć do ekranu domowego",
}, "No": "Nie",
"join_existing_call_modal": { "Mute microphone": "Wycisz mikrofon",
"join_button": "Tak, dołącz do połączenia", "More": "Więcej",
"text": "Te połączenie już istnieje, czy chcesz do niego dołączyć?", "Microphone permissions needed to join the call.": "Aby dołączyć do połączenia, potrzebne są uprawnienia do mikrofonu.",
"title": "Dołączyć do istniejącego połączenia?" "Microphone {{n}}": "Mikrofon {{n}}",
}, "Microphone": "Mikrofon",
"layout_grid_label": "Siatka", "Login to your account": "Zaloguj się do swojego konta",
"layout_spotlight_label": "Centrum uwagi", "Logging in…": "Logowanie…",
"lobby": { "Local volume": "Lokalna głośność",
"join_button": "Dołącz do połączenia", "Loading…": "Ładowanie…",
"leave_button": "Wróć do ostatnie" "Loading room…": "Ładowanie pokoju…",
}, "Leave": "Opuść",
"logging_in": "Logowanie…", "Join existing call?": "Dołączyć do istniejącego połączenia?",
"login_auth_links": "<0>Utwórz konto</0> lub <2>Dołącz jako gość</2>", "Join call now": "Dołącz do połączenia teraz",
"login_title": "Zaloguj się", "Join call": "Dołącz do połączenia",
"microphone_off": "Mikrofon wyłączony", "Invite people": "Zaproś ludzi",
"microphone_on": "Mikrofon włączony", "Invite": "Zaproś",
"mute_microphone_button_label": "Wycisz mikrofon", "Inspector": "Inspektor",
"rageshake_button_error_caption": "Wyślij logi ponownie", "Incompatible versions!": "Niekompatybilne wersje!",
"rageshake_request_modal": { "Incompatible versions": "Niekompatybilne wersje",
"body": "Inny użytkownik w tym połączeniu napotkał problem. Aby lepiej zdiagnozować tę usterkę, chcielibyśmy zebrać dzienniki debugowania.", "Include debug logs": "Dołącz dzienniki debugowania",
"title": "Prośba o dzienniki debugowania" "Home": "Strona domowa",
}, "Having trouble? Help us fix it.": "Masz problem? Pomóż nam go naprawić.",
"rageshake_send_logs": "Wyślij dzienniki debugowania", "Grid layout menu": "Menu układu siatki",
"rageshake_sending": "Wysyłanie…", "Full screen": "Pełen ekran",
"rageshake_sending_logs": "Wysyłanie dzienników debugowania…", "Freedom": "Wolność",
"rageshake_sent": "Dziękujemy!", "Fetching group call timed out.": "Przekroczono limit czasu na uzyskanie połączenia grupowego.",
"recaptcha_caption": "Ta witryna jest chroniona przez ReCAPTCHA, więc obowiązują <2>Polityka prywatności</2> i <6>Warunki usług</6> Google. Klikając \"Zarejestruj\", zgadzasz się na naszą <12>Umowę licencyjną (EULA)</12>", "Exit full screen": "Zamknij pełny ekran",
"recaptcha_dismissed": "Recaptcha odrzucona", "Entering room…": "Wchodzenie do pokoju…",
"recaptcha_not_loaded": "Recaptcha nie została załadowana", "Download debug logs": "Pobierz dzienniki debugowania",
"register": { "Display name": "Wyświetlana nazwa",
"passwords_must_match": "Hasła muszą pasować", "Developer": "Deweloper",
"registering": "Rejestrowanie…" "Details": "Szczegóły",
}, "Description (optional)": "Opis (opcjonalny)",
"register_auth_links": "<0>Masz już konto?</0><1><0>Zaloguj się</0> lub <2>Dołącz jako gość</2></1>", "Debug log request": "Prośba o dzienniki debugowania",
"register_confirm_password_label": "Potwierdź hasło", "Debug log": "Dzienniki debugowania",
"return_home_button": "Powróć do strony głównej", "Create account": "Utwórz konto",
"room_auth_view_eula_caption": "Klikając \"Dołącz teraz do rozmowy\", zgadzasz się na naszą <2>Umowę licencyjną (EULA)</2>", "Copy and share this call link": "Skopiuj i podziel się linkiem do połączenia",
"room_auth_view_join_button": "Dołącz do połączenia teraz", "Copied!": "Skopiowano!",
"screenshare_button_label": "Udostępnij ekran", "Connection lost": "Połączenie utracone",
"select_input_unset_button": "Wybierz opcję", "Confirm password": "Potwierdź hasło",
"settings": { "Close": "Zamknij",
"developer_settings_label": "Opcje programisty", "Change layout": "Zmień układ",
"developer_settings_label_description": "Wyświetl opcje programisty w oknie ustawień.", "Camera/microphone permissions needed to join the call.": "Aby dołączyć do tego połączenia, potrzebne są uprawnienia do kamery/mikrofonu.",
"developer_tab_title": "Programista", "Camera {{n}}": "Kamera {{n}}",
"feedback_tab_body": "Jeśli posiadasz problemy lub chciałbyś zgłosić swoją opinię, wyślij nam krótki opis.", "Camera": "Kamera",
"feedback_tab_description_label": "Twoje opinie", "Call type menu": "Menu rodzaju połączenia",
"feedback_tab_h4": "Prześlij opinię", "Call link copied": "Skopiowano link do połączenia",
"feedback_tab_send_logs_label": "Dołącz dzienniki debugowania", "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Klikając \"Dołącz do rozmowy\", wyrażasz zgodę na nasze <2>Warunki</2>",
"feedback_tab_thank_you": "Dziękujemy, otrzymaliśmy Twoją opinię!", "Avatar": "Awatar",
"feedback_tab_title": "Opinia użytkownika", "Audio": "Dźwięk",
"more_tab_title": "Więcej", "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.",
"opt_in_description": "<0></0><1></1>Możesz wycofać swoją zgodę poprzez odznaczenie tego pola. Jeśli już jesteś w trakcie rozmowy, opcja zostanie zastosowana po jej zakończeniu.", "Accept microphone permissions to join the call.": "Przyznaj uprawnienia do mikrofonu aby dołączyć do połączenia.",
"show_connection_stats_label": "Pokaż statystyki połączenia", "Accept camera/microphone permissions to join the call.": "Przyznaj uprawnienia do kamery/mikrofonu aby dołączyć do połączenia.",
"speaker_device_selection_label": "Głośnik" "<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 calls</1>": "<0>Może zechcesz ustawić hasło, aby zachować swoje konto?</0><1>Będziesz w stanie utrzymać swoją nazwę i ustawić awatar do wyświetlania podczas połączeń w przyszłości</1>",
}, "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Ups, coś poszło nie tak.</0><1>Przesłanie dzienników debugowania pomoże nam odnaleźć ten błąd.</1>",
"star_rating_input_label_one": "{{count}} gwiazdki", "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Utwórz konto</0> Albo <2>Dołącz jako gość</2>",
"star_rating_input_label_other": "{{count}} gwiazdki", "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Masz już konto?</0><1><0>Zaloguj się</0> Albo <2>Dołącz jako gość</2></1>",
"start_new_call": "Rozpocznij nowe połączenie", "{{roomName}} - Walkie-talkie call": "{{roomName}} - połączenie walkie-talkie",
"start_video_button_label": "Rozpocznij wideo", "{{names}}, {{name}}": "{{names}}, {{name}}",
"stop_screenshare_button_label": "Udostępnianie ekranu", "{{name}} is talking…": "{{name}} mówi…",
"stop_video_button_label": "Zakończ wideo", "{{name}} is presenting": "{{name}} prezentuje",
"submitting": "Wysyłanie…", "{{displayName}}, your call is now ended": "{{displayName}}, twoje połączenie zostało zakończone",
"unauthenticated_view_body": "Nie masz konta? <2>Utwórz je</2>", "{{count}} people connected|one": "{{count}} osoba połączona"
"unauthenticated_view_eula_caption": "Klikając \"Przejdź\", zgadzasz się na naszą <2>Umowę licencyjną (EULA)</2>",
"unauthenticated_view_login_button": "Zaloguj się do swojego konta",
"unmute_microphone_button_label": "Odcisz mikrofon",
"version": "Wersja: {{version}}",
"video_tile": {
"sfu_participant_local": "Ty"
},
"waiting_for_participants": "Oczekiwanie na pozostałych uczestników…"
} }

View File

@@ -1,97 +1,132 @@
{ {
"a11y": { "Register": "Зарегистрироваться",
"user_menu": "Меню пользователя" "Saving…": "Сохранение…",
}, "Registering…": "Регистрация…",
"action": { "Logging in…": "Вход…",
"close": "Закрыть", "Entering room…": "Вход в комнату…",
"copy": "Копировать", "{{names}}, {{name}}": "{{names}}, {{name}}",
"go": "Далее", "Waiting for other participants…": "Ожидание других участников…",
"no": "Нет", "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "Эта функция балансирует звук к расположению плитки на экране. (Экспериментальная функция: может повлиять на стабильность аудио.)",
"register": "Зарегистрироваться", "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "Этот сайт защищён ReCAPTCHA от Google, ознакомьтесь с их <2>Политикой конфиденциальности</2> и <6>Пользовательским соглашением</6>.<9></9>Нажимая \"Зарегистрироваться\", вы также принимаете наши <12>Положения и условия</12>.",
"remove": "Удалить", "This call already exists, would you like to join?": "Этот звонок уже существует, хотите присоединиться?",
"sign_in": "Войти", "Thanks! We'll get right on it.": "Спасибо! Мы учтём ваш отзыв.",
"sign_out": "Выйти", "Talking…": "Говорите…",
"submit": "Отправить" "Submitting feedback…": "Отправка отзыва…",
}, "Submit feedback": "Отправить отзыв",
"analytics_notice": "Участвуя в этой бета-версии, вы соглашаетесь на сбор анонимных данных, которые мы используем для улучшения продукта. Более подробную информацию о том, какие данные мы отслеживаем, вы можете найти в нашей <2> Политике конфиденциальности</2> и нашей <5> Политике использования файлов cookie</5>.", "Sending debug logs…": "Отправка журнала отладки…",
"call_ended_view": { "Select an option": "Выберите вариант",
"create_account_button": "Создать аккаунт", "Release to stop": "Отпустите, чтобы прекратить вещание",
"create_account_prompt": "<0>Почему бы не задать пароль, тем самым сохранив аккаунт?</0><1>Так вы можете оставить своё имя и задать аватар для будущих звонков.</1>", "Release spacebar key to stop": "Чтобы прекратить вещание, отпустите [Пробел]",
"feedback_done": "<0>Спасибо за обратную связь!</0>", "Press and hold to talk over {{name}}": "Зажмите, чтобы говорить поверх участника {{name}}",
"feedback_prompt": "<0>Мы будем рады видеть ваши отзывы, чтобы мы могли улучшить ваш опыт.</0>", "Press and hold spacebar to talk over {{name}}": "Чтобы говорить поверх участника {{name}}, нажмите и удерживайте [Пробел]",
"headline": "{{displayName}}, ваш звонок окончен.", "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_now_button": "Не сейчас, вернуться в Начало", "Grid layout menu": "Меню \"Расположение сеткой\"",
"survey_prompt": "Как всё прошло?" "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Нажимая \"Присоединиться сейчас\", вы соглашаетесь с нашими <2>положениями и условиями</2>",
}, "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Нажимая \"Далее\", вы соглашаетесь с нашими <2>положениями и условиями</2>",
"common": { "<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 calls</1>": "<0>Почему бы не задать пароль, тем самым сохранив аккаунт?</0><1>Так вы можете оставить своё имя и задать аватар для будущих звонков.</1>",
"audio": "Аудио", "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Создать аккаунт</0> или <2>Зайти как гость</2>",
"avatar": "Аватар", "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Уже есть аккаунт?</0><1><0>Войти с ним</0> или <2>Зайти как гость</2></1>",
"camera": "Камера", "Your recent calls": "Ваши недавние звонки",
"copied": "Скопировано!", "You can't talk at the same time": "Вы не можете говорить одновременно",
"display_name": "Видимое имя", "Yes, join call": "Да, присоединиться",
"home": "Начало", "WebRTC is not supported or is being blocked in this browser.": "WebRTC не поддерживается или заблокирован в этом браузере.",
"loading": "Загрузка…", "Walkie-talkie call name": "Название звонка-рации",
"microphone": "Микрофон", "Walkie-talkie call": "Звонок-рация",
"password": "Пароль", "Waiting for network": "Ожидание сети",
"profile": "Профиль", "Video call name": "Название видео-звонка",
"settings": "Настройки", "Video call": "Видео-звонок",
"username": "Имя пользователя", "Video": "Видео",
"video": "Видео" "Version: {{version}}": "Версия: {{version}}",
}, "Username": "Имя пользователя",
"full_screen_view_description": "<0>Отправка журналов поможет нам найти и устранить проблему.</0>", "User menu": "Меню пользователя",
"full_screen_view_h1": "<0>Упс, что-то пошло не так.</0>", "User ID": "ID пользователя",
"header_label": "Главная Element Call", "Unmute microphone": "Включить микрофон",
"join_existing_call_modal": { "Turn on camera": "Включить камеру",
"join_button": "Да, присоединиться", "Turn off camera": "Отключить камеру",
"text": "Этот звонок уже существует, хотите присоединиться?", "Talk over speaker": "Говорить через динамик",
"title": "Присоединиться к существующему звонку?" "Take me Home": "Перейти в Начало",
}, "Stop sharing screen": "Остановить показ экрана",
"layout_spotlight_label": "Внимание", "Spotlight": "Внимание",
"lobby": { "Speaker {{n}}": "Динамик {{n}}",
"join_button": "Присоединиться" "Speaker": "Динамик",
}, "Spatial audio": "Пространственное аудио",
"logging_in": "Вход…", "Sign out": "Выйти",
"login_auth_links": "<0>Создать аккаунт</0> или <2>Зайти как гость</2>", "Sign in": "Войти",
"login_title": "Вход", "Show call inspector": "Показать инспектор",
"rageshake_request_modal": { "Share screen": "Поделиться экраном",
"body": "У одного из участников звонка есть неполадки. Чтобы лучше диагностировать похожие проблемы, нам нужен журнал отладки.", "Settings": "Настройки",
"title": "Запрос журнала отладки" "Sending…": "Отправка…",
}, "Local volume": "Местная громкость",
"rageshake_send_logs": "Отправить журнал отладки", "Call type menu": "Меню \"Тип звонка\"",
"rageshake_sending": "Отправка…", "More menu": "Полное меню",
"rageshake_sending_logs": "Отправка журнала отладки…", "{{roomName}} - Walkie-talkie call": "{{roomName}} - Звонок-рация",
"recaptcha_dismissed": "Проверка не пройдена", "Include debug logs": "Приложить журнал отладки",
"recaptcha_not_loaded": "Невозможно начать проверку", "Download debug logs": "Скачать журнал отладки",
"register": { "Debug log request": "Запрос журнала отладки",
"passwords_must_match": "Пароли должны совпадать", "Debug log": "Журнал отладки",
"registering": "Регистрация…" "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>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Ой, что-то пошло не так.</0><1>Отправив журнал отладки, вы поможете нам найти проблемный участок.</1>",
"register_auth_links": "<0>Уже есть аккаунт?</0><1><0>Войти с ним</0> или <2>Зайти как гость</2></1>", "Send debug logs": "Отправить журнал отладки",
"register_confirm_password_label": "Подтвердите пароль", "Save": "Сохранить",
"return_home_button": "Вернуться в Начало", "Return to home screen": "Вернуться в Начало",
"room_auth_view_join_button": "Присоединиться сейчас", "Remove": "Удалить",
"screenshare_button_label": "Поделиться экраном", "Recaptcha not loaded": "Невозможно начать проверку",
"select_input_unset_button": "Выберите вариант", "Recaptcha dismissed": "Проверка не пройдена",
"settings": { "Profile": "Профиль",
"developer_settings_label": "Настройки Разработчика", "Press and hold to talk": "Зажмите, чтобы говорить",
"developer_settings_label_description": "Раскрыть настройки разработчика в окне настроек.", "Press and hold spacebar to talk": "Чтобы говорить, нажмите и удерживайте [Пробел]",
"developer_tab_title": "Разработчику", "Passwords must match": "Пароли должны совпадать",
"feedback_tab_body": "Если у вас возникли проблемы или вы просто хотите оставить отзыв, отправьте нам краткое описание ниже.", "Password": "Пароль",
"feedback_tab_description_label": "Ваш отзыв", "Not registered yet? <2>Create an account</2>": "Ещё не зарегистрированы? <2>Создайте аккаунт</2>",
"feedback_tab_h4": "Отправить отзыв", "Not now, return to home screen": "Не сейчас, вернуться в Начало",
"feedback_tab_send_logs_label": "Приложить журнал отладки", "No": "Нет",
"feedback_tab_thank_you": "Спасибо. Мы получили ваш отзыв!", "Mute microphone": "Отключить микрофон",
"feedback_tab_title": "Отзыв", "More": "Больше",
"more_tab_title": "Больше", "Microphone permissions needed to join the call.": "Нужно разрешение на доступ к микрофону для присоединения к звонку.",
"opt_in_description": "<0></0><1></1>Вы можете отозвать согласие, сняв этот флажок. Если вы в данный момент находитесь в разговоре, эта настройка вступит в силу по окончании разговора.", "Microphone {{n}}": "Микрофон {{n}}",
"show_connection_stats_label": "Показать статистику соединения", "Microphone": "Микрофон",
"speaker_device_selection_label": "Динамик" "Login to your account": "Войдите в свой аккаунт",
}, "Login": "Вход",
"star_rating_input_label_one": "{{count}} отмечен", "Loading…": "Загрузка…",
"star_rating_input_label_other": "{{count}} отмеченных", "Loading room…": "Загрузка комнаты…",
"submitting": "Отправляем…", "Leave": "Покинуть",
"unauthenticated_view_body": "Ещё не зарегистрированы? <2>Создайте аккаунт</2>", "Join existing call?": "Присоединиться к существующему звонку?",
"unauthenticated_view_login_button": "Войдите в свой аккаунт", "Join call now": "Присоединиться сейчас",
"version": "Версия: {{version}}", "Join call": "Присоединиться",
"waiting_for_participants": "Ожидание других участников" "Invite people": "Пригласить участников",
"Invite": "Пригласить",
"Inspector": "Инспектор",
"Incompatible versions!": "Несовместимые версии!",
"Incompatible versions": "Несовместимые версии",
"Home": "Начало",
"Having trouble? Help us fix it.": "Есть проблема? Помогите нам её устранить.",
"Go": "Далее",
"Full screen": "Полноэкранный режим",
"Freedom": "Свобода",
"Fetching group call timed out.": "Истекло время ожидания для группового звонка.",
"Exit full screen": "Выйти из полноэкранного режима",
"Display name": "Видимое имя",
"Developer": "Разработчику",
"Details": "Подробности",
"Description (optional)": "Описание (необязательно)",
"Create account": "Создать аккаунт",
"Copy and share this call link": "Скопируйте и поделитесь этой ссылкой на звонок",
"Copied!": "Скопировано!",
"Connection lost": "Соединение потеряно",
"Confirm password": "Подтвердите пароль",
"Close": "Закрыть",
"Change layout": "Изменить расположение",
"Camera/microphone permissions needed to join the call.": "Нужны разрешения на доступ к камере/микрофону для присоединения к звонку.",
"Camera {{n}}": "Камера {{n}}",
"Camera": "Камера",
"Call link copied": "Ссылка на звонок скопирована",
"Avatar": "Аватар",
"Audio": "Аудио",
"Accept microphone permissions to join the call.": "Для присоединения к звонку разрешите доступ к микрофону.",
"Accept camera/microphone permissions to join the call.": "Для присоединения к звонку разрешите доступ к камере/микрофону.",
"{{name}} is talking…": "{{name}} говорит…",
"{{name}} is presenting": "{{name}} показывает",
"{{displayName}}, your call is now ended": "{{displayName}}, ваш звонок завершён",
"{{count}} people connected|other": "{{count}} подключилось",
"{{count}} people connected|one": "{{count}} подключился"
} }

View File

@@ -1,136 +0,0 @@
{
"a11y": {
"user_menu": "Používateľské menu"
},
"action": {
"close": "Zatvoriť",
"copy": "Kopírovať",
"copy_link": "Kopírovať odkaz",
"go": "Prejsť",
"invite": "Pozvať",
"no": "Nie",
"register": "Registrovať sa",
"remove": "Odstrániť",
"sign_in": "Prihlásiť sa",
"sign_out": "Odhlásiť sa",
"submit": "Odoslať"
},
"analytics_notice": "Účasťou v tejto beta verzii súhlasíte so zhromažďovaním anonymných údajov, ktoré použijeme na zlepšenie produktu. Viac informácií o tom, ktoré údaje sledujeme, nájdete v našich <2>Zásadách ochrany osobných údajov</2> a <5>Zásadách používania súborov cookie</5>.",
"app_selection_modal": {
"continue_in_browser": "Pokračovať v prehliadači",
"open_in_app": "Otvoriť v aplikácii",
"text": "Ste pripravení sa pridať?",
"title": "Vybrať aplikáciu"
},
"browser_media_e2ee_unsupported": "Váš webový prehliadač nepodporuje end-to-end šifrovanie médií. Podporované prehliadače sú Chrome, Safari, Firefox >=117",
"call_ended_view": {
"body": "Boli ste odpojení z hovoru",
"create_account_button": "Vytvoriť účet",
"create_account_prompt": "<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 hovoroch</1>",
"feedback_done": "<0> Ďakujeme za vašu spätnú väzbu!</0>",
"feedback_prompt": "<0> Radi si vypočujeme vašu spätnú väzbu, aby sme mohli zlepšiť vaše skúsenosti.</0>",
"headline": "{{displayName}}, váš hovor skončil.",
"not_now_button": "Teraz nie, vrátiť sa na domovskú obrazovku",
"reconnect_button": "Znovu pripojiť",
"survey_prompt": "Ako to išlo?"
},
"call_name": "Názov hovoru",
"common": {
"avatar": "Obrázok",
"camera": "Kamera",
"copied": "Skopírované!",
"display_name": "Zobrazované meno",
"encrypted": "Šifrované",
"home": "Domov",
"loading": "Načítanie…",
"microphone": "Mikrofón",
"password": "Heslo",
"profile": "Profil",
"settings": "Nastavenia",
"unencrypted": "Nie je zašifrované",
"username": "Meno používateľa"
},
"disconnected_banner": "Spojenie so serverom sa stratilo.",
"full_screen_view_description": "<0>Odoslanie záznamov ladenia nám pomôže nájsť problém.</0>",
"full_screen_view_h1": "<0>Hups, niečo sa pokazilo.</0>",
"group_call_loader_failed_heading": "Hovor nebol nájdený",
"group_call_loader_failed_text": "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ľúč.",
"hangup_button_label": "Ukončiť hovor",
"header_label": "Domov Element Call",
"header_participants_label": "Účastníci",
"invite_modal": {
"link_copied_toast": "Odkaz skopírovaný do schránky",
"title": "Pozvať na tento hovor"
},
"join_existing_call_modal": {
"join_button": "Áno, pripojiť sa k hovoru",
"text": "Tento hovor už existuje, chceli by ste sa k nemu pripojiť?",
"title": "Pripojiť sa k existujúcemu hovoru?"
},
"layout_grid_label": "Sieť",
"layout_spotlight_label": "Stredobod",
"lobby": {
"join_button": "Pripojiť sa k hovoru",
"leave_button": "Späť k nedávnym"
},
"logging_in": "Prihlasovanie…",
"login_auth_links": "<0>Vytvoriť konto</0> Alebo <2>Prihlásiť sa ako hosť</2>",
"login_title": "Prihlásiť sa",
"microphone_off": "Mikrofón vypnutý",
"microphone_on": "Mikrofón zapnutý",
"mute_microphone_button_label": "Stlmiť mikrofón",
"rageshake_button_error_caption": "Opakovať odoslanie záznamov",
"rageshake_request_modal": {
"body": "Ď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í.",
"title": "Žiadosť o záznam ladenia"
},
"rageshake_send_logs": "Odoslať záznamy o ladení",
"rageshake_sending": "Odosielanie…",
"rageshake_sending_logs": "Odosielanie záznamov o ladení…",
"rageshake_sent": "Ďakujeme!",
"recaptcha_caption": "Táto stránka je chránená systémom ReCAPTCHA a platia na ňu <2>Pravidlá ochrany osobných údajov spoločnosti Google</2> a <6>Podmienky poskytovania služieb</6>.<9></9>Kliknutím na tlačidlo \"Registrovať sa\" súhlasíte s našou <12>Licenčnou zmluvou s koncovým používateľom (EULA)</12>",
"recaptcha_dismissed": "Recaptcha zamietnutá",
"recaptcha_not_loaded": "Recaptcha sa nenačítala",
"register": {
"passwords_must_match": "Heslá sa musia zhodovať",
"registering": "Registrácia…"
},
"register_auth_links": "<0>Už máte konto?</0><1><0>Prihláste sa</0> Alebo <2>Prihlásiť sa ako hosť</2></1>",
"register_confirm_password_label": "Potvrdiť heslo",
"return_home_button": "Návrat na domovskú obrazovku",
"room_auth_view_eula_caption": "Kliknutím na \"Pripojiť sa k hovoru teraz\" súhlasíte s našou <2>Licenčnou zmluvou s koncovým používateľom (EULA)</2>",
"room_auth_view_join_button": "Pripojiť sa k hovoru teraz",
"screenshare_button_label": "Zdieľať obrazovku",
"select_input_unset_button": "Vyberte možnosť",
"settings": {
"developer_settings_label": "Nastavenia pre vývojárov",
"developer_settings_label_description": "Zobraziť nastavenia pre vývojárov v okne nastavení.",
"developer_tab_title": "Vývojár",
"feedback_tab_body": "Ak máte problémy alebo jednoducho chcete poskytnúť spätnú väzbu, pošlite nám krátky popis nižšie.",
"feedback_tab_description_label": "Vaša spätná väzba",
"feedback_tab_h4": "Odoslať spätnú väzbu",
"feedback_tab_send_logs_label": "Zahrnúť záznamy o ladení",
"feedback_tab_thank_you": "Ďakujeme, dostali sme vašu spätnú väzbu!",
"feedback_tab_title": "Spätná väzba",
"more_tab_title": "Viac",
"opt_in_description": "<0></0><1></1>Súhlas môžete odvolať zrušením označenia tohto políčka. Ak práve prebieha hovor, toto nastavenie nadobudne platnosť po skončení hovoru.",
"show_connection_stats_label": "Zobraziť štatistiky pripojenia",
"speaker_device_selection_label": "Reproduktor"
},
"star_rating_input_label_one": "{{count}} hviezdička",
"star_rating_input_label_other": "{{count}} hviezdičiek",
"start_new_call": "Spustiť nový hovor",
"start_video_button_label": "Spustiť video",
"stop_screenshare_button_label": "Zdieľanie obrazovky",
"stop_video_button_label": "Zastaviť video",
"submitting": "Odosielanie…",
"unauthenticated_view_body": "Ešte nie ste zaregistrovaný? <2>Vytvorte si účet</2>",
"unauthenticated_view_eula_caption": "Kliknutím na tlačidlo \"Prejsť\" vyjadrujete súhlas s našou <2>Licenčnou zmluvou s koncovým používateľom (EULA)</2>",
"unauthenticated_view_login_button": "Prihláste sa do svojho konta",
"unmute_microphone_button_label": "Zrušiť stlmenie mikrofónu",
"version": "Verzia: {{version}}",
"video_tile": {
"sfu_participant_local": "Vy"
},
"waiting_for_participants": "Čaká sa na ďalších účastníkov…"
}

View File

@@ -1,7 +0,0 @@
{
"call_ended_view": {
"headline": "{{displayName}}, ditt samtal har avslutats."
},
"star_rating_input_label_one": "{{count}} stjärna",
"star_rating_input_label_other": "{{count}} stjärnor"
}

View File

@@ -1,63 +1,102 @@
{ {
"action": { "<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 calls</1>": "<0>Hesabınızı tutmak için niye bir parola açmıyorsunuz?</0><1>Böylece ileriki aramalarda adınızı ve avatarınızı kullanabileceksiniz</1>",
"close": "Kapat", "Accept camera/microphone permissions to join the call.": "Aramaya katılmanız için kamera/mikrofon erişimine izin verin.",
"go": "Git", "Accept microphone permissions to join the call.": "Aramaya katılmak için mikrofon erişim izni verin.",
"no": "Hayır", "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.",
"register": "Kaydol", "Audio": "Ses",
"remove": "Çıkar", "Avatar": "Avatar",
"sign_in": "Gir", "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "\"Git\"e tıklayarak,<2>hükümler ve koşullar</2>ı kabul etmiş sayılırsınız",
"sign_out": ık" "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "\"Şimdi katıl\"a tıklayarak, <2>hükümler ve koşullar</2>ı kabul etmiş sayılırsınız",
}, "Call link copied": "Arama bağlantısı kopyalandı",
"call_ended_view": { "Call type menu": "Arama tipi menüsü",
"create_account_button": "Hesap aç", "Camera": "Kamera",
"create_account_prompt": "<0>Hesabınızı tutmak için niye bir parola açmıyorsunuz?</0><1>Böylece ileriki aramalarda adınızı ve avatarınızı kullanabileceksiniz</1>", "Camera {{n}}": "{{n}}. kamera",
"not_now_button": "Şimdi değil, ev ekranına dön" "Camera/microphone permissions needed to join the call.": "Aramaya katılmak için kamera/mikrofon izinleri gerek.",
}, "Change layout": "Yerleşimi değiştir",
"common": { "Close": "Kapat",
"audio": "Ses", "Confirm password": "Parolayı tekrar edin",
"camera": "Kamera", "Connection lost": "Bağlantı koptu",
"copied": "Kopyalandı", "Copied!": "Kopyalandı",
"display_name": "Ekran adı", "Copy and share this call link": "Arama bağlantısını kopyala ve paylaş",
"home": "Ev", "Create account": "Hesap aç",
"loading": "Yükleniyor…", "Debug log": "Hata ayıklama kütüğü",
"microphone": "Mikrofon", "Debug log request": "Hata ayıklama kütük istemi",
"password": "Parola", "Description (optional)": "Tanım (isteğe bağlı)",
"settings": "Ayarlar" "Details": "Ayrıntı",
}, "Developer": "Geliştirici",
"join_existing_call_modal": { "Display name": "Ekran adı",
"text": "Bu arama zaten var, katılmak ister misiniz?", "Download debug logs": "Hata ayıklama kütüğünü indir",
"title": "Mevcut aramaya katıl?" "Entering room…": "Odaya giriliyor…",
}, "Exit full screen": "Tam ekranı terk et",
"lobby": { "Fetching group call timed out.": "Grup çağrısı zaman aşımına uğradı.",
"join_button": "Aramaya katıl" "Freedom": "Özgürlük",
}, "Full screen": "Tam ekran",
"logging_in": "Giriliyor…", "Go": "Git",
"login_auth_links": "<0>Hesap oluştur</0> yahut <2>Konuk olarak gir</2>", "Grid layout menu": "Izgara plan menü",
"login_title": "Gir", "Having trouble? Help us fix it.": "Sorun mu var? Çözmemize yardım edin.",
"rageshake_request_modal": { "Home": "Ev",
"body": "Bu aramadaki başka bir kullanıcı sorun yaşıyor. Sorunu daha iyi çözebilmemiz için hata ayıklama kütüğünü almak isteriz.", "Include debug logs": "Hata ayıklama kütüğünü dahil et",
"title": "Hata ayıklama kütük istemi" "Incompatible versions": "Uyumsuz sürümler",
}, "Incompatible versions!": "Sürüm uyumsuz!",
"rageshake_send_logs": "Hata ayıklama kütüğünü gönder", "Inspector": "Denetçi",
"rageshake_sending": "Gönderiliyor…", "Invite people": "Kişileri davet et",
"recaptcha_dismissed": "reCAPTCHA atlandı", "Join call": "Aramaya katıl",
"recaptcha_not_loaded": "reCAPTCHA yüklenmedi", "Join call now": "Aramaya katıl",
"register": { "Join existing call?": "Mevcut aramaya katıl?",
"passwords_must_match": "Parolalar aynı olmalı", "Leave": ık",
"registering": "Kaydediyor…" "Loading room…": "Oda yükleniyor…",
}, "Loading…": "Yükleniyor…",
"register_auth_links": "<0>Mevcut hesabınız mı var?</0><1><0>Gir</0> yahut <2>Konuk girişi</2></1>", "Local volume": "Yerel ses seviyesi",
"register_confirm_password_label": "Parolayı tekrar edin", "Logging in…": "Giriliyor…",
"return_home_button": "Ev ekranına geri dön", "Login": "Gir",
"room_auth_view_join_button": "Aramaya katıl", "Login to your account": "Hesabınıza girin",
"screenshare_button_label": "Ekran paylaş", "Microphone": "Mikrofon",
"select_input_unset_button": "Bir seçenek seç", "Microphone permissions needed to join the call.": "Aramaya katılmak için mikrofon erişim izni gerek.",
"settings": { "Microphone {{n}}": "{{n}}. mikrofon",
"developer_tab_title": "Geliştirici", "More": "Daha",
"feedback_tab_h4": "Geri bildirim ver", "More menu": "Daha fazla",
"feedback_tab_send_logs_label": "Hata ayıklama kütüğünü dahil et", "Mute microphone": "Mikrofonu kapat",
"more_tab_title": "Daha" "No": "Hayır",
}, "Not now, return to home screen": "Şimdi değil, ev ekranına dön",
"unauthenticated_view_body": "Kaydolmadınız mı? <2>Hesap açın</2>", "Not registered yet? <2>Create an account</2>": "Kaydolmadınız mı? <2>Hesap açın</2>",
"unauthenticated_view_login_button": "Hesabınıza girin" "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ı",
"Press and hold spacebar to talk": "Konuşmak için boşluk çubuğunu basılı tutun",
"Press and hold to talk": "Konuşmak için basılı tutun",
"Recaptcha dismissed": "reCAPTCHA atlandı",
"Recaptcha not loaded": "reCAPTCHA yüklenmedi",
"Register": "Kaydol",
"Registering…": "Kaydediyor…",
"Release spacebar key to stop": "Kesmek için boşluk tuşunu bırakın",
"Release to stop": "Kesmek için bırakın",
"Remove": ıkar",
"Return to home screen": "Ev ekranına geri dön",
"Save": "Kaydet",
"Saving…": "Kaydediliyor…",
"Select an option": "Bir seçenek seç",
"Send debug logs": "Hata ayıklama kütüğünü gönder",
"Sending…": "Gönderiliyor…",
"Settings": "Ayarlar",
"Share screen": "Ekran paylaş",
"Show call inspector": "Arama denetçisini göster",
"Sign in": "Gir",
"Sign out": ık",
"Spatial audio": "Uzamsal ses",
"Stop sharing screen": "Ekran paylaşmayı terk et",
"Submit feedback": "Geri bildirim ver",
"Submitting feedback…": "Geri bildirimler gönderiliyor…",
"Take me Home": "Ev ekranına gir",
"Talking…": "Konuşuyor…",
"Thanks! We'll get right on it.": "Sağol! Bununla ilgileneceğiz.",
"This call already exists, would you like to join?": "Bu arama zaten var, katılmak ister misiniz?",
"{{count}} people connected|one": "{{count}} kişi bağlı",
"{{count}} people connected|other": "{{count}} kişi bağlı",
"{{displayName}}, your call is now ended": "Aramanız bitti, {{displayName]}!",
"{{names}}, {{name}}": "{{names}}, {{name}}",
"{{name}} is presenting": "{{name}} sunuyor",
"{{name}} is talking…": "{{name}} konuşuyor…",
"<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Hoop, bir şeyler yanlış.</0><1>Hata ayıklama kütüğünü göndermek sorunu incelememize yardımcı olur.</1>",
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Hesap oluştur</0> yahut <2>Konuk olarak gir</2>",
"<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Mevcut hesabınız mı var?</0><1><0>Gir</0> yahut <2>Konuk girişi</2></1>"
} }

View File

@@ -1,138 +1,134 @@
{ {
"a11y": { "Loading…": "Завантаження…",
"user_menu": "Меню користувача" "Your recent calls": "Ваші недавні виклики",
}, "You can't talk at the same time": "Не можна говорити одночасно",
"action": { "Yes, join call": "Так, приєднатися до виклику",
"close": "Закрити", "WebRTC is not supported or is being blocked in this browser.": "WebRTC не підтримується або блокується в цьому браузері.",
"copy": "Копіювати", "Walkie-talkie call name": "Назва виклику-рації",
"copy_link": "Скопіювати посилання", "Walkie-talkie call": "Виклик-рація",
"go": "Далі", "Waiting for other participants…": "Очікування на інших учасників…",
"invite": "Запросити", "Waiting for network": "Очікування мережі",
"no": "Ні", "Video call name": "Назва відеовиклику",
"register": "Зареєструватися", "Video call": "Відеовиклик",
"remove": "Вилучити", "Video": "Відео",
"sign_in": "Увійти", "Version: {{version}}": "Версія: {{version}}",
"sign_out": "Вийти", "Username": "Ім'я користувача",
"submit": "Надіслати" "User menu": "Меню користувача",
}, "User ID": "ID користувача",
"analytics_notice": "Користуючись дочасним доступом, ви даєте згоду на збір анонімних даних, які ми використовуємо для вдосконалення продукту. Ви можете знайти більше інформації про те, які дані ми відстежуємо в нашій <2>Політиці Приватності</2> і нашій <5>Політиці про куки</5>.", "Unmute microphone": "Увімкнути мікрофон",
"app_selection_modal": { "Turn on camera": "Увімкнути камеру",
"continue_in_browser": "Продовжити у браузері", "Turn off camera": "Вимкнути камеру",
"open_in_app": "Відкрити у застосунку", "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "Це призведе до того, що звук мовця здаватиметься таким, ніби він надходить з того місця, де розміщено його плитку на екрані. (Експериментальна можливість: це може вплинути на стабільність звуку.)",
"text": "Готові приєднатися?", "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy</2> and <6>Terms of Service</6> apply.<9></9>By clicking \"Register\", you agree to our <12>Terms and conditions</12>": "Цей сайт захищений ReCAPTCHA і до нього застосовується <2>Політика приватності</2> і <6>Умови надання послуг</6> Google.<9></9>Натискаючи кнопку «Зареєструватися», ви погоджуєтеся з нашими <12>Умовами та положеннями</12>",
"title": "Вибрати застосунок" "This call already exists, would you like to join?": "Цей виклик уже існує, бажаєте приєднатися?",
}, "Thanks! We'll get right on it.": "Дякуємо! Ми зараз же візьмемося за це.",
"browser_media_e2ee_unsupported": "Ваш браузер не підтримує наскрізне шифрування мультимедійних даних. Підтримувані браузери: Chrome, Safari, Firefox >=117", "Talking…": "Говоріть…",
"call_ended_view": { "Talk over speaker": "Говорити через динамік",
"body": "Вас від'єднано від виклику", "Take me Home": "Перейти до Домівки",
"create_account_button": "Створити обліковий запис", "Submitting feedback…": "Надсилання відгуку…",
"create_account_prompt": "<0>Чому б не завершити, налаштувавши пароль для збереження свого облікового запису?</0><1>Ви зможете зберегти своє ім'я та встановити аватарку для подальшого користування під час майбутніх викликів</1>", "Submit feedback": "Надіслати відгук",
"feedback_done": "<0>Дякуємо за ваш відгук!</0>", "Stop sharing screen": "Припинити показ екрана",
"feedback_prompt": "<0>Ми будемо раді почути ваші відгуки, щоб поліпшити роботу застосунку.</0>", "Spotlight": "У центрі уваги",
"headline": "{{displayName}}, ваш виклик завершено.", "Speaker {{n}}": "Динамік {{n}}",
"not_now_button": "Не зараз, повернутися на екран домівки", "Speaker": "Динамік",
"reconnect_button": "Під'єднати повторно", "Spatial audio": "Просторовий звук",
"survey_prompt": "Вам усе сподобалось?" "Sign out": "Вийти",
}, "Sign in": "Увійти",
"call_name": "Назва виклику", "Show call inspector": "Показати інспектора виклику",
"common": { "Share screen": "Поділитися екраном",
"audio": "Звук", "Settings": "Налаштування",
"avatar": "Аватар", "Sending…": "Надсилання…",
"camera": "Камера", "Sending debug logs…": "Надсилання журналу зневадження…",
"copied": "Скопійовано!", "Send debug logs": "Надіслати журнал зневадження",
"display_name": "Псевдонім", "Select an option": "Вибрати опцію",
"encrypted": "Зашифровано", "Saving…": "Збереження…",
"home": "Домівка", "Save": "Зберегти",
"loading": "Завантаження…", "Return to home screen": "Повернутися на екран домівки",
"microphone": "Мікрофон", "Remove": "Вилучити",
"password": "Пароль", "Release to stop": "Відпустіть, щоб закінчити",
"profile": рофіль", "Release spacebar key to stop": "Відпустіть пробіл, щоб закінчити",
"settings": "Налаштування", "Registering": "Реєстрація…",
"unencrypted": "Не зашифровано", "Register": "Зареєструватися",
"username": "Ім'я користувача", "Recaptcha not loaded": "Recaptcha не завантажено",
"video": "Відео" "Recaptcha dismissed": "Recaptcha не пройдено",
}, "Profile": "Профіль",
"disconnected_banner": "Втрачено зв'язок з сервером.", "Press and hold to talk over {{name}}": "Затисніть, щоб говорити одночасно з {{name}}",
"full_screen_view_description": "<0>Надсилання журналів налагодження допоможе нам виявити проблему.</0>", "Press and hold to talk": "Затисніть, щоб говорити",
"full_screen_view_h1": "<0>Йой, щось пішло не за планом.</0>", "Press and hold spacebar to talk over {{name}}": "Щоб говорити одночасно з {{name}}, затисніть пробіл",
"group_call_loader_failed_heading": "Виклик не знайдено", "Press and hold spacebar to talk": "Затисніть пробіл, щоб говорити",
"group_call_loader_failed_text": "Відтепер виклики захищено наскрізним шифруванням, і їх потрібно створювати з домашньої сторінки. Це допомагає переконатися, що всі користувачі використовують один і той самий ключ шифрування.", "Passwords must match": "Паролі відрізняються",
"hangup_button_label": "Завершити виклик", "Password": "Пароль",
"header_label": "Домівка Element Call", "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>",
"header_participants_label": "Учасники", "Not registered yet? <2>Create an account</2>": "Ще не зареєстровані? <2>Створіть обліковий запис</2>",
"invite_modal": { "Not now, return to home screen": "Не зараз, повернутися на екран домівки",
"link_copied_toast": "Посилання скопійовано до буфера обміну", "No": "Ні",
"title": "Запросити до цього виклику" "Mute microphone": "Заглушити мікрофон",
}, "More menu": "Усе меню",
"join_existing_call_modal": { "More": "Докладніше",
"join_button": "Так, приєднатися до виклику", "Microphone permissions needed to join the call.": "Для участі у виклику необхідний дозвіл на користування мікрофоном.",
"text": "Цей виклик уже існує, бажаєте приєднатися?", "Microphone {{n}}": "Мікрофон {{n}}",
"title": "Приєднатися до наявного виклику?" "Microphone": "Мікрофон",
}, "Login to your account": "Увійдіть до свого облікового запису",
"layout_grid_label": "Сітка", "Login": "Увійти",
"layout_spotlight_label": "У центрі уваги", "Logging in…": "Вхід…",
"lobby": { "Local volume": "Локальна гучність",
"join_button": "Приєднатися до виклику", "Loading room…": "Завантаження кімнати…",
"leave_button": "Повернутися до недавніх" "Leave": "Вийти",
}, "Join existing call?": "Приєднатися до наявного виклику?",
"logging_in": "Вхід…", "Join call now": "Приєднатися до виклику зараз",
"login_auth_links": "<0>Створити обліковий запис</0> або <2>Отримати доступ як гість</2>", "Join call": "Приєднатися до виклику",
"login_title": "Увійти", "Invite people": "Запросити людей",
"microphone_off": "Мікрофон вимкнено", "Invite": "Запросити",
"microphone_on": "Мікрофон увімкнено", "Inspector": "Інспектор",
"mute_microphone_button_label": "Вимкнути мікрофон", "Incompatible versions!": "Несумісні версії!",
"rageshake_button_error_caption": "Повторити надсилання журналів", "Incompatible versions": "Несумісні версії",
"rageshake_request_modal": { "Include debug logs": "Долучити журнали зневадження",
"body": "Інший користувач у цьому виклику має проблему. Щоб краще визначити ці проблеми, ми хотіли б зібрати журнал налагодження.", "Home": "Домівка",
"title": "Запит журналу налагодження" "Having trouble? Help us fix it.": "Проблеми? Допоможіть нам це виправити.",
}, "Grid layout menu": "Меню у вигляді сітки",
"rageshake_send_logs": "Надіслати журнал налагодження", "Go": "Далі",
"rageshake_sending": "Надсилання…", "Full screen": "Повноекранний режим",
"rageshake_sending_logs": "Надсилання журналу налагодження…", "Freedom": "Свобода",
"rageshake_sent": "Дякуємо!", "Fetching group call timed out.": "Вичерпано час очікування групового виклику.",
"recaptcha_caption": "Цей сайт захищений ReCAPTCHA і до нього застосовується <2>Політика приватності</2> і <6>Умови надання послуг</6> Google.<9></9>Натискаючи \"Зареєструватися\", ви погоджуєтеся з нашою <12>Ліцензійною угодою з кінцевим користувачем (EULA)</12>", "Exit full screen": "Вийти з повноекранного режиму",
"recaptcha_dismissed": "Recaptcha не пройдено", "Entering room…": "Вхід у кімнату…",
"recaptcha_not_loaded": "Recaptcha не завантажено", "Download debug logs": "Завантажити журнали зневадження",
"register": { "Display name": "Показуване ім'я",
"passwords_must_match": "Паролі відрізняються", "Developer": "Розробнику",
"registering": "Реєстрація…" "Details": "Подробиці",
}, "Description (optional)": "Опис (необов'язково)",
"register_auth_links": "<0>Уже маєте обліковий запис?</0><1><0>Увійти</0> Or <2>Отримати доступ як гість</2></1>", "Debug log request": "Запит журналу зневадження",
"register_confirm_password_label": "Підтвердити пароль", "Debug log": "Журнал зневадження",
"return_home_button": "Повернутися на екран домівки", "Create account": "Створити обліковий запис",
"room_auth_view_eula_caption": "Натискаючи \"Приєднатися до виклику зараз\", ви погоджуєтеся з нашою <2>Ліцензійною угодою з кінцевим користувачем (EULA)</2>", "Copy and share this call link": "Скопіювати та поділитися цим посиланням на виклик",
"room_auth_view_join_button": "Приєднатися до виклику зараз", "Copied!": "Скопійовано!",
"screenshare_button_label": "Поділитися екраном", "Connection lost": "З'єднання розірвано",
"select_input_unset_button": "Вибрати опцію", "Confirm password": "Підтвердити пароль",
"settings": { "Close": "Закрити",
"developer_settings_label": "Налаштування розробника", "Change layout": "Змінити макет",
"developer_settings_label_description": "Відкрийте налаштування розробника у вікні налаштувань.", "Camera/microphone permissions needed to join the call.": "Для приєднання до виклику необхідні дозволи камери/мікрофона.",
"developer_tab_title": "Розробнику", "Camera {{n}}": "Камера {{n}}",
"feedback_tab_body": "Якщо у вас виникли проблеми або ви просто хочете залишити відгук, надішліть нам короткий опис нижче.", "Camera": "Камера",
"feedback_tab_description_label": "Ваш відгук", "Call type menu": "Меню типу виклику",
"feedback_tab_h4": "Надіслати відгук", "Call link copied": "Посилання на виклик скопійовано",
"feedback_tab_send_logs_label": "Долучити журнали налагодження", "By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Натиснувши «Приєднатися до виклику зараз», ви погодитеся з нашими <2>Умовами та положеннями</2>",
"feedback_tab_thank_you": "Дякуємо, ми отримали ваш відгук!", "By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Натиснувши «Далі», ви погодитеся з нашими <2>Умовами та положеннями</2>",
"feedback_tab_title": "Відгук", "Avatar": "Аватар",
"more_tab_title": "Докладніше", "Audio": "Звук",
"opt_in_description": "<0></0><1></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.": "Інший користувач у цьому виклику має проблему. Щоб краще визначити ці проблеми, ми хотіли б зібрати журнал зневадження.",
"show_connection_stats_label": "Показати стан з'єднання", "Accept microphone permissions to join the call.": "Надайте дозволи на використання мікрофонів для приєднання до виклику.",
"speaker_device_selection_label": "Динамік" "Accept camera/microphone permissions to join the call.": "Надайте дозвіл на використання камери/мікрофона для приєднання до виклику.",
}, "<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 calls</1>": "<0>Чому б не завершити, налаштувавши пароль для збереження свого облікового запису?</0><1>Ви зможете зберегти своє ім'я та встановити аватарку для подальшого користування під час майбутніх викликів</1>",
"star_rating_input_label_one": "{{count}} зірок", "<0>Oops, something's gone wrong.</0><1>Submitting debug logs will help us track down the problem.</1>": "<0>Халепа, щось пішло не так.</0><1>Надсилання журналів зневадження допоможе нам виявити проблему.</1>",
"star_rating_input_label_other": "{{count}} зірок", "<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Створити обліковий запис</0> або <2>Отримати доступ як гість</2>",
"start_new_call": "Розпочати новий виклик", "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Уже маєте обліковий запис?</0><1><0>Увійти</0> Or <2>Отримати доступ як гість</2></1>",
"start_video_button_label": "Розпочати відео", "{{roomName}} - Walkie-talkie call": "{{roomName}} - Виклик-рація",
"stop_screenshare_button_label": "Презентація екрана", "{{names}}, {{name}}": "{{names}}, {{name}}",
"stop_video_button_label": "Зупинити відео", "{{name}} is talking…": "{{name}} балакає…",
"submitting": "Надсилання…", "{{name}} is presenting": "{{name}} показує",
"unauthenticated_view_body": "Ще не зареєстровані? <2>Створіть обліковий запис</2>", "{{displayName}}, your call is now ended": "{{displayName}}, ваш виклик завершено",
"unauthenticated_view_eula_caption": "Натискаючи \"Далі\", ви погоджуєтеся з нашою <2>Ліцензійною угодою з кінцевим користувачем (EULA)</2>", "{{count}} people connected|other": "{{count}} під'єдналися",
"unauthenticated_view_login_button": "Увійдіть до свого облікового запису", "{{count}} people connected|one": "{{count}} під'єднується",
"unmute_microphone_button_label": "Увімкнути мікрофон", "<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Приєднатися до виклику зараз</0><1>Or</1><2>Скопіювати посилання на виклик і приєднатися пізніше</2>",
"version": "Версія: {{version}}", "{{name}} (Connecting...)": "{{name}} (З'єднання...)"
"video_tile": {
"sfu_participant_local": "Ви"
},
"waiting_for_participants": "Очікування на інших учасників…"
} }

View File

@@ -1,75 +0,0 @@
{
"action": {
"close": "Đóng",
"copy": "Sao chép",
"no": "Không",
"register": "Đăng ký",
"sign_in": "Đăng nhập",
"sign_out": "Đăng xuất",
"submit": "Gửi"
},
"call_ended_view": {
"create_account_button": "Tạo tài khoản",
"create_account_prompt": "<0>Tại sao lại không hoàn thiện bằng cách đặt mật khẩu để giữ tài khoản của bạn?</0><1>Bạn sẽ có thể giữ tên và đặt ảnh đại diện cho những cuộc gọi tiếp theo.</1>",
"feedback_done": "<0>Cảm hơn vì đã phản hồi!</0>",
"feedback_prompt": "<0>Chúng tôi muốn nghe phản hồi của bạn để còn cải thiện trải nghiệm cho bạn.</0>",
"headline": "{{displayName}}, cuộc gọi đã kết thúc."
},
"common": {
"audio": "Âm thanh",
"avatar": "Ảnh đại diện",
"camera": "Máy quay",
"copied": "Đã sao chép!",
"display_name": "Tên hiển thị",
"loading": "Đang tải…",
"microphone": "Micrô",
"password": "Mật khẩu",
"profile": "Hồ sơ",
"settings": "Cài đặt",
"username": "Tên người dùng",
"video": "Truyền hình"
},
"full_screen_view_description": "<0>Gửi nhật ký gỡ lỗi sẽ giúp chúng tôi theo dõi vấn đề.</0>",
"full_screen_view_h1": "<0>Ối, có cái gì đó sai.</0>",
"join_existing_call_modal": {
"join_button": "Vâng, tham gia cuộc gọi",
"text": "Cuộc gọi đã tồn tại, bạn có muốn tham gia không?",
"title": "Tham gia cuộc gọi?"
},
"layout_spotlight_label": "Tiêu điểm",
"lobby": {
"join_button": "Tham gia cuộc gọi"
},
"logging_in": "Đang đăng nhập…",
"login_auth_links": "<0>Tạo tài khoản</0> Hay <2>Tham gia dưới tên khác</2>",
"login_title": "Đăng nhập",
"rageshake_request_modal": {
"body": "Một người dùng khác trong cuộc gọi đang gặp vấn đề. Để có thể chẩn đoán tốt hơn chúng tôi muốn thu thập nhật ký gỡ lỗi.",
"title": "Yêu cầu nhật ký gỡ lỗi"
},
"rageshake_sending": "Đang gửi…",
"recaptcha_not_loaded": "Chưa tải được Recaptcha",
"register": {
"passwords_must_match": "Mật khẩu phải khớp",
"registering": "Đang đăng ký…"
},
"register_auth_links": "<0>Đã có tài khoản?</0><1><0>Đăng nhập</0> Hay <2>Tham gia dưới tên Khách</2></1>",
"register_confirm_password_label": "Xác nhận mật khẩu",
"room_auth_view_join_button": "Tham gia cuộc gọi",
"screenshare_button_label": "Chia sẻ màn hình",
"settings": {
"developer_settings_label": "Cài đặt phát triển",
"developer_tab_title": "Nhà phát triển",
"feedback_tab_description_label": "Phản hồi của bạn",
"feedback_tab_h4": "Gửi phản hồi",
"feedback_tab_send_logs_label": "Kèm theo nhật ký gỡ lỗi",
"feedback_tab_thank_you": "Cảm ơn, chúng tôi đã nhận được phản hồi!",
"feedback_tab_title": "Phản hồi",
"speaker_device_selection_label": "Loa"
},
"submitting": "Đang gửi…",
"unauthenticated_view_body": "Chưa đăng ký? <2>Tạo tài khoản</2>",
"unauthenticated_view_login_button": "Đăng nhập vào tài khoản của bạn",
"version": "Phiên bản: {{version}}",
"waiting_for_participants": "Đang đợi những người khác…"
}

View File

@@ -1,131 +0,0 @@
{
"a11y": {
"user_menu": "用户菜单"
},
"action": {
"close": "关闭",
"copy": "复制",
"go": "开始",
"no": "否",
"register": "注册",
"remove": "移除",
"sign_in": "登录",
"sign_out": "登出",
"submit": "提交"
},
"analytics_notice": "参与测试即表示您同意我们收集匿名数据,用于改进产品。您可以在我们的<2>隐私政策</2>和<5>Cookie政策</5>中找到有关我们跟踪哪些数据以及更多信息。",
"app_selection_modal": {
"continue_in_browser": "在浏览器中继续",
"open_in_app": "在应用中打开",
"text": "准备好加入了吗?",
"title": "选择应用程序"
},
"browser_media_e2ee_unsupported": "您的浏览器不支持媒体端对端加密。支持的浏览器有 Chrome、Safari、Firefox >=117",
"call_ended_view": {
"body": "通话已中断",
"create_account_button": "创建账户",
"create_account_prompt": "<0>为何不设置密码来保留你的账户?</0><1>保留昵称并设置头像,以便在未来的通话中使用。</1>",
"feedback_done": "<0>感谢反馈!</0>",
"feedback_prompt": "<0>我们需要您的反馈以提升用户体验。</0>",
"headline": "{{displayName}},通话已结束。",
"not_now_button": "暂不,返回主页",
"reconnect_button": "重新连接",
"survey_prompt": "进展如何?"
},
"call_name": "通话名称",
"common": {
"audio": "音频",
"avatar": "头像",
"camera": "摄像头",
"copied": "已复制!",
"display_name": "显示名称",
"encrypted": "已加密",
"home": "主页",
"loading": "加载中……",
"microphone": "麦克风",
"password": "密码",
"profile": "个人信息",
"settings": "设置",
"unencrypted": "未加密",
"username": "用户名",
"video": "视频"
},
"disconnected_banner": "与服务器的连接中断。",
"full_screen_view_description": "<0>提交日志以帮助我们修复问题。</0>",
"full_screen_view_h1": "<0>哎哟,出问题了。</0>",
"group_call_loader_failed_heading": "未找到通话",
"group_call_loader_failed_text": "现在,通话是端对端加密的,需要从主页创建。这有助于确保每个人都使用相同的加密密钥。",
"hangup_button_label": "通话结束",
"header_label": "Element Call主页",
"join_existing_call_modal": {
"join_button": "是,加入通话",
"text": "该通话已存在,你想加入吗?",
"title": "是否加入现有的通话?"
},
"layout_grid_label": "网格",
"layout_spotlight_label": "聚焦模式",
"lobby": {
"join_button": "加入通话",
"leave_button": "返回最近通话"
},
"logging_in": "登录中……",
"login_auth_links": "<0>创建账户</0> Or <2>以访客身份继续</2>",
"login_title": "登录",
"microphone_off": "麦克风关闭",
"microphone_on": "麦克风开启",
"mute_microphone_button_label": "静音麦克风",
"rageshake_button_error_caption": "重传日志",
"rageshake_request_modal": {
"body": "这个通话中的另一个用户出现了问题。为了更好地诊断这些问题,我们想收集调试日志。",
"title": "调试日志请求"
},
"rageshake_send_logs": "发送调试日志",
"rageshake_sending": "正在发送……",
"rageshake_sending_logs": "正在发送调试日志……",
"rageshake_sent": "谢谢!",
"recaptcha_caption": "该站点受 ReCAPTCHA 保护适用于Google的 <2>隐私政策</2>和 <6>服务条款</6>。 <9></9>点击 \"注册\",即表示您同意我们的 <12>最终用户许可协议 (EULA)</12>",
"recaptcha_dismissed": "人机验证失败",
"recaptcha_not_loaded": "recaptcha未加载",
"register": {
"passwords_must_match": "密码必须匹配",
"registering": "正在注册……"
},
"register_auth_links": "<0>已有账户?</0><1><0>登录</0> Or <2>以访客身份继续</2></1>",
"register_confirm_password_label": "确认密码",
"return_home_button": "返回主页",
"room_auth_view_eula_caption": "点击 \"加入通话\",即表示您同意我们的<2>最终用户许可协议 (EULA)</2>",
"room_auth_view_join_button": "现在加入通话",
"screenshare_button_label": "屏幕共享",
"select_input_unset_button": "选择一个选项",
"settings": {
"developer_settings_label": "开发者设置",
"developer_settings_label_description": "在设置中显示开发者设置。",
"developer_tab_title": "开发者",
"feedback_tab_body": "如果遇到问题或想提供一些反馈意见,请在下面向我们发送简短描述。",
"feedback_tab_description_label": "您的反馈",
"feedback_tab_h4": "提交反馈",
"feedback_tab_send_logs_label": "包含调试日志",
"feedback_tab_thank_you": "谢谢,我们收到了反馈!",
"feedback_tab_title": "反馈",
"more_tab_title": "更多",
"opt_in_description": "<0></0><1></1>您可以取消选中复选框来撤回同意。如果正在通话中,此设置将在通话结束时生效。",
"show_connection_stats_label": "显示连接统计信息",
"speaker_device_selection_label": "发言人"
},
"star_rating_input_label_one": "{{count}} 个星",
"star_rating_input_label_other": "{{count}} 个星",
"start_new_call": "开始新通话",
"start_video_button_label": "开始视频",
"stop_screenshare_button_label": "屏幕共享",
"stop_video_button_label": "停止视频",
"submitting": "提交中…",
"unauthenticated_view_body": "还没有注册? <2>创建账户<2>",
"unauthenticated_view_eula_caption": "点击 \"开始\",即表示您同意我们的<2>最终用户许可协议 (EULA)</2>",
"unauthenticated_view_login_button": "登录你的账户",
"unmute_microphone_button_label": "取消麦克风静音",
"version": "版本:{{version}}",
"video_tile": {
"sfu_participant_local": "你"
},
"waiting_for_participants": "等待其他参与者……"
}

View File

@@ -1,138 +0,0 @@
{
"a11y": {
"user_menu": "使用者選單"
},
"action": {
"close": "關閉",
"copy": "複製",
"copy_link": "複製連結",
"go": "前往",
"invite": "邀請",
"no": "否",
"register": "註冊",
"remove": "移除",
"sign_in": "登入",
"sign_out": "登出",
"submit": "遞交"
},
"analytics_notice": "參與此測試版即表示您同意蒐集匿名資料,我們使用這些資料來改進產品。您可以在我們的<2>隱私政策</2>與我們的 <5>Cookie 政策</5> 中找到關於我們追蹤哪些資料的更多資訊。",
"app_selection_modal": {
"continue_in_browser": "在瀏覽器中繼續",
"open_in_app": "在應用程式中開啟",
"text": "準備好加入了?",
"title": "選取應用程式"
},
"browser_media_e2ee_unsupported": "您的網路瀏覽器不支援媒體端到端加密。支援的瀏覽器包含了 Chrome、Safari、Firefox >=117",
"call_ended_view": {
"body": "您已從通話斷線",
"create_account_button": "建立帳號",
"create_account_prompt": "<0>何不設定密碼以保留此帳號?</0><1>您可以保留暱稱並設定頭像,以便未來通話時使用</1>",
"feedback_done": "<0>感謝您的回饋!</0>",
"feedback_prompt": "<0>我們想要聽到您的回饋,如此我們才能改善您的體驗。</0>",
"headline": "{{displayName}},您的通話已結束。",
"not_now_button": "現在不行,回到首頁",
"reconnect_button": "重新連線",
"survey_prompt": "進展如何?"
},
"call_name": "通話名稱",
"common": {
"audio": "語音",
"avatar": "大頭照",
"camera": "相機",
"copied": "已複製!",
"display_name": "顯示名稱",
"encrypted": "已加密",
"home": "首頁",
"loading": "載入中…",
"microphone": "麥克風",
"password": "密碼",
"profile": "個人檔案",
"settings": "設定",
"unencrypted": "未加密",
"username": "使用者名稱",
"video": "視訊"
},
"disconnected_banner": "到伺服器的連線已遺失。",
"full_screen_view_description": "<0>送出除錯紀錄,可幫助我們修正問題。</0>",
"full_screen_view_h1": "<0>喔喔,有些地方怪怪的。</0>",
"group_call_loader_failed_heading": "找不到通話",
"group_call_loader_failed_text": "通話現在是端對端加密的,必須從首頁建立。這有助於確保每個人都使用相同的加密金鑰。",
"hangup_button_label": "結束通話",
"header_label": "Element Call 首頁",
"header_participants_label": "參與者",
"invite_modal": {
"link_copied_toast": "連結已複製到剪貼簿",
"title": "邀請到此通話"
},
"join_existing_call_modal": {
"join_button": "是,加入對話",
"text": "通話已經開始,請問您要加入嗎?",
"title": "加入已開始的通話嗎?"
},
"layout_grid_label": "網格",
"layout_spotlight_label": "聚焦",
"lobby": {
"join_button": "加入通話",
"leave_button": "回到最近的通話"
},
"logging_in": "登入中…",
"login_auth_links": "<0>建立帳號</0> 或<2>以訪客身份登入</2>",
"login_title": "登入",
"microphone_off": "麥克風關閉",
"microphone_on": "麥克風開啟",
"mute_microphone_button_label": "將麥克風靜音",
"rageshake_button_error_caption": "重試傳送紀錄檔",
"rageshake_request_modal": {
"body": "這通對話中的另一位使用者遇到了某些問題。為了診斷問題,我們將會建立除錯紀錄。",
"title": "請求偵錯報告"
},
"rageshake_send_logs": "傳送除錯紀錄",
"rageshake_sending": "傳送中…",
"rageshake_sending_logs": "傳送除錯記錄檔中…",
"rageshake_sent": "感謝!",
"recaptcha_caption": "此網站被 ReCAPTCHA 保護,並適用 Google 的<2>隱私權政策</2>與<6>服務條款</6>。<9></9>點擊「註冊」即表示您同意我們的<12>終端使用者授權協議 (EULA)</12>",
"recaptcha_dismissed": "略過驗證碼",
"recaptcha_not_loaded": "驗證碼未載入",
"register": {
"passwords_must_match": "密碼必須相符",
"registering": "註冊中…"
},
"register_auth_links": "<0>已經有帳號?</0><1><0>登入</0> 或<2>以訪客身份登入</2></1>",
"register_confirm_password_label": "確認密碼",
"return_home_button": "回到首頁",
"room_auth_view_eula_caption": "點擊「立刻加入通話」即表示您同意我們的<2>終端使用者授權協議 (EULA)</2>",
"room_auth_view_join_button": "現在加入通話",
"screenshare_button_label": "分享畫面",
"select_input_unset_button": "選擇一個選項",
"settings": {
"developer_settings_label": "開發者設定",
"developer_settings_label_description": "在設定視窗中顯示開發者設定。",
"developer_tab_title": "開發者",
"feedback_tab_body": "若您遇到問題或只是想提供一些回饋,請在下方傳送簡短說明給我們。",
"feedback_tab_description_label": "您的回饋",
"feedback_tab_h4": "遞交回覆",
"feedback_tab_send_logs_label": "包含除錯紀錄",
"feedback_tab_thank_you": "感謝,我們已經收到您的回饋了!",
"feedback_tab_title": "回饋",
"more_tab_title": "更多",
"opt_in_description": "<0></0><1></1>您可以透過取消核取此方塊來撤回同意。若您目前正在通話中,此設定將在通話結束時生效。",
"show_connection_stats_label": "顯示連線統計資料",
"speaker_device_selection_label": "發言者"
},
"star_rating_input_label_one": "{{count}} 個星星",
"star_rating_input_label_other": "{{count}} 個星星",
"start_new_call": "開始新通話",
"start_video_button_label": "開始影片",
"stop_screenshare_button_label": "分享畫面",
"stop_video_button_label": "停止影片",
"submitting": "正在遞交……",
"unauthenticated_view_body": "還沒註冊嗎?<2>建立帳號</2>",
"unauthenticated_view_eula_caption": "點擊「前往」即表示您同意我們的<2>終端使用者授權協議 (EULA)</2>",
"unauthenticated_view_login_button": "登入您的帳號",
"unmute_microphone_button_label": "將麥克風取消靜音",
"version": "版本: {{version}}",
"video_tile": {
"sfu_participant_local": "您"
},
"waiting_for_participants": "等待其他參加者…"
}

View File

@@ -1,48 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"packageRules": [
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchUpdateTypes": ["minor", "patch"],
"extends": ["schedule:weekly"]
},
{
"groupName": "GitHub Actions",
"matchDepTypes": ["action"],
"pinDigests": true,
"extends": ["schedule:monthly"]
},
{
"description": "Disable Renovate for packages we want to monitor ourselves",
"groupName": "manually updated packages",
"matchDepNames": ["matrix-js-sdk"],
"enabled": false
},
{
"groupName": "matrix-widget-api",
"matchDepNames": ["matrix-widget-api"]
},
{
"groupName": "Compound",
"matchPackagePrefixes": ["@vector-im/compound-"],
"schedule": "before 5am on Tuesday and Friday"
},
{
"groupName": "LiveKit client",
"matchDepNames": ["livekit-client"]
},
{
"groupName": "LiveKit components",
"matchPackagePrefixes": ["@livekit/components-"]
},
{
"groupName": "Vaul",
"matchDepNames": ["vaul"],
"extends": ["schedule:monthly"],
"prHeader": "Please review modals on mobile for visual regressions."
}
],
"semanticCommits": "disabled"
}

View File

@@ -2,7 +2,22 @@
set -ex set -ex
export VITE_APP_VERSION=$(git describe --tags --abbrev=0) export VITE_DEFAULT_HOMESERVER=https://call.ems.host
export VITE_SENTRY_DSN=https://b1e328d49be3402ba96101338989fb35@sentry.matrix.org/41
export VITE_RAGESHAKE_SUBMIT_URL=https://element.io/bugreports/submit
export VITE_PRODUCT_NAME="Element Call"
git clone https://github.com/matrix-org/matrix-js-sdk.git
cd matrix-js-sdk
git checkout robertlong/group-call
yarn install
yarn run build
yarn link
cd ../element-call
export VITE_APP_VERSION=$(git describe --tags --abbrev=0)
yarn link matrix-js-sdk
yarn install yarn install
yarn run build yarn run build

View File

@@ -1,15 +0,0 @@
#!/usr/bin/env python3
# This script can be used to reformat the release notes generated by
# GitHub releases into a format slightly more appropriate for our
# project (ie. we don't really need to mention the author of every PR)
#
# eg. in: * OpenTelemetry by @dbkr in https://github.com/vector-im/element-call/pull/961
# out: * OpenTelemetry (https://github.com/vector-im/element-call/pull/961)
import sys
import re
for line in sys.stdin:
matches = re.match(r'^\* (.*) by (\S+) in (\S+)$', line.strip())
print("* %s (%s)" % (matches[1], matches[3]))

View File

@@ -1,5 +1,5 @@
/* /*
Copyright 2022 New Vector Ltd Copyright 2022 Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@@ -15,21 +15,16 @@ limitations under the License.
*/ */
import "matrix-js-sdk/src/@types/global"; import "matrix-js-sdk/src/@types/global";
import { Controls } from "../controls";
declare global { declare global {
interface Document {
// Safari only supports this prefixed, so tell the type system about it
webkitExitFullscreen: () => void;
webkitFullscreenElement: HTMLElement | null;
}
interface Window { interface Window {
controls: Controls; // TODO: https://gitlab.matrix.org/matrix-org/olm/-/issues/10
OLM_OPTIONS: Record<string, string>;
} }
interface HTMLElement { // TypeScript doesn't know about the experimental setSinkId method, so we
// Safari only supports this prefixed, so tell the type system about it // declare it ourselves
webkitRequestFullscreen: () => void; interface MediaElement extends HTMLVideoElement {
setSinkId: (id: string) => void;
} }
} }

View File

@@ -1,29 +0,0 @@
/*
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 "i18next";
// import all namespaces (for the default language, only)
import app from "../../public/locales/en-GB/app.json";
declare module "i18next" {
interface CustomTypeOptions {
defaultNS: "app";
keySeparator: ".";
resources: {
app: typeof app;
};
}
}

View File

@@ -1,18 +1,2 @@
/*
Copyright 2022 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.
*/
/// <reference types="vite/client" /> /// <reference types="vite/client" />
/// <reference types="vite-plugin-svgr/client" /> /// <reference types="vite-plugin-svgr/client" />

View File

@@ -1,5 +1,5 @@
/* /*
Copyright 2021 - 2023 New Vector Ltd Copyright 2021 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@@ -14,108 +14,65 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { FC, Suspense, useEffect, useState } from "react"; import React, { Suspense } from "react";
import { import { BrowserRouter as Router, Switch, Route } from "react-router-dom";
BrowserRouter as Router,
Switch,
Route,
useLocation,
} from "react-router-dom";
import * as Sentry from "@sentry/react"; import * as Sentry from "@sentry/react";
import { History } from "history"; import { OverlayProvider } from "@react-aria/overlays";
import { TooltipProvider } from "@vector-im/compound-web";
import { HomePage } from "./home/HomePage"; import { HomePage } from "./home/HomePage";
import { LoginPage } from "./auth/LoginPage"; import { LoginPage } from "./auth/LoginPage";
import { RegisterPage } from "./auth/RegisterPage"; import { RegisterPage } from "./auth/RegisterPage";
import { RoomPage } from "./room/RoomPage"; import { RoomPage } from "./room/RoomPage";
import { RoomRedirect } from "./room/RoomRedirect";
import { ClientProvider } from "./ClientContext"; import { ClientProvider } from "./ClientContext";
import { CrashView, LoadingView } from "./FullScreenView"; import { usePageFocusStyle } from "./usePageFocusStyle";
import { DisconnectedBanner } from "./DisconnectedBanner"; import { SequenceDiagramViewerPage } from "./SequenceDiagramViewerPage";
import { Initializer } from "./initializer"; import { InspectorContextProvider } from "./room/GroupCallInspector";
import { MediaDevicesProvider } from "./livekit/MediaDevicesContext"; import { CrashView } from "./FullScreenView";
import { widget } from "./widget";
import { useTheme } from "./useTheme";
const SentryRoute = Sentry.withSentryRouting(Route); const SentryRoute = Sentry.withSentryRouting(Route);
interface SimpleProviderProps {
children: JSX.Element;
}
const BackgroundProvider: FC<SimpleProviderProps> = ({ children }) => {
const { pathname } = useLocation();
useEffect(() => {
let backgroundImage = "";
if (!["/login", "/register"].includes(pathname) && !widget) {
backgroundImage = "var(--background-gradient)";
}
document.getElementsByTagName("body")[0].style.backgroundImage =
backgroundImage;
}, [pathname]);
return <>{children}</>;
};
const ThemeProvider: FC<SimpleProviderProps> = ({ children }) => {
useTheme();
return children;
};
interface AppProps { interface AppProps {
history: History; history: History;
} }
export const App: FC<AppProps> = ({ history }) => { export default function App({ history }: AppProps) {
const [loaded, setLoaded] = useState(false); usePageFocusStyle();
useEffect(() => {
Initializer.init()?.then(() => {
if (loaded) return;
setLoaded(true);
widget?.api.sendContentLoaded();
});
});
const errorPage = <CrashView />; const errorPage = <CrashView />;
return ( return (
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
<Router history={history}> <Router history={history}>
<BackgroundProvider> <Suspense fallback={null}>
<ThemeProvider> <ClientProvider>
<TooltipProvider> <InspectorContextProvider>
{loaded ? ( <Sentry.ErrorBoundary fallback={errorPage}>
<Suspense fallback={null}> <OverlayProvider>
<ClientProvider> <Switch>
<MediaDevicesProvider> <SentryRoute exact path="/">
<Sentry.ErrorBoundary fallback={errorPage}> <HomePage />
<DisconnectedBanner /> </SentryRoute>
<Switch> <SentryRoute exact path="/login">
<SentryRoute exact path="/"> <LoginPage />
<HomePage /> </SentryRoute>
</SentryRoute> <SentryRoute exact path="/register">
<SentryRoute exact path="/login"> <RegisterPage />
<LoginPage /> </SentryRoute>
</SentryRoute> <SentryRoute path="/room/:roomId?">
<SentryRoute exact path="/register"> <RoomPage />
<RegisterPage /> </SentryRoute>
</SentryRoute> <SentryRoute path="/inspector">
<SentryRoute path="*"> <SequenceDiagramViewerPage />
<RoomPage /> </SentryRoute>
</SentryRoute> <SentryRoute path="*">
</Switch> <RoomRedirect />
</Sentry.ErrorBoundary> </SentryRoute>
</MediaDevicesProvider> </Switch>
</ClientProvider> </OverlayProvider>
</Suspense> </Sentry.ErrorBoundary>
) : ( </InspectorContextProvider>
<LoadingView /> </ClientProvider>
)} </Suspense>
</TooltipProvider>
</ThemeProvider>
</BackgroundProvider>
</Router> </Router>
); );
}; }

60
src/Avatar.module.css Normal file
View File

@@ -0,0 +1,60 @@
.avatar {
position: relative;
color: var(--primary-content);
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
font-weight: 600;
overflow: hidden;
flex-shrink: 0;
}
.avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.avatar svg * {
fill: var(--primary-content);
}
.avatar span {
padding-top: 1px;
}
.xs {
width: 22px;
height: 22px;
border-radius: 22px;
font-size: 14px;
}
.sm {
width: 32px;
height: 32px;
border-radius: 32px;
font-size: 15px;
}
.md {
width: 36px;
height: 36px;
border-radius: 36px;
font-size: 20px;
}
.lg {
width: 42px;
height: 42px;
border-radius: 42px;
font-size: 24px;
}
.xl {
width: 90px;
height: 90px;
border-radius: 90px;
font-size: 48px;
}

View File

@@ -1,24 +1,21 @@
/* import React, { useMemo, CSSProperties } from "react";
Copyright 2022 New Vector Ltd import classNames from "classnames";
import { MatrixClient } from "matrix-js-sdk/src/client";
Licensed under the Apache License, Version 2.0 (the "License"); import { getAvatarUrl } from "./matrix-utils";
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 { useMemo, FC } from "react";
import { Avatar as CompoundAvatar } from "@vector-im/compound-web";
import { getAvatarUrl } from "./utils/matrix";
import { useClient } from "./ClientContext"; import { useClient } from "./ClientContext";
import styles from "./Avatar.module.css";
const backgroundColors = [
"#5C56F5",
"#03B381",
"#368BD6",
"#AC3BA8",
"#E64F7A",
"#FF812D",
"#2DC2C5",
"#74D12C",
];
export enum Size { export enum Size {
XS = "xs", XS = "xs",
@@ -36,43 +33,83 @@ export const sizes = new Map([
[Size.XL, 90], [Size.XL, 90],
]); ]);
interface Props { function hashStringToArrIndex(str: string, arrLength: number) {
id: string; let sum = 0;
name: string;
className?: string; for (let i = 0; i < str.length; i++) {
src?: string; sum += str.charCodeAt(i);
size?: Size | number; }
return sum % arrLength;
} }
export const Avatar: FC<Props> = ({ const resolveAvatarSrc = (client: MatrixClient, src: string, size: number) =>
className, src?.startsWith("mxc://") ? client && getAvatarUrl(client, src, size) : src;
id,
name, interface Props extends React.HTMLAttributes<HTMLDivElement> {
bgKey?: string;
src?: string;
size?: Size | number;
className?: string;
style?: CSSProperties;
fallback: string;
}
export const Avatar: React.FC<Props> = ({
bgKey,
src, src,
fallback,
size = Size.MD, size = Size.MD,
className,
style = {},
...rest
}) => { }) => {
const { client } = useClient(); const { client } = useClient();
const sizePx = useMemo( const [sizeClass, sizePx, sizeStyle] = useMemo(
() => () =>
Object.values(Size).includes(size as Size) Object.values(Size).includes(size as Size)
? sizes.get(size as Size) ? [styles[size as string], sizes.get(size as Size), {}]
: (size as number), : [
[size], null,
size as number,
{
width: size,
height: size,
borderRadius: size,
fontSize: Math.round((size as number) / 2),
},
],
[size]
); );
const resolvedSrc = useMemo(() => { const resolvedSrc = useMemo(
if (!client || !src || !sizePx) return undefined; () => resolveAvatarSrc(client, src, sizePx),
return src.startsWith("mxc://") ? getAvatarUrl(client, src, sizePx) : src; [client, src, sizePx]
}, [client, src, sizePx]); );
const backgroundColor = useMemo(() => {
const index = hashStringToArrIndex(
bgKey || fallback || src || "",
backgroundColors.length
);
return backgroundColors[index];
}, [bgKey, src, fallback]);
/* eslint-disable jsx-a11y/alt-text */
return ( return (
<CompoundAvatar <div
className={className} className={classNames(styles.avatar, sizeClass, className)}
id={id} style={{ backgroundColor, ...sizeStyle, ...style }}
name={name} {...rest}
size={`${sizePx}px`} >
src={resolvedSrc} {resolvedSrc ? (
/> <img src={resolvedSrc} />
) : typeof fallback === "string" ? (
<span>{fallback}</span>
) : (
fallback
)}
</div>
); );
}; };

View File

@@ -14,384 +14,35 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { import React, {
FC, FC,
useCallback, useCallback,
useEffect, useEffect,
useState, useState,
createContext, createContext,
useMemo,
useContext, useContext,
useRef, useRef,
useMemo,
} from "react"; } from "react";
import { useHistory } from "react-router-dom"; import { useHistory } from "react-router-dom";
import { import { MatrixClient, ClientEvent } from "matrix-js-sdk/src/client";
ClientEvent, import { MatrixEvent } from "matrix-js-sdk/src/models/event";
ICreateClientOpts,
MatrixClient,
} from "matrix-js-sdk/src/client";
import { logger } from "matrix-js-sdk/src/logger"; import { logger } from "matrix-js-sdk/src/logger";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { ISyncStateData, SyncState } from "matrix-js-sdk/src/sync";
import { MatrixError } from "matrix-js-sdk/src/matrix";
import { ErrorView } from "./FullScreenView"; import { ErrorView } from "./FullScreenView";
import { fallbackICEServerAllowed, initClient } from "./utils/matrix";
import { widget } from "./widget";
import { import {
PosthogAnalytics, initClient,
RegistrationType, defaultHomeserver,
} from "./analytics/PosthogAnalytics"; CryptoStoreIntegrityError,
fallbackICEServerAllowed,
} from "./matrix-utils";
import { widget } from "./widget";
import { translatedError } from "./TranslatedError"; import { translatedError } from "./TranslatedError";
import { useEventTarget } from "./useEvents";
import { Config } from "./config/Config";
declare global { declare global {
interface Window { interface Window {
matrixclient: MatrixClient; matrixclient: MatrixClient;
passwordlessUser: boolean;
}
}
export type ClientState = ValidClientState | ErrorState;
export type ValidClientState = {
state: "valid";
authenticated?: AuthenticatedClient;
// 'Disconnected' rather than 'connected' because it tracks specifically
// whether the client is supposed to be connected but is not
disconnected: boolean;
setClient: (params?: SetClientParams) => void;
};
export type AuthenticatedClient = {
client: MatrixClient;
isPasswordlessUser: boolean;
changePassword: (password: string) => Promise<void>;
logout: () => void;
};
export type ErrorState = {
state: "error";
error: Error;
};
export type SetClientParams = {
client: MatrixClient;
session: Session;
};
const ClientContext = createContext<ClientState | undefined>(undefined);
export const useClientState = (): ClientState | undefined =>
useContext(ClientContext);
export function useClient(): {
client?: MatrixClient;
setClient?: (params?: SetClientParams) => void;
} {
let client;
let setClient;
const clientState = useClientState();
if (clientState?.state === "valid") {
client = clientState.authenticated?.client;
setClient = clientState.setClient;
}
return { client, setClient };
}
// Plain representation of the `ClientContext` as a helper for old components that expected an object with multiple fields.
export function useClientLegacy(): {
client?: MatrixClient;
setClient?: (params?: SetClientParams) => void;
passwordlessUser: boolean;
loading: boolean;
authenticated: boolean;
logout?: () => void;
error?: Error;
} {
const clientState = useClientState();
let client;
let setClient;
let passwordlessUser = false;
let loading = true;
let error;
let authenticated = false;
let logout;
if (clientState?.state === "valid") {
client = clientState.authenticated?.client;
setClient = clientState.setClient;
passwordlessUser = clientState.authenticated?.isPasswordlessUser ?? false;
loading = false;
authenticated = client !== undefined;
logout = clientState.authenticated?.logout;
} else if (clientState?.state === "error") {
error = clientState.error;
loading = false;
}
return {
client,
setClient,
passwordlessUser,
loading,
authenticated,
logout,
error,
};
}
const loadChannel =
"BroadcastChannel" in window ? new BroadcastChannel("load") : null;
interface Props {
children: JSX.Element;
}
export const ClientProvider: FC<Props> = ({ children }) => {
const history = useHistory();
// null = signed out, undefined = loading
const [initClientState, setInitClientState] = useState<
InitResult | null | undefined
>(undefined);
const initializing = useRef(false);
useEffect(() => {
// In case the component is mounted, unmounted, and remounted quickly (as
// React does in strict mode), we need to make sure not to doubly initialize
// the client.
if (initializing.current) return;
initializing.current = true;
loadClient()
.then(setInitClientState)
.catch((err) => logger.error(err))
.finally(() => (initializing.current = false));
}, []);
const changePassword = useCallback(
async (password: string) => {
const session = loadSession();
if (!initClientState?.client || !session) {
return;
}
await initClientState.client.setPassword(
{
type: "m.login.password",
identifier: {
type: "m.id.user",
user: session.user_id,
},
user: session.user_id,
password: session.tempPassword,
},
password,
);
saveSession({ ...session, passwordlessUser: false });
setInitClientState({
client: initClientState.client,
passwordlessUser: false,
});
},
[initClientState?.client],
);
const setClient = useCallback(
(clientParams?: SetClientParams) => {
const oldClient = initClientState?.client;
const newClient = clientParams?.client;
if (oldClient && oldClient !== newClient) {
oldClient.stopClient();
}
if (clientParams) {
saveSession(clientParams.session);
setInitClientState({
client: clientParams.client,
passwordlessUser: clientParams.session.passwordlessUser,
});
} else {
clearSession();
setInitClientState(null);
}
},
[initClientState?.client],
);
const logout = useCallback(async () => {
const client = initClientState?.client;
if (!client) {
return;
}
await client.logout(true);
await client.clearStores();
clearSession();
setInitClientState(null);
history.push("/");
PosthogAnalytics.instance.setRegistrationType(RegistrationType.Guest);
}, [history, initClientState?.client]);
const { t } = useTranslation();
// To protect against multiple sessions writing to the same storage
// simultaneously, we send a broadcast message that shuts down all other
// running instances of the app. This isn't necessary if the app is running in
// a widget though, since then it'll be mostly stateless.
useEffect(() => {
if (!widget) loadChannel?.postMessage({});
}, []);
const [alreadyOpenedErr, setAlreadyOpenedErr] = useState<Error | undefined>(
undefined,
);
useEventTarget(
loadChannel,
"message",
useCallback(() => {
initClientState?.client.stopClient();
setAlreadyOpenedErr(translatedError("application_opened_another_tab", t));
}, [initClientState?.client, setAlreadyOpenedErr, t]),
);
const [isDisconnected, setIsDisconnected] = useState(false);
const state: ClientState | undefined = useMemo(() => {
if (alreadyOpenedErr) {
return { state: "error", error: alreadyOpenedErr };
}
if (initClientState === undefined) return undefined;
const authenticated =
initClientState === null
? undefined
: {
client: initClientState.client,
isPasswordlessUser: initClientState.passwordlessUser,
changePassword,
logout,
};
return {
state: "valid",
authenticated,
setClient,
disconnected: isDisconnected,
};
}, [
alreadyOpenedErr,
changePassword,
initClientState,
logout,
setClient,
isDisconnected,
]);
const onSync = useCallback(
(state: SyncState, _old: SyncState | null, data?: ISyncStateData) => {
setIsDisconnected(clientIsDisconnected(state, data));
},
[],
);
useEffect(() => {
if (!initClientState) {
return;
}
window.matrixclient = initClientState.client;
window.passwordlessUser = initClientState.passwordlessUser;
if (PosthogAnalytics.hasInstance())
PosthogAnalytics.instance.onLoginStatusChanged();
if (initClientState.client) {
initClientState.client.on(ClientEvent.Sync, onSync);
}
return (): void => {
if (initClientState.client) {
initClientState.client.removeListener(ClientEvent.Sync, onSync);
}
};
}, [initClientState, onSync]);
if (alreadyOpenedErr) {
return <ErrorView error={alreadyOpenedErr} />;
}
return (
<ClientContext.Provider value={state}>{children}</ClientContext.Provider>
);
};
type InitResult = {
client: MatrixClient;
passwordlessUser: boolean;
};
async function loadClient(): Promise<InitResult | null> {
if (widget) {
// We're inside a widget, so let's engage *matryoshka mode*
logger.log("Using a matryoshka client");
const client = await widget.client;
return {
client,
passwordlessUser: false,
};
} else {
// We're running as a standalone application
try {
const session = loadSession();
if (!session) {
logger.log("No session stored; continuing without a client");
return null;
}
logger.log("Using a standalone client");
/* eslint-disable camelcase */
const { user_id, device_id, access_token, passwordlessUser } = session;
const initClientParams: ICreateClientOpts = {
baseUrl: Config.defaultHomeserverUrl()!,
accessToken: access_token,
userId: user_id,
deviceId: device_id,
fallbackICEServerAllowed: fallbackICEServerAllowed,
livekitServiceURL: Config.get().livekit?.livekit_service_url,
};
try {
const client = await initClient(initClientParams, true);
return {
client,
passwordlessUser,
};
} catch (err) {
if (err instanceof MatrixError && err.errcode === "M_UNKNOWN_TOKEN") {
// We can't use this session anymore, so let's log it out
logger.log(
"The session from local store is invalid; continuing without a client",
);
clearSession();
// returning null = "no client` pls register" (undefined = "loading" which is the current value when reaching this line)
return null;
}
throw err;
}
} catch (err) {
clearSession();
throw err;
}
} }
} }
@@ -403,20 +54,312 @@ export interface Session {
tempPassword?: string; tempPassword?: string;
} }
const clearSession = (): void => localStorage.removeItem("matrix-auth-store"); const loadSession = (): Session => {
const saveSession = (s: Session): void =>
localStorage.setItem("matrix-auth-store", JSON.stringify(s));
const loadSession = (): Session | undefined => {
const data = localStorage.getItem("matrix-auth-store"); const data = localStorage.getItem("matrix-auth-store");
if (!data) { if (data) return JSON.parse(data);
return undefined; return null;
};
const saveSession = (session: Session) =>
localStorage.setItem("matrix-auth-store", JSON.stringify(session));
const clearSession = () => localStorage.removeItem("matrix-auth-store");
interface ClientState {
loading: boolean;
isAuthenticated: boolean;
isPasswordlessUser: boolean;
client: MatrixClient;
userName: string;
changePassword: (password: string) => Promise<void>;
logout: () => void;
setClient: (client: MatrixClient, session: Session) => void;
error?: Error;
}
const ClientContext = createContext<ClientState>(null);
type ClientProviderState = Omit<
ClientState,
"changePassword" | "logout" | "setClient"
> & { error?: Error };
interface Props {
children: JSX.Element;
}
export const ClientProvider: FC<Props> = ({ children }) => {
const history = useHistory();
const initializing = useRef(false);
const [
{ loading, isAuthenticated, isPasswordlessUser, client, userName, error },
setState,
] = useState<ClientProviderState>({
loading: true,
isAuthenticated: false,
isPasswordlessUser: false,
client: undefined,
userName: null,
error: undefined,
});
useEffect(() => {
// In case the component is mounted, unmounted, and remounted quickly (as
// React does in strict mode), we need to make sure not to doubly initialize
// the client
if (initializing.current) return;
initializing.current = true;
const init = async (): Promise<
Pick<ClientProviderState, "client" | "isPasswordlessUser">
> => {
if (widget) {
// We're inside a widget, so let's engage *matryoshka mode*
logger.log("Using a matryoshka client");
return {
client: await widget.client,
isPasswordlessUser: false,
};
} else {
// We're running as a standalone application
try {
const session = loadSession();
if (!session) return { client: undefined, isPasswordlessUser: false };
logger.log("Using a standalone client");
/* eslint-disable camelcase */
const { user_id, device_id, access_token, passwordlessUser } =
session;
try {
return {
client: await initClient(
{
baseUrl: defaultHomeserver,
accessToken: access_token,
userId: user_id,
deviceId: device_id,
fallbackICEServerAllowed: fallbackICEServerAllowed,
},
true
),
isPasswordlessUser: passwordlessUser,
};
} catch (err) {
if (err instanceof CryptoStoreIntegrityError) {
// We can't use this session anymore, so let's log it out
try {
const client = await initClient(
{
baseUrl: defaultHomeserver,
accessToken: access_token,
userId: user_id,
deviceId: device_id,
fallbackICEServerAllowed: fallbackICEServerAllowed,
},
false // Don't need the crypto store just to log out
);
await client.logout(true);
} catch (err_) {
logger.warn(
"The previous session was lost, and we couldn't log it out, " +
"either"
);
}
}
throw err;
}
/* eslint-enable camelcase */
} catch (err) {
clearSession();
throw err;
}
}
};
init()
.then(({ client, isPasswordlessUser }) => {
setState({
client,
loading: false,
isAuthenticated: Boolean(client),
isPasswordlessUser,
userName: client?.getUserIdLocalpart(),
error: undefined,
});
})
.catch((err) => {
logger.error(err);
setState({
client: undefined,
loading: false,
isAuthenticated: false,
isPasswordlessUser: false,
userName: null,
error: undefined,
});
})
.finally(() => (initializing.current = false));
}, []);
const changePassword = useCallback(
async (password: string) => {
const { tempPassword, ...session } = loadSession();
await client.setPassword(
{
type: "m.login.password",
identifier: {
type: "m.id.user",
user: session.user_id,
},
user: session.user_id,
password: tempPassword,
},
password
);
saveSession({ ...session, passwordlessUser: false });
setState({
client,
loading: false,
isAuthenticated: true,
isPasswordlessUser: false,
userName: client.getUserIdLocalpart(),
error: undefined,
});
},
[client]
);
const setClient = useCallback(
(newClient: MatrixClient, session: Session) => {
if (client && client !== newClient) {
client.stopClient();
}
if (newClient) {
saveSession(session);
setState({
client: newClient,
loading: false,
isAuthenticated: true,
isPasswordlessUser: session.passwordlessUser,
userName: newClient.getUserIdLocalpart(),
error: undefined,
});
} else {
clearSession();
setState({
client: undefined,
loading: false,
isAuthenticated: false,
isPasswordlessUser: false,
userName: null,
error: undefined,
});
}
},
[client]
);
const logout = useCallback(async () => {
await client.logout(true);
await client.clearStores();
clearSession();
setState({
client: undefined,
loading: false,
isAuthenticated: false,
isPasswordlessUser: true,
userName: "",
error: undefined,
});
history.push("/");
}, [history, client]);
const { t } = useTranslation();
useEffect(() => {
// To protect against multiple sessions writing to the same storage
// simultaneously, we send a to-device message that shuts down all other
// running instances of the app. This isn't necessary if the app is running
// in a widget though, since then it'll be mostly stateless.
if (!widget && client) {
const loadTime = Date.now();
const onToDeviceEvent = (event: MatrixEvent) => {
if (event.getType() !== "org.matrix.call_duplicate_session") return;
const content = event.getContent();
if (content.session_id === client.getSessionId()) return;
if (content.timestamp > loadTime) {
client?.stopClient();
setState((prev) => ({
...prev,
error: translatedError(
"This application has been opened in another tab.",
t
),
}));
}
};
client.on(ClientEvent.ToDeviceEvent, onToDeviceEvent);
client.sendToDevice("org.matrix.call_duplicate_session", {
[client.getUserId()]: {
"*": { session_id: client.getSessionId(), timestamp: loadTime },
},
});
return () => {
client?.removeListener(ClientEvent.ToDeviceEvent, onToDeviceEvent);
};
}
}, [client, t]);
const context = useMemo<ClientState>(
() => ({
loading,
isAuthenticated,
isPasswordlessUser,
client,
changePassword,
logout,
userName,
setClient,
error: undefined,
}),
[
loading,
isAuthenticated,
isPasswordlessUser,
client,
changePassword,
logout,
userName,
setClient,
]
);
useEffect(() => {
window.matrixclient = client;
}, [client]);
if (error) {
return <ErrorView error={error} />;
} }
return JSON.parse(data); return (
<ClientContext.Provider value={context}>{children}</ClientContext.Provider>
);
}; };
const clientIsDisconnected = ( export const useClient = () => useContext(ClientContext);
syncState: SyncState,
syncData?: ISyncStateData,
): boolean =>
syncState === "ERROR" && syncData?.error?.name === "ConnectionError";

View File

@@ -1,27 +0,0 @@
/*
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.
*/
.banner {
position: absolute;
padding: 29px;
background-color: var(--cpd-color-bg-subtle-primary);
vertical-align: middle;
font-size: var(--font-size-body);
text-align: center;
z-index: 1;
top: 76px;
width: calc(100% - 58px);
}

View File

@@ -1,53 +0,0 @@
/*
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 classNames from "classnames";
import { FC, HTMLAttributes, ReactNode } from "react";
import { useTranslation } from "react-i18next";
import styles from "./DisconnectedBanner.module.css";
import { ValidClientState, useClientState } from "./ClientContext";
interface Props extends HTMLAttributes<HTMLElement> {
children?: ReactNode;
className?: string;
}
export const DisconnectedBanner: FC<Props> = ({
children,
className,
...rest
}) => {
const { t } = useTranslation();
const clientState = useClientState();
let shouldShowBanner = false;
if (clientState?.state === "valid") {
const validClientState = clientState as ValidClientState;
shouldShowBanner = validClientState.disconnected;
}
return (
<>
{shouldShowBanner && (
<div className={classNames(styles.banner, className)} {...rest}>
{children}
{t("disconnected_banner")}
</div>
)}
</>
);
};

26
src/Facepile.module.css Normal file
View File

@@ -0,0 +1,26 @@
.facepile {
width: 100%;
position: relative;
}
.facepile.xs {
height: 24px;
}
.facepile.sm {
height: 32px;
}
.facepile.md {
height: 36px;
}
.facepile .avatar {
position: absolute;
top: 0;
border: 1px solid var(--system);
}
.facepile.md .avatar {
border-width: 2px;
}

98
src/Facepile.tsx Normal file
View File

@@ -0,0 +1,98 @@
/*
Copyright 2022 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 React, { HTMLAttributes, useMemo } from "react";
import classNames from "classnames";
import { MatrixClient } from "matrix-js-sdk/src/client";
import { RoomMember } from "matrix-js-sdk/src/models/room-member";
import { useTranslation } from "react-i18next";
import styles from "./Facepile.module.css";
import { Avatar, Size, sizes } from "./Avatar";
const overlapMap: Partial<Record<Size, number>> = {
[Size.XS]: 2,
[Size.SM]: 4,
[Size.MD]: 8,
};
interface Props extends HTMLAttributes<HTMLDivElement> {
className: string;
client: MatrixClient;
participants: RoomMember[];
max?: number;
size?: Size;
}
export function Facepile({
className,
client,
participants,
max = 3,
size = Size.XS,
...rest
}: Props) {
const { t } = useTranslation();
const _size = sizes.get(size);
const _overlap = overlapMap[size];
const title = useMemo(() => {
return participants.reduce<string | null>(
(prev, curr) =>
prev === null
? curr.name
: t("{{names}}, {{name}}", { names: prev, name: curr.name }),
null
) as string;
}, [participants, t]);
return (
<div
className={classNames(styles.facepile, styles[size], className)}
title={title}
style={{
width:
Math.min(participants.length, max + 1) * (_size - _overlap) +
_overlap,
}}
{...rest}
>
{participants.slice(0, max).map((member, i) => {
const avatarUrl = member.getMxcAvatarUrl();
return (
<Avatar
key={member.userId}
size={size}
src={avatarUrl ?? undefined}
fallback={member.name.slice(0, 1).toUpperCase()}
className={styles.avatar}
style={{ left: i * (_size - _overlap) }}
/>
);
})}
{participants.length > max && (
<Avatar
key="additional"
size={size}
fallback={`+${participants.length - max}`}
className={styles.avatar}
style={{ left: max * (_size - _overlap) }}
/>
)}
</div>
);
}

View File

@@ -1,19 +1,3 @@
/*
Copyright 2022 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.
*/
.page { .page {
position: relative; position: relative;
display: flex; display: flex;

View File

@@ -1,49 +1,27 @@
/* import React, { ReactNode, useCallback, useEffect } from "react";
Copyright 2022 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 { FC, ReactNode, useCallback, useEffect } from "react";
import { useLocation } from "react-router-dom"; import { useLocation } from "react-router-dom";
import classNames from "classnames"; import classNames from "classnames";
import { Trans, useTranslation } from "react-i18next"; import { Trans, useTranslation } from "react-i18next";
import * as Sentry from "@sentry/react";
import { logger } from "matrix-js-sdk/src/logger";
import { Button } from "@vector-im/compound-web";
import { Header, HeaderLogo, LeftNav, RightNav } from "./Header"; import { Header, HeaderLogo, LeftNav, RightNav } from "./Header";
import { LinkButton } from "./button"; import { LinkButton, Button } from "./button";
import { useSubmitRageshake } from "./settings/submit-rageshake";
import { ErrorMessage } from "./input/Input";
import styles from "./FullScreenView.module.css"; import styles from "./FullScreenView.module.css";
import { TranslatedError } from "./TranslatedError"; import { translatedError, TranslatedError } from "./TranslatedError";
import { Config } from "./config/Config";
import { RageshakeButton } from "./settings/RageshakeButton";
import { useUrlParams } from "./UrlParams";
interface FullScreenViewProps { interface FullScreenViewProps {
className?: string; className?: string;
children: ReactNode; children: ReactNode;
} }
export const FullScreenView: FC<FullScreenViewProps> = ({ export function FullScreenView({ className, children }: FullScreenViewProps) {
className,
children,
}) => {
const { hideHeader } = useUrlParams();
return ( return (
<div className={classNames(styles.page, className)}> <div className={classNames(styles.page, className)}>
<Header> <Header>
<LeftNav>{!hideHeader && <HeaderLogo />}</LeftNav> <LeftNav>
<HeaderLogo />
</LeftNav>
<RightNav /> <RightNav />
</Header> </Header>
<div className={styles.container}> <div className={styles.container}>
@@ -51,20 +29,18 @@ export const FullScreenView: FC<FullScreenViewProps> = ({
</div> </div>
</div> </div>
); );
}; }
interface ErrorViewProps { interface ErrorViewProps {
error: Error; error: Error;
} }
export const ErrorView: FC<ErrorViewProps> = ({ error }) => { export function ErrorView({ error }: ErrorViewProps) {
const location = useLocation(); const location = useLocation();
const { confineToRoom } = useUrlParams();
const { t } = useTranslation(); const { t } = useTranslation();
useEffect(() => { useEffect(() => {
logger.error(error); console.error(error);
Sentry.captureException(error);
}, [error]); }, [error]);
const onReload = useCallback(() => { const onReload = useCallback(() => {
@@ -73,59 +49,96 @@ export const ErrorView: FC<ErrorViewProps> = ({ error }) => {
return ( return (
<FullScreenView> <FullScreenView>
<h1>{t("common.error")}</h1> <h1>Error</h1>
<p> <p>
{error instanceof TranslatedError {error instanceof TranslatedError
? error.translatedMessage ? error.translatedMessage
: error.message} : error.message}
</p> </p>
<RageshakeButton description={`***Error View***: ${error.message}`} /> {location.pathname === "/" ? (
{!confineToRoom && <Button
(location.pathname === "/" ? ( size="lg"
<Button className={styles.homeLink} onClick={onReload}> variant="default"
{t("return_home_button")} className={styles.homeLink}
</Button> onPress={onReload}
) : ( >
<LinkButton className={styles.homeLink} to="/"> {t("Return to home screen")}
{t("return_home_button")} </Button>
</LinkButton> ) : (
))} <LinkButton
size="lg"
variant="default"
className={styles.homeLink}
to="/"
>
{t("Return to home screen")}
</LinkButton>
)}
</FullScreenView> </FullScreenView>
); );
}; }
export const CrashView: FC = () => { export function CrashView() {
const { t } = useTranslation(); const { t } = useTranslation();
const { submitRageshake, sending, sent, error } = useSubmitRageshake();
const sendDebugLogs = useCallback(() => {
submitRageshake({
description: "**Soft Crash**",
sendLogs: true,
});
}, [submitRageshake]);
const onReload = useCallback(() => { const onReload = useCallback(() => {
window.location.href = "/"; window.location.href = "/";
}, []); }, []);
let logsComponent: JSX.Element | null = null;
if (sent) {
logsComponent = <div>{t("Thanks! We'll get right on it.")}</div>;
} else if (sending) {
logsComponent = <div>{t("Sending…")}</div>;
} else {
logsComponent = (
<Button
size="lg"
variant="default"
onPress={sendDebugLogs}
className={styles.wideButton}
>
{t("Send debug logs")}
</Button>
);
}
return ( return (
<FullScreenView> <FullScreenView>
<Trans i18nKey="full_screen_view_h1"> <Trans>
<h1>Oops, something's gone wrong.</h1> <h1>Oops, something's gone wrong.</h1>
<p>Submitting debug logs will help us track down the problem.</p>
</Trans> </Trans>
{Config.get().rageshake?.submit_url && ( <div className={styles.sendLogsSection}>{logsComponent}</div>
<Trans i18nKey="full_screen_view_description"> {error && (
<p>Submitting debug logs will help us track down the problem.</p> <ErrorMessage error={translatedError("Couldn't send debug logs!", t)} />
</Trans>
)} )}
<Button
<RageshakeButton description="***Soft Crash***" /> size="lg"
<Button className={styles.wideButton} onClick={onReload}> variant="default"
{t("return_home_button")} className={styles.wideButton}
onPress={onReload}
>
{t("Return to home screen")}
</Button> </Button>
</FullScreenView> </FullScreenView>
); );
}; }
export const LoadingView: FC = () => { export function LoadingView() {
const { t } = useTranslation(); const { t } = useTranslation();
return ( return (
<FullScreenView> <FullScreenView>
<h1>{t("common.loading")}</h1> <h1>{t("Loading")}</h1>
</FullScreenView> </FullScreenView>
); );
}; }

View File

@@ -1,19 +1,3 @@
/*
Copyright 2022-2024 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.
*/
.header { .header {
position: relative; position: relative;
display: flex; display: flex;
@@ -21,7 +5,6 @@ limitations under the License.
align-items: center; align-items: center;
user-select: none; user-select: none;
flex-shrink: 0; flex-shrink: 0;
padding-inline: var(--inline-content-inset);
} }
.nav { .nav {
@@ -29,11 +12,11 @@ limitations under the License.
flex: 1; flex: 1;
align-items: center; align-items: center;
white-space: nowrap; white-space: nowrap;
height: 80px; padding: 0 20px;
height: 64px;
} }
.headerLogo { .headerLogo {
color: var(--cpd-color-text-primary);
display: none; display: none;
align-items: center; align-items: center;
text-decoration: none; text-decoration: none;
@@ -67,61 +50,91 @@ limitations under the License.
margin-right: 0; margin-right: 0;
} }
.roomHeaderInfo {
display: grid;
column-gap: var(--cpd-space-4x);
grid-template-columns: auto auto;
grid-template-rows: 1fr auto;
}
.roomHeaderInfo[data-size="sm"] {
grid-template-areas: "avatar name" ". participants";
}
.roomHeaderInfo[data-size="lg"] {
grid-template-areas: "avatar name" "avatar participants";
}
.roomAvatar { .roomAvatar {
align-self: flex-start; position: relative;
grid-area: avatar; display: none;
} justify-content: center;
.nameLine {
grid-area: name;
flex-grow: 1;
min-width: 0;
display: flex;
align-items: center; align-items: center;
gap: var(--cpd-space-1x); width: 36px;
height: 36px;
border-radius: 36px;
background-color: #5c56f5;
} }
.nameLine > h1 { .roomAvatar > * {
fill: white;
stroke: white;
}
.backButton {
background: transparent;
border: none;
display: flex;
color: var(--primary-content);
cursor: pointer;
align-items: center;
}
.backButton h3 {
margin: 0; margin: 0;
overflow: hidden;
text-overflow: ellipsis;
} }
.nameLine > svg { .backButton > * {
margin-right: 12px;
}
.backButton > :last-child {
margin-right: 0;
}
.userName {
font-weight: 600;
margin-right: 8px;
text-overflow: ellipsis;
overflow: hidden;
flex-shrink: 1;
}
.signOutButton {
background: transparent;
border: none;
color: rgb(255, 75, 85);
cursor: pointer;
font-weight: 600;
flex-shrink: 0; flex-shrink: 0;
} }
.participantsLine { .versionMismatchWarning {
grid-area: participants; padding-left: 15px;
color: var(--cpd-color-text-secondary); }
display: flex;
align-items: center; .versionMismatchWarning::before {
gap: var(--cpd-space-1-5x); content: "";
display: inline-block;
position: relative;
top: 1px;
width: 16px;
height: 16px;
mask-image: url("./icons/AlertTriangleFilled.svg");
mask-repeat: no-repeat;
mask-size: contain;
background-color: var(--alert);
padding-right: 5px;
} }
@media (min-width: 800px) { @media (min-width: 800px) {
.headerLogo, .headerLogo,
.roomAvatar,
.leftNav.hideMobile, .leftNav.hideMobile,
.rightNav.hideMobile { .rightNav.hideMobile {
display: flex; display: flex;
} }
.leftNav h3 { .leftNav h3 {
font-size: var(--font-size-subtitle); font-size: 18px;
}
.nav {
height: 76px;
} }
} }

106
src/Header.stories.jsx Normal file
View File

@@ -0,0 +1,106 @@
import React from "react";
import { GridLayoutMenu } from "./room/GridLayoutMenu";
import {
Header,
HeaderLogo,
LeftNav,
RightNav,
RoomHeaderInfo,
} from "./Header";
import { UserMenu } from "./UserMenu";
export default {
title: "Header",
component: Header,
parameters: {
layout: "fullscreen",
},
};
export const HomeAnonymous = () => (
<Header>
<LeftNav>
<HeaderLogo />
</LeftNav>
<RightNav>
<UserMenu />
</RightNav>
</Header>
);
export const HomeNamedGuest = () => (
<Header>
<LeftNav>
<HeaderLogo />
</LeftNav>
<RightNav>
<UserMenu isAuthenticated isPasswordlessUser displayName="Yara" />
</RightNav>
</Header>
);
export const HomeLoggedIn = () => (
<Header>
<LeftNav>
<HeaderLogo />
</LeftNav>
<RightNav>
<UserMenu isAuthenticated displayName="Yara" />
</RightNav>
</Header>
);
export const LobbyNamedGuest = () => (
<Header>
<LeftNav>
<RoomHeaderInfo roomName="Q4Roadmap" />
</LeftNav>
<RightNav>
<UserMenu isAuthenticated isPasswordlessUser displayName="Yara" />
</RightNav>
</Header>
);
export const LobbyLoggedIn = () => (
<Header>
<LeftNav>
<RoomHeaderInfo roomName="Q4Roadmap" />
</LeftNav>
<RightNav>
<UserMenu isAuthenticated displayName="Yara" />
</RightNav>
</Header>
);
export const InRoomNamedGuest = () => (
<Header>
<LeftNav>
<RoomHeaderInfo roomName="Q4Roadmap" />
</LeftNav>
<RightNav>
<GridLayoutMenu layout="freedom" />
<UserMenu isAuthenticated isPasswordlessUser displayName="Yara" />
</RightNav>
</Header>
);
export const InRoomLoggedIn = () => (
<Header>
<LeftNav>
<RoomHeaderInfo roomName="Q4Roadmap" />
</LeftNav>
<RightNav>
<GridLayoutMenu layout="freedom" />
<UserMenu isAuthenticated displayName="Yara" />
</RightNav>
</Header>
);
export const CreateAccount = () => (
<Header>
<LeftNav>
<HeaderLogo />
</LeftNav>
<RightNav></RightNav>
</Header>
);

View File

@@ -1,52 +1,33 @@
/*
Copyright 2022-2024 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 classNames from "classnames"; import classNames from "classnames";
import { FC, HTMLAttributes, ReactNode, forwardRef } from "react"; import React, { HTMLAttributes, ReactNode, useCallback, useRef } from "react";
import { Link } from "react-router-dom"; import { Link } from "react-router-dom";
import { useButton } from "@react-aria/button";
import { AriaButtonProps } from "@react-types/button";
import { Room } from "matrix-js-sdk/src/models/room";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { Heading, Text } from "@vector-im/compound-web";
import { UserProfileIcon } from "@vector-im/compound-design-tokens/assets/web/icons";
import styles from "./Header.module.css"; import styles from "./Header.module.css";
import Logo from "./icons/Logo.svg?react"; import { useModalTriggerState } from "./Modal";
import { Button } from "./button";
import { ReactComponent as Logo } from "./icons/Logo.svg";
import { ReactComponent as VideoIcon } from "./icons/Video.svg";
import { Subtitle } from "./typography/Typography";
import { Avatar, Size } from "./Avatar"; import { Avatar, Size } from "./Avatar";
import { EncryptionLock } from "./room/EncryptionLock"; import { IncompatibleVersionModal } from "./IncompatibleVersionModal";
import { useMediaQuery } from "./useMediaQuery"; import { ReactComponent as ArrowLeftIcon } from "./icons/ArrowLeft.svg";
interface HeaderProps extends HTMLAttributes<HTMLElement> { interface HeaderProps extends HTMLAttributes<HTMLElement> {
children: ReactNode; children: ReactNode;
className?: string; className?: string;
} }
export const Header = forwardRef<HTMLElement, HeaderProps>( export function Header({ children, className, ...rest }: HeaderProps) {
({ children, className, ...rest }, ref) => { return (
return ( <header className={classNames(styles.header, className)} {...rest}>
<header {children}
ref={ref} </header>
className={classNames(styles.header, className)} );
{...rest} }
>
{children}
</header>
);
},
);
Header.displayName = "Header";
interface LeftNavProps extends HTMLAttributes<HTMLElement> { interface LeftNavProps extends HTMLAttributes<HTMLElement> {
children: ReactNode; children: ReactNode;
@@ -54,26 +35,26 @@ interface LeftNavProps extends HTMLAttributes<HTMLElement> {
hideMobile?: boolean; hideMobile?: boolean;
} }
export const LeftNav: FC<LeftNavProps> = ({ export function LeftNav({
children, children,
className, className,
hideMobile, hideMobile,
...rest ...rest
}) => { }: LeftNavProps) {
return ( return (
<div <div
className={classNames( className={classNames(
styles.nav, styles.nav,
styles.leftNav, styles.leftNav,
{ [styles.hideMobile]: hideMobile }, { [styles.hideMobile]: hideMobile },
className, className
)} )}
{...rest} {...rest}
> >
{children} {children}
</div> </div>
); );
}; }
interface RightNavProps extends HTMLAttributes<HTMLElement> { interface RightNavProps extends HTMLAttributes<HTMLElement> {
children?: ReactNode; children?: ReactNode;
@@ -81,95 +62,119 @@ interface RightNavProps extends HTMLAttributes<HTMLElement> {
hideMobile?: boolean; hideMobile?: boolean;
} }
export const RightNav: FC<RightNavProps> = ({ export function RightNav({
children, children,
className, className,
hideMobile, hideMobile,
...rest ...rest
}) => { }: RightNavProps) {
return ( return (
<div <div
className={classNames( className={classNames(
styles.nav, styles.nav,
styles.rightNav, styles.rightNav,
{ [styles.hideMobile]: hideMobile }, { [styles.hideMobile]: hideMobile },
className, className
)} )}
{...rest} {...rest}
> >
{children} {children}
</div> </div>
); );
}; }
interface HeaderLogoProps { interface HeaderLogoProps {
className?: string; className?: string;
} }
export const HeaderLogo: FC<HeaderLogoProps> = ({ className }) => { export function HeaderLogo({ className }: HeaderLogoProps) {
const { t } = useTranslation();
return ( return (
<Link <Link className={classNames(styles.headerLogo, className)} to="/">
className={classNames(styles.headerLogo, className)}
to="/"
aria-label={t("header_label")}
>
<Logo /> <Logo />
</Link> </Link>
); );
};
interface RoomHeaderInfoProps {
id: string;
name: string;
avatarUrl: string | null;
encrypted: boolean;
participantCount: number | null;
} }
export const RoomHeaderInfo: FC<RoomHeaderInfoProps> = ({ interface RoomHeaderInfo {
id, roomName: string;
name, avatarUrl: string;
}
export function RoomHeaderInfo({ roomName, avatarUrl }: RoomHeaderInfo) {
return (
<>
<div className={styles.roomAvatar}>
<Avatar
size={Size.MD}
src={avatarUrl}
bgKey={roomName}
fallback={roomName.slice(0, 1).toUpperCase()}
/>
<VideoIcon width={16} height={16} />
</div>
<Subtitle fontWeight="semiBold">{roomName}</Subtitle>
</>
);
}
interface RoomSetupHeaderInfoProps extends AriaButtonProps<"button"> {
roomName: string;
avatarUrl: string;
isEmbedded: boolean;
}
export function RoomSetupHeaderInfo({
roomName,
avatarUrl, avatarUrl,
encrypted, isEmbedded,
participantCount, ...rest
}) => { }: RoomSetupHeaderInfoProps) {
const { t } = useTranslation(); const ref = useRef();
const size = useMediaQuery("(max-width: 550px)") ? "sm" : "lg"; const { buttonProps } = useButton(rest, ref);
if (isEmbedded) {
return (
<div ref={ref}>
<RoomHeaderInfo roomName={roomName} avatarUrl={avatarUrl} />
</div>
);
}
return ( return (
<div className={styles.roomHeaderInfo} data-size={size}> <button className={styles.backButton} ref={ref} {...buttonProps}>
<Avatar <ArrowLeftIcon width={16} height={16} />
className={styles.roomAvatar} <RoomHeaderInfo roomName={roomName} avatarUrl={avatarUrl} />
id={id} </button>
name={name}
size={size === "sm" ? Size.SM : 56}
src={avatarUrl ?? undefined}
/>
<div className={styles.nameLine}>
<Heading
type={size === "sm" ? "body" : "heading"}
size={size === "sm" ? "lg" : "md"}
weight="semibold"
data-testid="roomHeader_roomName"
>
{name}
</Heading>
<EncryptionLock encrypted={encrypted} />
</div>
{(participantCount ?? 0) > 0 && (
<div className={styles.participantsLine}>
<UserProfileIcon
width={20}
height={20}
aria-label={t("header_participants_label")}
/>
<Text as="span" size="sm" weight="medium">
{t("participant_count", { count: participantCount ?? 0 })}
</Text>
</div>
)}
</div>
); );
}; }
interface VersionMismatchWarningProps {
users: Set<string>;
room: Room;
}
export function VersionMismatchWarning({
users,
room,
}: VersionMismatchWarningProps) {
const { t } = useTranslation();
const { modalState, modalProps } = useModalTriggerState();
const onDetailsClick = useCallback(() => {
modalState.open();
}, [modalState]);
if (users.size === 0) return null;
return (
<span className={styles.versionMismatchWarning}>
{t("Incompatible versions!")}
<Button variant="link" onClick={onDetailsClick}>
{t("Details")}
</Button>
{modalState.isOpen && (
<IncompatibleVersionModal userIds={users} room={room} {...modalProps} />
)}
</span>
);
}

View File

@@ -0,0 +1,53 @@
/*
Copyright 2022 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 { Room } from "matrix-js-sdk/src/models/room";
import React, { useMemo } from "react";
import { Trans, useTranslation } from "react-i18next";
import { Modal, ModalContent } from "./Modal";
import { Body } from "./typography/Typography";
interface Props {
userIds: Set<string>;
room: Room;
}
export const IncompatibleVersionModal: React.FC<Props> = ({
userIds,
room,
...rest
}) => {
const { t } = useTranslation();
const userLis = useMemo(
() => [...userIds].map((u) => <li>{room.getMember(u)?.name ?? u}</li>),
[userIds, room]
);
return (
<Modal title={t("Incompatible versions")} isDismissable {...rest}>
<ModalContent>
<Body>
<Trans>
Other users are trying to join this call from incompatible versions.
These users should ensure that they have refreshed their browsers:
<ul>{userLis}</ul>
</Trans>
</Body>
</ModalContent>
</Modal>
);
};

View File

@@ -1,19 +1,3 @@
/*
Copyright 2022 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 { IndexedDBStoreWorker } from "matrix-js-sdk/src/indexeddb-worker"; import { IndexedDBStoreWorker } from "matrix-js-sdk/src/indexeddb-worker";
// eslint-disable-next-line @typescript-eslint/no-explicit-any // eslint-disable-next-line @typescript-eslint/no-explicit-any

View File

@@ -1,5 +1,5 @@
/* /*
Copyright 2022 New Vector Ltd Copyright 2022 Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@@ -63,7 +63,7 @@ export class LazyEventEmitter extends EventEmitter {
public addListener( public addListener(
type: string | symbol, type: string | symbol,
// eslint-disable-next-line @typescript-eslint/no-explicit-any // eslint-disable-next-line @typescript-eslint/no-explicit-any
listener: (...args: any[]) => void, listener: (...args: any[]) => void
): this { ): this {
return this.on(type, listener); return this.on(type, listener);
} }

33
src/ListBox.module.css Normal file
View File

@@ -0,0 +1,33 @@
.listBox {
margin: 0;
padding: 0;
max-height: 150px;
overflow-y: auto;
list-style: none;
background-color: transparent;
border: 1px solid var(--quinary-content);
background-color: var(--background);
border-radius: 8px;
}
.option {
display: flex;
align-items: center;
justify-content: space-between;
background-color: transparent;
color: var(--primary-content);
padding: 8px 16px;
outline: none;
cursor: pointer;
font-size: 15px;
min-height: 32px;
}
.option.focused {
background-color: rgba(111, 120, 130, 0.2);
}
.option.disabled {
color: var(--quaternary-content);
background-color: var(--bgColor3);
}

89
src/ListBox.tsx Normal file
View File

@@ -0,0 +1,89 @@
/*
Copyright 2022 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 React, { useRef } from "react";
import { useListBox, useOption, AriaListBoxOptions } from "@react-aria/listbox";
import { ListState } from "@react-stately/list";
import { Node } from "@react-types/shared";
import classNames from "classnames";
import styles from "./ListBox.module.css";
interface ListBoxProps<T> extends AriaListBoxOptions<T> {
optionClassName: string;
state: ListState<T>;
className?: string;
listBoxRef?: React.MutableRefObject<HTMLUListElement>;
}
export function ListBox<T>({
state,
optionClassName,
className,
listBoxRef,
...rest
}: ListBoxProps<T>) {
const ref = useRef<HTMLUListElement>();
if (!listBoxRef) listBoxRef = ref;
const { listBoxProps } = useListBox(rest, state, listBoxRef);
return (
<ul
{...listBoxProps}
ref={listBoxRef}
className={classNames(styles.listBox, className)}
>
{[...state.collection].map((item) => (
<Option
key={item.key}
item={item}
state={state}
className={optionClassName}
/>
))}
</ul>
);
}
interface OptionProps<T> {
className: string;
state: ListState<T>;
item: Node<T>;
}
function Option<T>({ item, state, className }: OptionProps<T>) {
const ref = useRef();
const { optionProps, isSelected, isFocused, isDisabled } = useOption(
{ key: item.key },
state,
ref
);
return (
<li
{...optionProps}
ref={ref}
className={classNames(styles.option, className, {
[styles.selected]: isSelected,
[styles.focused]: isFocused,
[styles.disables]: isDisabled,
})}
>
{item.rendered}
</li>
);
}

50
src/Menu.module.css Normal file
View File

@@ -0,0 +1,50 @@
.menu {
width: 100%;
padding: 0;
margin: 0;
list-style: none;
}
.menuItem {
cursor: pointer;
height: 48px;
display: flex;
align-items: center;
padding: 0 12px;
color: var(--primary-content);
font-size: 14px;
}
.menuItem > * {
margin: 0 10px 0 0;
}
.menuItem > :last-child {
margin-right: 0;
}
.menuItem.focused,
.menuItem:hover {
background-color: var(--quinary-content);
}
.menuItem.focused:first-child,
.menuItem:hover:first-child {
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.menuItem.focused:last-child,
.menuItem:hover:last-child {
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.checkIcon {
position: absolute;
right: 16px;
}
.checkIcon * {
stroke: var(--primary-content);
}

81
src/Menu.tsx Normal file
View File

@@ -0,0 +1,81 @@
import React, { Key, useRef, useState } from "react";
import { AriaMenuOptions, useMenu, useMenuItem } from "@react-aria/menu";
import { TreeState, useTreeState } from "@react-stately/tree";
import { mergeProps } from "@react-aria/utils";
import { useFocus } from "@react-aria/interactions";
import classNames from "classnames";
import { Node } from "@react-types/shared";
import styles from "./Menu.module.css";
interface MenuProps<T> extends AriaMenuOptions<T> {
className?: String;
onClose?: () => void;
onAction: (value: Key) => void;
label?: string;
}
export function Menu<T extends object>({
className,
onAction,
onClose,
label,
...rest
}: MenuProps<T>) {
const state = useTreeState<T>({ ...rest, selectionMode: "none" });
const menuRef = useRef();
const { menuProps } = useMenu<T>(rest, state, menuRef);
return (
<ul
{...mergeProps(menuProps, rest)}
ref={menuRef}
className={classNames(styles.menu, className)}
>
{[...state.collection].map((item) => (
<MenuItem
key={item.key}
item={item}
state={state}
onAction={onAction}
onClose={onClose}
/>
))}
</ul>
);
}
interface MenuItemProps<T> {
item: Node<T>;
state: TreeState<T>;
onAction: (value: Key) => void;
onClose: () => void;
}
function MenuItem<T>({ item, state, onAction, onClose }: MenuItemProps<T>) {
const ref = useRef();
const { menuItemProps } = useMenuItem(
{
key: item.key,
onAction,
onClose,
},
state,
ref
);
const [isFocused, setFocused] = useState(false);
const { focusProps } = useFocus({ onFocusChange: setFocused });
return (
<li
{...mergeProps(menuItemProps, focusProps)}
ref={ref}
className={classNames(styles.menuItem, {
[styles.focused]: isFocused,
})}
>
{item.rendered}
</li>
);
}

Some files were not shown because too many files have changed in this diff Show More