Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f1866517b |
25
.env.example
25
.env.example
@@ -3,17 +3,22 @@
|
|||||||
# 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_FALLBACK_STUN_ALLOWED=false
|
# VITE_FALLBACK_STUN_ALLOWED=false
|
||||||
|
|
||||||
# CSS to be injected into the page for the purpose of custom theming.
|
# VITE_CUSTOM_THEME=true
|
||||||
# Generally, writing a custom theme involves overriding Compound design tokens,
|
# VITE_THEME_ACCENT=#0dbd8b
|
||||||
# which are documented here:
|
# VITE_THEME_ACCENT_20=#0dbd8b33
|
||||||
# https://compound.element.io/?path=/docs/foundations-design-tokens--docs
|
# VITE_THEME_ALERT=#ff5b55
|
||||||
# https://compound.element.io/?path=/docs/tokens-color-palettes--docs
|
# VITE_THEME_ALERT_20=#ff5b5533
|
||||||
# https://compound.element.io/?path=/docs/tokens-semantic-colors--docs
|
# VITE_THEME_LINKS=#0086e6
|
||||||
# VITE_CUSTOM_CSS=".cpd-theme-dark.cpd-theme-dark { --cpd-color-theme-bg: #101317; }"
|
# 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
|
||||||
|
|||||||
@@ -1,54 +1,31 @@
|
|||||||
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: ["matrix-org"],
|
||||||
extends: [
|
extends: ["plugin:matrix-org/react", "plugin:matrix-org/a11y", "prettier"],
|
||||||
"plugin:matrix-org/react",
|
|
||||||
"plugin:matrix-org/a11y",
|
|
||||||
"plugin:matrix-org/typescript",
|
|
||||||
"prettier",
|
|
||||||
],
|
|
||||||
parserOptions: {
|
|
||||||
ecmaVersion: "latest",
|
|
||||||
sourceType: "module",
|
|
||||||
project: ["./tsconfig.json"],
|
|
||||||
},
|
|
||||||
env: {
|
env: {
|
||||||
browser: true,
|
browser: true,
|
||||||
node: true,
|
node: true,
|
||||||
},
|
},
|
||||||
rules: {
|
parserOptions: {
|
||||||
"matrix-org/require-copyright-header": ["error", COPYRIGHT_HEADER],
|
ecmaVersion: "latest",
|
||||||
"jsx-a11y/media-has-caption": "off",
|
sourceType: "module",
|
||||||
// We should use the js-sdk logger, never console directly.
|
|
||||||
"no-console": ["error"],
|
|
||||||
"no-restricted-imports": [
|
|
||||||
"error",
|
|
||||||
{
|
|
||||||
name: "@react-rxjs/core",
|
|
||||||
importNames: ["Subscribe", "RemoveSubscribe"],
|
|
||||||
message:
|
|
||||||
"These components are easy to misuse, please use the 'subscribe' component wrapper instead",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"react/display-name": "error",
|
|
||||||
},
|
},
|
||||||
|
rules: {
|
||||||
|
"jsx-a11y/media-has-caption": ["off"],
|
||||||
|
},
|
||||||
|
overrides: [
|
||||||
|
{
|
||||||
|
files: ["src/**/*.{ts,tsx}"],
|
||||||
|
extends: [
|
||||||
|
"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: {
|
settings: {
|
||||||
react: {
|
react: {
|
||||||
version: "detect",
|
version: "detect",
|
||||||
|
|||||||
2
.github/CODEOWNERS
vendored
2
.github/CODEOWNERS
vendored
@@ -1 +1 @@
|
|||||||
* @element-hq/element-call-reviewers
|
* @vector-im/element-call-reviewers
|
||||||
|
|||||||
13
.github/workflows/build.yaml
vendored
13
.github/workflows/build.yaml
vendored
@@ -2,16 +2,16 @@ name: Build
|
|||||||
on:
|
on:
|
||||||
pull_request: {}
|
pull_request: {}
|
||||||
push:
|
push:
|
||||||
branches: [livekit, full-mesh]
|
branches: [main]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v2
|
||||||
- name: Yarn cache
|
- name: Yarn cache
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
cache: "yarn"
|
cache: "yarn"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
@@ -23,10 +23,11 @@ jobs:
|
|||||||
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
||||||
SENTRY_URL: ${{ secrets.SENTRY_URL }}
|
SENTRY_URL: ${{ secrets.SENTRY_URL }}
|
||||||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
||||||
VITE_APP_VERSION: ${{ github.sha }}
|
# This appears to be necessary to stop Vite from OOMing
|
||||||
NODE_OPTIONS: "--max-old-space-size=4096"
|
# https://github.com/vitejs/vite/issues/2433
|
||||||
|
NODE_OPTIONS: "--max-old-space-size=16384"
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: build
|
name: build
|
||||||
path: dist
|
path: dist
|
||||||
|
|||||||
6
.github/workflows/e2e.yml
vendored
6
.github/workflows/e2e.yml
vendored
@@ -5,16 +5,16 @@ on:
|
|||||||
types:
|
types:
|
||||||
- completed
|
- completed
|
||||||
branches-ignore:
|
branches-ignore:
|
||||||
- "livekit"
|
- "main"
|
||||||
jobs:
|
jobs:
|
||||||
e2e:
|
e2e:
|
||||||
name: E2E tests runs on Element Call
|
name: E2E tests runs on Element Call
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out test private repo
|
- name: Check out test private repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: element-hq/static-call-participant
|
repository: vector-im/static-call-participant
|
||||||
ref: refs/heads/main
|
ref: refs/heads/main
|
||||||
path: static-call-participant
|
path: static-call-participant
|
||||||
token: ${{ secrets.GH_E2E_TEST_TOKEN }}
|
token: ${{ secrets.GH_E2E_TEST_TOKEN }}
|
||||||
|
|||||||
6
.github/workflows/lint.yaml
vendored
6
.github/workflows/lint.yaml
vendored
@@ -7,9 +7,9 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v2
|
||||||
- name: Yarn cache
|
- name: Yarn cache
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
cache: "yarn"
|
cache: "yarn"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
@@ -19,6 +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"
|
||||||
|
|||||||
88
.github/workflows/netlify-main.yaml
vendored
Normal file
88
.github/workflows/netlify-main.yaml
vendored
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
name: Netlify Main
|
||||||
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: ["Build"]
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
branches:
|
||||||
|
- "main"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
deployments: write
|
||||||
|
# Important: the 'branches' filter above will match the 'main' branch on forks,
|
||||||
|
# so we need to check the head repo too in order to not run on PRs from forks
|
||||||
|
# We check the branch name again too just for completeness
|
||||||
|
# (Is there a nicer way to see if a PR is from a fork?)
|
||||||
|
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_repository.full_name == 'vector-im/element-call' && github.event.workflow_run.head_branch == 'main'
|
||||||
|
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: Add config file
|
||||||
|
run: curl -s https://raw.githubusercontent.com/vector-im/element-call/main/config/element_io_develop.json > dist/config.json
|
||||||
|
|
||||||
|
- 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 }}
|
||||||
11
.github/workflows/netlify-pr.yaml
vendored
11
.github/workflows/netlify-pr.yaml
vendored
@@ -6,7 +6,6 @@ on:
|
|||||||
- completed
|
- completed
|
||||||
branches-ignore:
|
branches-ignore:
|
||||||
- "main"
|
- "main"
|
||||||
- "livekit"
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request'
|
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request'
|
||||||
@@ -28,7 +27,7 @@ jobs:
|
|||||||
Exercise caution. Use test accounts.
|
Exercise caution. Use test accounts.
|
||||||
|
|
||||||
- id: prdetails
|
- id: prdetails
|
||||||
uses: matrix-org/pr-details-action@v1.3
|
uses: matrix-org/pr-details-action@v1.2
|
||||||
with:
|
with:
|
||||||
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
|
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
|
||||||
branch: ${{ github.event.workflow_run.head_branch }}
|
branch: ${{ github.event.workflow_run.head_branch }}
|
||||||
@@ -36,7 +35,7 @@ jobs:
|
|||||||
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action
|
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action
|
||||||
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
|
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
|
||||||
- name: 📥 Download artifact
|
- name: 📥 Download artifact
|
||||||
uses: dawidd6/action-download-artifact@v3
|
uses: dawidd6/action-download-artifact@v2
|
||||||
with:
|
with:
|
||||||
run_id: ${{ github.event.workflow_run.id }}
|
run_id: ${{ github.event.workflow_run.id }}
|
||||||
name: build
|
name: build
|
||||||
@@ -44,16 +43,16 @@ jobs:
|
|||||||
|
|
||||||
- name: Add redirects file
|
- name: Add redirects file
|
||||||
# We fetch from github directly as we don't bother checking out the repo
|
# 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
|
run: curl -s https://raw.githubusercontent.com/vector-im/element-call/main/config/netlify_redirects > webapp/_redirects
|
||||||
|
|
||||||
- name: Add config file
|
- name: Add config file
|
||||||
env:
|
env:
|
||||||
HEADBRACH: ${{ github.event.workflow_run.head_branch }}
|
HEADBRACH: ${{ github.event.workflow_run.head_branch }}
|
||||||
run: curl -s "https://raw.githubusercontent.com/element-hq/element-call/${HEADBRACH}/config/element_io_preview.json" > webapp/config.json
|
run: curl -s "https://raw.githubusercontent.com/vector-im/element-call/${HEADBRACH}/config/element_io_preview.json" > webapp/config.json
|
||||||
|
|
||||||
- name: ☁️ Deploy to Netlify
|
- name: ☁️ Deploy to Netlify
|
||||||
id: netlify
|
id: netlify
|
||||||
uses: nwtgck/actions-netlify@v2.1
|
uses: nwtgck/actions-netlify@v1.2
|
||||||
with:
|
with:
|
||||||
publish-dir: webapp
|
publish-dir: webapp
|
||||||
deploy-message: "Deploy from GitHub Actions"
|
deploy-message: "Deploy from GitHub Actions"
|
||||||
|
|||||||
37
.github/workflows/publish.yaml
vendored
37
.github/workflows/publish.yaml
vendored
@@ -3,8 +3,6 @@ name: Build & publish images to the package registry for tags
|
|||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
push:
|
|
||||||
branches: [livekit]
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
@@ -18,22 +16,18 @@ jobs:
|
|||||||
contents: write # required to upload release asset
|
contents: write # required to upload release asset
|
||||||
packages: write
|
packages: write
|
||||||
steps:
|
steps:
|
||||||
- name: Get current time
|
|
||||||
id: current-time
|
|
||||||
run: echo "unix_time=$(date +'%s')" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Check it out
|
- name: Check it out
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Log in to container registry
|
- name: Log in to container registry
|
||||||
uses: docker/login-action@3d58c274f17dffee475a5520cbe67f0a882c4dbb
|
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
|
||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Yarn cache
|
- name: Yarn cache
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
cache: "yarn"
|
cache: "yarn"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
@@ -45,37 +39,34 @@ jobs:
|
|||||||
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
||||||
SENTRY_URL: ${{ secrets.SENTRY_URL }}
|
SENTRY_URL: ${{ secrets.SENTRY_URL }}
|
||||||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
||||||
VITE_APP_VERSION: ${{ github.event.release.tag_name || github.sha }}
|
VITE_APP_VERSION: ${{ github.event.release.tag_name }}
|
||||||
|
# This appears to be necessary to stop Vite from OOMing
|
||||||
|
# https://github.com/vitejs/vite/issues/2433
|
||||||
|
NODE_OPTIONS: "--max-old-space-size=16384"
|
||||||
|
|
||||||
- name: Create Tarball
|
- name: Create Tarball
|
||||||
env:
|
env:
|
||||||
TARBALL_VERSION: ${{ github.event.release.tag_name || github.sha }}
|
GITHUB_TAG_NAME: ${{ github.event.release.tag_name }}
|
||||||
run: |
|
run: |
|
||||||
tar --numeric-owner --transform "s/dist/element-call-${TARBALL_VERSION}/" -cvzf element-call-${TARBALL_VERSION}.tar.gz dist
|
tar --numeric-owner --transform "s/dist/element-call-${GITHUB_TAG_NAME}/" -cvzf element-call-${GITHUB_TAG_NAME}.tar.gz dist
|
||||||
|
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595
|
uses: alexellis/upload-assets@0.4.0
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
with:
|
with:
|
||||||
path: "./element-call-*.tar.gz"
|
asset_paths: '["element-call-${{ github.event.release.tag_name }}.tar.gz"]'
|
||||||
|
|
||||||
- name: Extract metadata (tags, labels) for Docker
|
- name: Extract metadata (tags, labels) for Docker
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@dbef88086f6cef02e264edb7dbf63250c17cef6c
|
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
|
||||||
with:
|
with:
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
tags: |
|
|
||||||
type=sha,format=short,event=branch
|
|
||||||
type=semver,pattern=v{{version}}
|
|
||||||
type=raw,value=latest-ci,enable={{is_default_branch}}
|
|
||||||
type=raw,value=latest-ci_${{steps.current-time.outputs.unix_time}},enable={{is_default_branch}}
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@edfb0fe6204400c56fbfd3feba3fe9ad1adfa345
|
uses: docker/setup-buildx-action@dc7b9719a96d48369863986a06765841d7ea23f6
|
||||||
|
|
||||||
- name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
uses: docker/build-push-action@9f6f8c940b91232557f8699b21341a08624a8dce
|
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|||||||
10
.github/workflows/test.yaml
vendored
10
.github/workflows/test.yaml
vendored
@@ -1,24 +1,18 @@
|
|||||||
name: Run jest tests
|
name: Run jest tests
|
||||||
on:
|
on:
|
||||||
pull_request: {}
|
pull_request: {}
|
||||||
push:
|
|
||||||
branches: [livekit, full-mesh]
|
|
||||||
jobs:
|
jobs:
|
||||||
jest:
|
jest:
|
||||||
name: Run jest tests
|
name: Run jest tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v2
|
||||||
- name: Yarn cache
|
- name: Yarn cache
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
cache: "yarn"
|
cache: "yarn"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: "yarn install"
|
run: "yarn install"
|
||||||
- name: Jest
|
- name: Jest
|
||||||
run: "yarn run test"
|
run: "yarn run test"
|
||||||
- name: Upload to codecov
|
|
||||||
uses: codecov/codecov-action@v3
|
|
||||||
with:
|
|
||||||
flags: unittests
|
|
||||||
|
|||||||
56
.github/workflows/translations-download.yaml
vendored
56
.github/workflows/translations-download.yaml
vendored
@@ -1,56 +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@v4
|
|
||||||
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
cache: "yarn"
|
|
||||||
|
|
||||||
- name: Install Deps
|
|
||||||
run: "yarn install --frozen-lockfile"
|
|
||||||
|
|
||||||
- name: Prune i18n
|
|
||||||
run: "rm -R public/locales"
|
|
||||||
|
|
||||||
- name: Download translation files
|
|
||||||
uses: localazy/download@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@v5.0.2
|
|
||||||
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 }}
|
|
||||||
20
.github/workflows/translations-upload.yaml
vendored
20
.github/workflows/translations-upload.yaml
vendored
@@ -1,20 +0,0 @@
|
|||||||
name: Upload translation files to Localazy
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- livekit
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
upload:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout the code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Upload
|
|
||||||
uses: localazy/upload@v1
|
|
||||||
with:
|
|
||||||
write_key: ${{ secrets.LOCALAZY_WRITE_KEY }}
|
|
||||||
27
.github/workflows/triage-incoming.yaml
vendored
Normal file
27
.github/workflows/triage-incoming.yaml
vendored
Normal 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 }}
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -7,4 +7,3 @@ dist-ssr
|
|||||||
.idea/
|
.idea/
|
||||||
public/config.json
|
public/config.json
|
||||||
/coverage
|
/coverage
|
||||||
yarn-error.log
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ module.exports = {
|
|||||||
Array.isArray(item) &&
|
Array.isArray(item) &&
|
||||||
item.length > 0 &&
|
item.length > 0 &&
|
||||||
item[0].name === "vite-plugin-mdx"
|
item[0].name === "vite-plugin-mdx"
|
||||||
),
|
)
|
||||||
);
|
);
|
||||||
config.plugins.push(svgrPlugin());
|
config.plugins.push(svgrPlugin());
|
||||||
config.resolve = config.resolve || {};
|
config.resolve = config.resolve || {};
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import React from "react";
|
||||||
import { addDecorator } from "@storybook/react";
|
import { addDecorator } from "@storybook/react";
|
||||||
import { MemoryRouter } from "react-router-dom";
|
import { MemoryRouter } from "react-router-dom";
|
||||||
import { usePageFocusStyle } from "../src/usePageFocusStyle";
|
import { usePageFocusStyle } from "../src/usePageFocusStyle";
|
||||||
|
|||||||
57
README.md
57
README.md
@@ -1,22 +1,20 @@
|
|||||||
# Element Call
|
# Element Call
|
||||||
|
|
||||||
[](https://matrix.to/#/#webrtc:matrix.org)
|
[](https://matrix.to/#/#webrtc:matrix.org)
|
||||||
[](https://localazy.com/p/element-call)
|
[](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 [call.element.dev](https://call.element.dev/).
|
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).
|
||||||
|
|
||||||
## 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
|
||||||
yarn build
|
yarn build
|
||||||
@@ -50,18 +48,24 @@ Element Call requires a homeserver with registration enabled without any 3pid or
|
|||||||
|
|
||||||
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.
|
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
|
### Features
|
||||||
|
|
||||||
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).
|
#### Allow joining group calls without a camera and a microphone
|
||||||
|
|
||||||
## Translation
|
You can allow joining a group call without video and audio enabling this feature in your `config.json`:
|
||||||
|
|
||||||
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.
|
```json
|
||||||
|
{
|
||||||
|
...
|
||||||
|
|
||||||
|
"features": {
|
||||||
|
"feature_group_calls_without_video_and_audio": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
### Frontend
|
|
||||||
|
|
||||||
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:
|
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:
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -74,7 +78,7 @@ 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
|
||||||
@@ -86,29 +90,10 @@ You're now ready to launch the development server:
|
|||||||
yarn dev
|
yarn dev
|
||||||
```
|
```
|
||||||
|
|
||||||
### Backend
|
## Configuration
|
||||||
|
|
||||||
A docker compose file is provided to start a LiveKit server and auth
|
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).
|
||||||
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 SFU parameter in your local config `./public/config.json`:
|
## Translation
|
||||||
|
|
||||||
```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:8881"
|
|
||||||
},
|
|
||||||
```
|
|
||||||
|
|
||||||
Run backend components:
|
|
||||||
|
|
||||||
```
|
|
||||||
yarn backend
|
|
||||||
```
|
|
||||||
|
|
||||||
## Documentation
|
|
||||||
|
|
||||||
Usage and other technical details about the project can be found here:
|
|
||||||
|
|
||||||
[**Docs**](./docs/README.md)
|
|
||||||
|
|||||||
@@ -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"],
|
||||||
|
|||||||
@@ -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
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
port: 7880
|
|
||||||
environment: dev
|
|
||||||
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
|
|
||||||
signal_relay:
|
|
||||||
enabled: true
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
bind 0.0.0.0
|
|
||||||
protected-mode yes
|
|
||||||
port 6379
|
|
||||||
timeout 0
|
|
||||||
tcp-keepalive 300
|
|
||||||
@@ -4,6 +4,5 @@
|
|||||||
"base_url": "https://call.ems.host",
|
"base_url": "https://call.ems.host",
|
||||||
"server_name": "call.ems.host"
|
"server_name": "call.ems.host"
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"eula": "https://static.element.io/legal/online-EULA.pdf"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,10 @@
|
|||||||
{
|
{
|
||||||
"default_server_config": {
|
"default_server_config": {
|
||||||
"m.homeserver": {
|
"m.homeserver": {
|
||||||
"base_url": "https://call-unstable.ems.host",
|
"base_url": "https://call.ems.host",
|
||||||
"server_name": "call-unstable.ems.host"
|
"server_name": "call.ems.host"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"livekit": {
|
|
||||||
"livekit_service_url": "https://livekit-jwt.call.element.dev"
|
|
||||||
},
|
|
||||||
"posthog": {
|
"posthog": {
|
||||||
"api_key": "phc_rXGHx9vDmyEvyRxPziYtdVIv0ahEv8A9uLWFcCi1WcU",
|
"api_key": "phc_rXGHx9vDmyEvyRxPziYtdVIv0ahEv8A9uLWFcCi1WcU",
|
||||||
"api_host": "https://posthog-element-call.element.io"
|
"api_host": "https://posthog-element-call.element.io"
|
||||||
|
|||||||
@@ -21,9 +21,5 @@ server {
|
|||||||
expires 1w;
|
expires 1w;
|
||||||
add_header Cache-Control "public, no-transform";
|
add_header Cache-Control "public, no-transform";
|
||||||
}
|
}
|
||||||
|
|
||||||
location /apple-app-site-association {
|
|
||||||
default_type application/json;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
## Element Call Docs
|
|
||||||
|
|
||||||
This folder contains documentation for Element Call setup and usage.
|
|
||||||
|
|
||||||
- [Url format and parameters](./url-params.md)
|
|
||||||
- [Embedded vs standalone mode](./embedded-standalone.md)
|
|
||||||
@@ -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).
|
|
||||||
@@ -1,191 +0,0 @@
|
|||||||
## Url Format and parameters
|
|
||||||
|
|
||||||
There are two formats for Element Call urls.
|
|
||||||
|
|
||||||
- **Current Format**
|
|
||||||
```
|
|
||||||
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**
|
|
||||||
```
|
|
||||||
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 inplis that elemetn call will not connect to a homeserver directly and instead tries to establish postMessage communication via the `parentUrl`
|
|
||||||
|
|
||||||
```
|
|
||||||
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)
|
|
||||||
|
|
||||||
```
|
|
||||||
parentUrl: string | null;
|
|
||||||
```
|
|
||||||
|
|
||||||
**userId**
|
|
||||||
The user's ID (only used in matryoshka mode).
|
|
||||||
|
|
||||||
```
|
|
||||||
userId: string | null;
|
|
||||||
```
|
|
||||||
|
|
||||||
**deviceId**
|
|
||||||
The device's ID (only used in matryoshka mode).
|
|
||||||
|
|
||||||
```
|
|
||||||
deviceId: string | null;
|
|
||||||
```
|
|
||||||
|
|
||||||
**baseUrl**
|
|
||||||
The base URL of the homeserver to use for media lookups in matryoshka mode.
|
|
||||||
|
|
||||||
```
|
|
||||||
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().
|
|
||||||
|
|
||||||
```
|
|
||||||
roomId: string | null;
|
|
||||||
```
|
|
||||||
|
|
||||||
**confineToRoom**
|
|
||||||
Whether the app should keep the user confined to the current call/room.
|
|
||||||
|
|
||||||
```
|
|
||||||
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.)
|
|
||||||
|
|
||||||
```
|
|
||||||
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.
|
|
||||||
|
|
||||||
```
|
|
||||||
preload: boolean; (default: false)
|
|
||||||
```
|
|
||||||
|
|
||||||
**hideHeader**
|
|
||||||
Whether to hide the room header when in a call.
|
|
||||||
|
|
||||||
```
|
|
||||||
hideHeader: boolean; (default: false)
|
|
||||||
```
|
|
||||||
|
|
||||||
**showControls**
|
|
||||||
Whether to show the buttons to mute, screen-share, invite, hangup are shown when in a call.
|
|
||||||
|
|
||||||
```
|
|
||||||
showControls: boolean; (default: true)
|
|
||||||
```
|
|
||||||
|
|
||||||
**hideScreensharing**
|
|
||||||
Whether to hide the screen-sharing button.
|
|
||||||
|
|
||||||
```
|
|
||||||
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!
|
|
||||||
|
|
||||||
```
|
|
||||||
enableE2EE: boolean; (default: true)
|
|
||||||
```
|
|
||||||
|
|
||||||
**perParticipantE2EE**
|
|
||||||
Whether to use per participant encryption.
|
|
||||||
Keys will be exchanged over encrypted matrix room messages.
|
|
||||||
|
|
||||||
```
|
|
||||||
perParticipantE2EE: boolean; (default: false)
|
|
||||||
```
|
|
||||||
|
|
||||||
**password**
|
|
||||||
E2EE password when using a shared secret. (For individual sender keys in embedded mode this is not required.)
|
|
||||||
|
|
||||||
```
|
|
||||||
password: string | null;
|
|
||||||
```
|
|
||||||
|
|
||||||
**displayName**
|
|
||||||
The display name to use for auto-registration.
|
|
||||||
|
|
||||||
```
|
|
||||||
displayName: string | null;
|
|
||||||
```
|
|
||||||
|
|
||||||
**lang**
|
|
||||||
The BCP 47 code of the language the app should use.
|
|
||||||
|
|
||||||
```
|
|
||||||
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...`
|
|
||||||
|
|
||||||
```
|
|
||||||
font: string;
|
|
||||||
font: string;
|
|
||||||
...
|
|
||||||
```
|
|
||||||
|
|
||||||
**fontScale**
|
|
||||||
The factor by which to scale the interface's font size.
|
|
||||||
|
|
||||||
```
|
|
||||||
fontScale: number | null;
|
|
||||||
```
|
|
||||||
|
|
||||||
**analyticsID**
|
|
||||||
The Posthog analytics ID. It is only available if the user has given consent for sharing telemetry in element web.
|
|
||||||
|
|
||||||
```
|
|
||||||
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.
|
|
||||||
|
|
||||||
```
|
|
||||||
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.
|
|
||||||
|
|
||||||
```
|
|
||||||
skipLobby: boolean; (default: false)
|
|
||||||
```
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
export default {
|
export default {
|
||||||
keySeparator: ".",
|
keySeparator: false,
|
||||||
namespaceSeparator: false,
|
namespaceSeparator: false,
|
||||||
contextSeparator: "|",
|
contextSeparator: "|",
|
||||||
pluralSeparator: "_",
|
pluralSeparator: "|",
|
||||||
createOldCatalogs: false,
|
createOldCatalogs: false,
|
||||||
defaultNamespace: "app",
|
defaultNamespace: "app",
|
||||||
lexers: {
|
lexers: {
|
||||||
@@ -10,14 +10,7 @@ export default {
|
|||||||
{
|
{
|
||||||
lexer: "JavascriptLexer",
|
lexer: "JavascriptLexer",
|
||||||
functions: ["t", "translatedError"],
|
functions: ["t", "translatedError"],
|
||||||
namespaceFunctions: ["useTranslation", "withTranslation"],
|
functionsNamespace: ["useTranslation", "withTranslation"],
|
||||||
},
|
|
||||||
],
|
|
||||||
tsx: [
|
|
||||||
{
|
|
||||||
lexer: "JsxLexer",
|
|
||||||
functions: ["t", "translatedError"],
|
|
||||||
namespaceFunctions: ["useTranslation", "withTranslation"],
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@@ -25,4 +18,5 @@ export default {
|
|||||||
output: "public/locales/$LOCALE/$NAMESPACE.json",
|
output: "public/locales/$LOCALE/$NAMESPACE.json",
|
||||||
input: ["src/**/*.{ts,tsx}"],
|
input: ["src/**/*.{ts,tsx}"],
|
||||||
sort: true,
|
sort: true,
|
||||||
|
useKeysAsDefaultValue: true,
|
||||||
};
|
};
|
||||||
@@ -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"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
121
package.json
121
package.json
@@ -3,35 +3,31 @@
|
|||||||
"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",
|
||||||
|
"storybook": "start-storybook -p 6006",
|
||||||
|
"build-storybook": "build-storybook",
|
||||||
"prettier:check": "prettier -c .",
|
"prettier:check": "prettier -c .",
|
||||||
"prettier:format": "prettier -w .",
|
"prettier:format": "prettier -w .",
|
||||||
"lint": "yarn lint:types && yarn lint:eslint",
|
"lint": "yarn lint:types && yarn lint:js",
|
||||||
"lint:eslint": "eslint --max-warnings 0 src",
|
"lint:js": "eslint --max-warnings 0 src",
|
||||||
"lint:eslint-fix": "eslint --max-warnings 0 src --fix",
|
|
||||||
"lint:types": "tsc",
|
"lint:types": "tsc",
|
||||||
"i18n": "node_modules/i18next-parser/bin/cli.js",
|
"i18n": "node_modules/i18next-parser/bin/cli.js",
|
||||||
"i18n:check": "node_modules/i18next-parser/bin/cli.js --fail-on-warnings --fail-on-update",
|
"i18n:check": "node_modules/i18next-parser/bin/cli.js --fail-on-warnings --fail-on-update",
|
||||||
"test": "jest",
|
"test": "jest"
|
||||||
"backend": "docker-compose -f backend-docker-compose.yml up"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@juggle/resize-observer": "^3.3.1",
|
"@juggle/resize-observer": "^3.3.1",
|
||||||
"@livekit/components-core": "^0.8.0",
|
|
||||||
"@livekit/components-react": "^1.1.0",
|
|
||||||
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.14.tgz",
|
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.14.tgz",
|
||||||
"@opentelemetry/api": "^1.4.0",
|
"@opentelemetry/api": "^1.4.0",
|
||||||
"@opentelemetry/context-zone": "^1.9.1",
|
"@opentelemetry/context-zone": "^1.9.1",
|
||||||
"@opentelemetry/exporter-jaeger": "^1.9.1",
|
"@opentelemetry/exporter-jaeger": "^1.9.1",
|
||||||
"@opentelemetry/exporter-trace-otlp-http": "^0.47.0",
|
"@opentelemetry/exporter-trace-otlp-http": "^0.35.1",
|
||||||
"@opentelemetry/instrumentation-document-load": "^0.34.0",
|
"@opentelemetry/instrumentation-document-load": "^0.31.1",
|
||||||
"@opentelemetry/instrumentation-user-interaction": "^0.34.0",
|
"@opentelemetry/instrumentation-user-interaction": "^0.32.1",
|
||||||
"@opentelemetry/sdk-trace-web": "^1.9.1",
|
"@opentelemetry/sdk-trace-web": "^1.9.1",
|
||||||
"@radix-ui/react-dialog": "^1.0.4",
|
|
||||||
"@radix-ui/react-slider": "^1.1.2",
|
|
||||||
"@radix-ui/react-visually-hidden": "^1.0.3",
|
|
||||||
"@react-aria/button": "^3.3.4",
|
"@react-aria/button": "^3.3.4",
|
||||||
|
"@react-aria/dialog": "^3.1.4",
|
||||||
"@react-aria/focus": "^3.5.0",
|
"@react-aria/focus": "^3.5.0",
|
||||||
"@react-aria/menu": "^3.3.0",
|
"@react-aria/menu": "^3.3.0",
|
||||||
"@react-aria/overlays": "^3.7.3",
|
"@react-aria/overlays": "^3.7.3",
|
||||||
@@ -39,97 +35,78 @@
|
|||||||
"@react-aria/tabs": "^3.1.0",
|
"@react-aria/tabs": "^3.1.0",
|
||||||
"@react-aria/tooltip": "^3.1.3",
|
"@react-aria/tooltip": "^3.1.3",
|
||||||
"@react-aria/utils": "^3.10.0",
|
"@react-aria/utils": "^3.10.0",
|
||||||
"@react-rxjs/core": "^0.10.7",
|
|
||||||
"@react-spring/web": "^9.4.4",
|
"@react-spring/web": "^9.4.4",
|
||||||
"@react-stately/collections": "^3.3.4",
|
"@react-stately/collections": "^3.3.4",
|
||||||
|
"@react-stately/overlays": "^3.1.3",
|
||||||
"@react-stately/select": "^3.1.3",
|
"@react-stately/select": "^3.1.3",
|
||||||
"@react-stately/tooltip": "^3.0.5",
|
"@react-stately/tooltip": "^3.0.5",
|
||||||
"@react-stately/tree": "^3.2.0",
|
"@react-stately/tree": "^3.2.0",
|
||||||
"@sentry/react": "^7.0.0",
|
"@sentry/react": "^6.13.3",
|
||||||
"@sentry/tracing": "^7.0.0",
|
"@sentry/tracing": "^6.13.3",
|
||||||
"@types/lodash": "^4.14.199",
|
"@types/grecaptcha": "^3.0.4",
|
||||||
|
"@types/sdp-transform": "^2.4.5",
|
||||||
"@use-gesture/react": "^10.2.11",
|
"@use-gesture/react": "^10.2.11",
|
||||||
"@vector-im/compound-design-tokens": "^0.1.0",
|
|
||||||
"@vector-im/compound-web": "^2.0.0",
|
|
||||||
"@vitejs/plugin-basic-ssl": "^1.0.1",
|
|
||||||
"@vitejs/plugin-react": "^4.0.1",
|
|
||||||
"buffer": "^6.0.3",
|
|
||||||
"classnames": "^2.3.1",
|
"classnames": "^2.3.1",
|
||||||
|
"color-hash": "^2.0.1",
|
||||||
"events": "^3.3.0",
|
"events": "^3.3.0",
|
||||||
"i18next": "^23.0.0",
|
"i18next": "^21.10.0",
|
||||||
"i18next-browser-languagedetector": "^7.0.0",
|
"i18next-browser-languagedetector": "^6.1.8",
|
||||||
"i18next-http-backend": "^2.0.0",
|
"i18next-http-backend": "^1.4.4",
|
||||||
"livekit-client": "^1.12.3",
|
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#2cd63ca4b90eb2e4d22b45ae281a81c4514e757a",
|
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#261bc81554580b442769a65ceed2b154178fbe1c",
|
||||||
"matrix-widget-api": "^1.3.1",
|
"matrix-widget-api": "^1.3.1",
|
||||||
|
"mermaid": "^8.13.8",
|
||||||
"normalize.css": "^8.0.1",
|
"normalize.css": "^8.0.1",
|
||||||
"pako": "^2.0.4",
|
"pako": "^2.0.4",
|
||||||
"postcss-preset-env": "^9.0.0",
|
"postcss-preset-env": "^7",
|
||||||
"posthog-js": "^1.29.0",
|
"posthog-js": "^1.29.0",
|
||||||
|
"re-resizable": "^6.9.0",
|
||||||
"react": "18",
|
"react": "18",
|
||||||
"react-dom": "18",
|
"react-dom": "18",
|
||||||
"react-i18next": "^14.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",
|
"sdp-transform": "^2.14.1",
|
||||||
"tinyqueue": "^2.0.3",
|
"tinyqueue": "^2.0.3",
|
||||||
"unique-names-generator": "^4.6.0",
|
"unique-names-generator": "^4.6.0"
|
||||||
"uuid": "9",
|
|
||||||
"vaul": "^0.8.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.16.5",
|
"@babel/core": "^7.16.5",
|
||||||
"@babel/preset-env": "^7.22.20",
|
"@sentry/vite-plugin": "^0.3.0",
|
||||||
"@babel/preset-react": "^7.22.15",
|
"@storybook/react": "^6.5.0-alpha.5",
|
||||||
"@babel/preset-typescript": "^7.23.0",
|
"@testing-library/jest-dom": "^5.16.5",
|
||||||
"@react-spring/rafz": "^9.7.3",
|
"@testing-library/react": "^13.4.0",
|
||||||
"@react-types/dialog": "^3.5.5",
|
|
||||||
"@sentry/vite-plugin": "^2.0.0",
|
|
||||||
"@testing-library/jest-dom": "^6.0.0",
|
|
||||||
"@testing-library/react": "^14.0.0",
|
|
||||||
"@testing-library/user-event": "^14.5.1",
|
|
||||||
"@types/content-type": "^1.1.5",
|
|
||||||
"@types/dom-screen-wake-lock": "^1.0.1",
|
|
||||||
"@types/dompurify": "^3.0.2",
|
|
||||||
"@types/grecaptcha": "^3.0.4",
|
|
||||||
"@types/jest": "^29.5.5",
|
|
||||||
"@types/node": "^20.0.0",
|
|
||||||
"@types/react-router-dom": "^5.3.3",
|
|
||||||
"@types/request": "^2.48.8",
|
"@types/request": "^2.48.8",
|
||||||
"@types/sdp-transform": "^2.4.5",
|
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
||||||
"@types/uuid": "9",
|
"@typescript-eslint/parser": "^5.22.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
"babel-loader": "^8.2.3",
|
||||||
"@typescript-eslint/parser": "^6.1.0",
|
|
||||||
"babel-loader": "^9.0.0",
|
|
||||||
"babel-plugin-transform-vite-meta-env": "^1.0.3",
|
"babel-plugin-transform-vite-meta-env": "^1.0.3",
|
||||||
"eslint": "^8.14.0",
|
"eslint": "^8.14.0",
|
||||||
"eslint-config-google": "^0.14.0",
|
"eslint-config-google": "^0.14.0",
|
||||||
"eslint-config-prettier": "^9.0.0",
|
"eslint-config-prettier": "^8.5.0",
|
||||||
"eslint-plugin-deprecate": "^0.8.2",
|
|
||||||
"eslint-plugin-import": "^2.26.0",
|
"eslint-plugin-import": "^2.26.0",
|
||||||
"eslint-plugin-jsx-a11y": "^6.5.1",
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
||||||
"eslint-plugin-matrix-org": "^1.2.1",
|
"eslint-plugin-matrix-org": "^0.4.0",
|
||||||
"eslint-plugin-react": "^7.29.4",
|
"eslint-plugin-react": "^7.29.4",
|
||||||
"eslint-plugin-react-hooks": "^4.5.0",
|
"eslint-plugin-react-hooks": "^4.5.0",
|
||||||
"eslint-plugin-unicorn": "^50.0.0",
|
"i18next-parser": "^6.6.0",
|
||||||
"i18next-parser": "^8.0.0",
|
|
||||||
"identity-obj-proxy": "^3.0.0",
|
"identity-obj-proxy": "^3.0.0",
|
||||||
"jest": "^29.2.2",
|
"jest": "^29.2.2",
|
||||||
"jest-environment-jsdom": "^29.3.1",
|
"jest-environment-jsdom": "^29.3.1",
|
||||||
"jest-mock": "^29.5.0",
|
"prettier": "^2.6.2",
|
||||||
"prettier": "^3.0.0",
|
|
||||||
"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",
|
||||||
"vite": "^5.0.0",
|
"typescript-strict-plugin": "^2.0.1",
|
||||||
|
"vite": "^2.4.2",
|
||||||
"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"
|
||||||
},
|
},
|
||||||
"jest": {
|
"jest": {
|
||||||
"testEnvironment": "./test/environment.ts",
|
"testEnvironment": "jsdom",
|
||||||
"testMatch": [
|
"testMatch": [
|
||||||
"<rootDir>/test/**/*-test.[jt]s?(x)"
|
"<rootDir>/test/**/*-test.[jt]s?(x)"
|
||||||
],
|
],
|
||||||
@@ -138,15 +115,9 @@
|
|||||||
"/node_modules/(?!internmap)+$"
|
"/node_modules/(?!internmap)+$"
|
||||||
],
|
],
|
||||||
"moduleNameMapper": {
|
"moduleNameMapper": {
|
||||||
"\\.css$": "identity-obj-proxy",
|
"\\.(css|less|svg)+$": "identity-obj-proxy",
|
||||||
"\\.svg\\?react$": "<rootDir>/test/mocks/svgr.ts",
|
|
||||||
"^\\./IndexedDBWorker\\?worker$": "<rootDir>/test/mocks/workerMock.ts",
|
"^\\./IndexedDBWorker\\?worker$": "<rootDir>/test/mocks/workerMock.ts",
|
||||||
"^\\./olm$": "<rootDir>/test/mocks/olmMock.ts"
|
"^\\./olm$": "<rootDir>/test/mocks/olmMock.ts"
|
||||||
},
|
}
|
||||||
"collectCoverage": true,
|
|
||||||
"coverageReporters": [
|
|
||||||
"text",
|
|
||||||
"cobertura"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -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"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="cpd-theme-dark">
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,78 +1,129 @@
|
|||||||
{
|
{
|
||||||
"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>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>",
|
||||||
"action": {
|
"Accept camera/microphone permissions to join the call.": "Приемете разрешенията за камера/микрофон за да се присъедините в разговора.",
|
||||||
"close": "Затвори",
|
"Accept microphone permissions to join the call.": "Приемете разрешението за микрофона за да се присъедините в разговора.",
|
||||||
"go": "Напред",
|
"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 логове.",
|
||||||
"no": "Не",
|
"Audio": "Звук",
|
||||||
"register": "Регистрация",
|
"Avatar": "Аватар",
|
||||||
"remove": "Премахни",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Натискайки \"Напред\" се съгласявате с нашите <2>Правила и условия</2>",
|
||||||
"sign_in": "Влез",
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Натискайки \"Влез в разговора сега\", се съгласявате с нашите <2>Правила и условия</2>",
|
||||||
"sign_out": "Излез"
|
"Call link copied": "Връзка към разговора бе копирана",
|
||||||
},
|
"Call type menu": "Меню \"тип на разговора\"",
|
||||||
"call_ended_view": {
|
"Camera": "Камера",
|
||||||
"create_account_button": "Създай акаунт",
|
"Camera {{n}}": "Камера {{n}}",
|
||||||
"create_account_prompt": "<0>Защо не настройте парола за да запазите акаунта си?</0><1>Ще можете да запазите името и аватара си за бъдещи разговори</1>",
|
"Camera/microphone permissions needed to join the call.": "Необходими са разрешения за камера/микрофон за да се присъедините в разговора.",
|
||||||
"not_now_button": "Не сега, върни се на началния екран"
|
"Change layout": "Промени изгледа",
|
||||||
},
|
"Close": "Затвори",
|
||||||
"common": {
|
"Confirm password": "Потвърди паролата",
|
||||||
"audio": "Звук",
|
"Connection lost": "Връзката се изгуби",
|
||||||
"avatar": "Аватар",
|
"Copied!": "Копирано!",
|
||||||
"camera": "Камера",
|
"Copy and share this call link": "Копирай и сподели връзка към разговора",
|
||||||
"copied": "Копирано!",
|
"Create account": "Създай акаунт",
|
||||||
"display_name": "Име/псевдоним",
|
"Debug log": "Debug логове",
|
||||||
"home": "Начало",
|
"Debug log request": "Заявка за debug логове",
|
||||||
"loading": "Зареждане…",
|
"Description (optional)": "Описание (незадължително)",
|
||||||
"microphone": "Микрофон",
|
"Details": "Детайли",
|
||||||
"password": "Парола",
|
"Developer": "Разработчик",
|
||||||
"profile": "Профил",
|
"Display name": "Име/псевдоним",
|
||||||
"settings": "Настройки",
|
"Download debug logs": "Изтеглете debug логове",
|
||||||
"username": "Потребителско име",
|
"Exit full screen": "Излез от цял екран",
|
||||||
"video": "Видео"
|
"Fetching group call timed out.": "Изтече времето за взимане на груповия разговор.",
|
||||||
},
|
"Freedom": "Свобода",
|
||||||
"exit_fullscreen_button_label": "Излез от цял екран",
|
"Full screen": "Цял екран",
|
||||||
"fullscreen_button_label": "Цял екран",
|
"Go": "Напред",
|
||||||
"join_existing_call_modal": {
|
"Grid layout menu": "Меню \"решетков изглед\"",
|
||||||
"join_button": "Да, присъедини се",
|
"Having trouble? Help us fix it.": "Имате проблем? Помогнете да го поправим.",
|
||||||
"text": "Този разговор вече съществува, искате ли да се присъедините?",
|
"Home": "Начало",
|
||||||
"title": "Присъединяване към съществуващ разговор?"
|
"Include debug logs": "Включи debug логове",
|
||||||
},
|
"Incompatible versions": "Несъвместими версии",
|
||||||
"layout_spotlight_label": "Прожектор",
|
"Incompatible versions!": "Несъвместими версии!",
|
||||||
"lobby": {
|
"Inspector": "Инспектор",
|
||||||
"join_button": "Влез в разговора"
|
"Invite": "Покани",
|
||||||
},
|
"Invite people": "Покани хора",
|
||||||
"local_volume_label": "Локална сила на звука",
|
"Join call": "Влез в разговора",
|
||||||
"logging_in": "Влизане…",
|
"Join call now": "Влез в разговора сега",
|
||||||
"login_auth_links": "<0>Създайте акаунт</0> или <2>Влезте като гост</2>",
|
"Join existing call?": "Присъединяване към съществуващ разговор?",
|
||||||
"login_title": "Влез",
|
"Leave": "Напусни",
|
||||||
"rageshake_request_modal": {
|
"Loading room…": "Напускане на стаята…",
|
||||||
"body": "Друг потребител в този разговор има проблем. За да диагностицираме този проблем по-добре ни се иска да съберем debug логове.",
|
"Loading…": "Зареждане…",
|
||||||
"title": "Заявка за debug логове"
|
"Local volume": "Локална сила на звука",
|
||||||
},
|
"Logging in…": "Влизане…",
|
||||||
"rageshake_send_logs": "Изпратете debug логове",
|
"Login": "Влез",
|
||||||
"rageshake_sending": "Изпращане…",
|
"Login to your account": "Влезте в акаунта си",
|
||||||
"recaptcha_dismissed": "Recaptcha отхвърлена",
|
"Microphone": "Микрофон",
|
||||||
"recaptcha_not_loaded": "Recaptcha не е заредена",
|
"Microphone permissions needed to join the call.": "Необходими са разрешения за микрофона за да можете да се присъедините в разговора.",
|
||||||
"register": {
|
"Microphone {{n}}": "Микрофон {{n}}",
|
||||||
"passwords_must_match": "Паролите не съвпадат",
|
"More": "Още",
|
||||||
"registering": "Регистриране…"
|
"More menu": "Мено \"още\"",
|
||||||
},
|
"Mute microphone": "Заглуши микрофона",
|
||||||
"register_auth_links": "<0>Вече имате акаунт?</0><1><0>Влезте с него</0> или <2>Влезте като гост</2></1>",
|
"No": "Не",
|
||||||
"register_confirm_password_label": "Потвърди паролата",
|
"Not now, return to home screen": "Не сега, върни се на началния екран",
|
||||||
"return_home_button": "Връщане на началния екран",
|
"Not registered yet? <2>Create an account</2>": "Все още не сте регистрирани? <2>Създайте акаунт</2>",
|
||||||
"room_auth_view_join_button": "Влез в разговора сега",
|
"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>",
|
||||||
"screenshare_button_label": "Сподели екрана",
|
"Password": "Парола",
|
||||||
"select_input_unset_button": "Изберете опция",
|
"Passwords must match": "Паролите не съвпадат",
|
||||||
"settings": {
|
"Press and hold spacebar to talk": "Натиснете и задръжте Space за да говорите",
|
||||||
"developer_tab_title": "Разработчик",
|
"Press and hold spacebar to talk over {{name}}": "Натиснете и задръжте Space за да говорите заедно с {{name}}",
|
||||||
"feedback_tab_h4": "Изпрати обратна връзка",
|
"Press and hold to talk": "Натиснете и задръжте за да говорите",
|
||||||
"feedback_tab_send_logs_label": "Включи debug логове",
|
"Press and hold to talk over {{name}}": "Натиснете и задръжте за да говорите заедно с {{name}}",
|
||||||
"more_tab_title": "Още",
|
"Profile": "Профил",
|
||||||
"speaker_device_selection_label": "Говорител"
|
"Recaptcha dismissed": "Recaptcha отхвърлена",
|
||||||
},
|
"Recaptcha not loaded": "Recaptcha не е заредена",
|
||||||
"unauthenticated_view_body": "Все още не сте регистрирани? <2>Създайте акаунт</2>",
|
"Register": "Регистрация",
|
||||||
"unauthenticated_view_login_button": "Влезте в акаунта си",
|
"Registering…": "Регистриране…",
|
||||||
"version": "Версия: {{version}}",
|
"Release spacebar key to stop": "Отпуснете Space за да спрете",
|
||||||
"waiting_for_participants": "Изчакване на други участници…"
|
"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}} - уоки-токи разговор"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,82 +1,138 @@
|
|||||||
{
|
{
|
||||||
"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",
|
||||||
"exit_fullscreen_button_label": "Ukončit režim celé obrazovky",
|
"Turn off camera": "Vypnout kameru",
|
||||||
"full_screen_view_description": "<0>Odeslání ladících záznamů nám pomůže diagnostikovat problém.</0>",
|
"This call already exists, would you like to join?": "Tento hovor již existuje, chcete se připojit?",
|
||||||
"full_screen_view_h1": "<0>Oops, něco se pokazilo.</0>",
|
"Thanks! We'll get right on it.": "Děkujeme! Hned se na to vrhneme.",
|
||||||
"fullscreen_button_label": "Zvětšit na celou obrazovku",
|
"Take me Home": "Domovská obrazovka",
|
||||||
"header_label": "Domov Element Call",
|
"Submitting feedback…": "Odesílání zpětné vazby…",
|
||||||
"join_existing_call_modal": {
|
"Submit feedback": "Dát feedback",
|
||||||
"join_button": "Ano, připojit se",
|
"Stop sharing screen": "Zastavit sdílení obrazovek",
|
||||||
"text": "Tento hovor již existuje, chcete se připojit?",
|
"Speaker {{n}}": "Reproduktor {{n}}",
|
||||||
"title": "Připojit se k existujícimu hovoru?"
|
"Speaker": "Reproduktor",
|
||||||
},
|
"Spatial audio": "Prostorový zvuk",
|
||||||
"layout_spotlight_label": "Soustředěný mód",
|
"Sign out": "Odhlásit se",
|
||||||
"lobby": {
|
"Sign in": "Přihlásit se",
|
||||||
"join_button": "Připojit se k hovoru"
|
"Show call inspector": "Zobrazit inspektor hovoru",
|
||||||
},
|
"Share screen": "Sdílet obrazovku",
|
||||||
"local_volume_label": "Lokální hlasitost",
|
"Settings": "Nastavení",
|
||||||
"logging_in": "Přihlašování se…",
|
"Sending…": "Posílání…",
|
||||||
"login_auth_links": "<0>Vytvořit účet</0> Or <2>Jako host</2>",
|
"Sending debug logs…": "Posílání ladícího záznamu…",
|
||||||
"login_title": "Přihlášení",
|
"Send debug logs": "Poslat ladící záznam",
|
||||||
"rageshake_request_modal": {
|
"Select an option": "Vyberte možnost",
|
||||||
"body": "Jiný uživatel v tomto hovoru má problémy. Abychom mohli diagnostikovat problém, rádi bychom shromáždili protokoly ladění.",
|
"Saving…": "Ukládání…",
|
||||||
"title": "Žádost o protokoly ladění"
|
"Save": "Uložit",
|
||||||
},
|
"Return to home screen": "Vrátit se na domácí obrazovku",
|
||||||
"rageshake_send_logs": "Poslat ladící záznam",
|
"Remove": "Odstranit",
|
||||||
"rageshake_sending": "Posílání…",
|
"Registering…": "Registrování…",
|
||||||
"rageshake_sending_logs": "Posílání ladícího záznamu…",
|
"Register": "Registrace",
|
||||||
"recaptcha_dismissed": "Recaptcha byla zamítnuta",
|
"Profile": "Profil",
|
||||||
"recaptcha_not_loaded": "Recaptcha se nenačetla",
|
"Press and hold to talk": "Stiskněte a držte pro mluvení",
|
||||||
"register": {
|
"Press and hold spacebar to talk": "Stiskněte a držte mezerník pro mluvení",
|
||||||
"passwords_must_match": "Hesla se musí shodovat",
|
"Passwords must match": "Hesla se musí shodovat",
|
||||||
"registering": "Registrování…"
|
"Password": "Heslo",
|
||||||
},
|
"Not now, return to home screen": "Teď ne, vrátit se na domovskou obrazovku",
|
||||||
"register_auth_links": "<0>Už máte účet?</0><1><0>Přihlásit se</0> Or <2>Jako host</2></1>",
|
"No": "Ne",
|
||||||
"register_confirm_password_label": "Potvrdit heslo",
|
"Mute microphone": "Ztlumit mikrofon",
|
||||||
"return_home_button": "Vrátit se na domácí obrazovku",
|
"More": "Více",
|
||||||
"room_auth_view_join_button": "Připojit se k hovoru",
|
"Microphone permissions needed to join the call.": "Přístup k mikrofonu je nutný pro připojení se k hovoru.",
|
||||||
"screenshare_button_label": "Sdílet obrazovku",
|
"Microphone {{n}}": "Mikrofon {{n}}",
|
||||||
"select_input_unset_button": "Vyberte možnost",
|
"Microphone": "Mikrofon",
|
||||||
"settings": {
|
"Login to your account": "Přihlásit se ke svůmu účtu",
|
||||||
"developer_settings_label": "Vývojářské nastavení",
|
"Login": "Přihlášení",
|
||||||
"developer_settings_label_description": "Zobrazit vývojářské nastavení.",
|
"Logging in…": "Přihlašování se…",
|
||||||
"developer_tab_title": "Vývojář",
|
"Local volume": "Lokální hlasitost",
|
||||||
"feedback_tab_h4": "Dát feedback",
|
"Loading…": "Načítání…",
|
||||||
"feedback_tab_send_logs_label": "Zahrnout ladící záznamy",
|
"Loading room…": "Načítání místnosti…",
|
||||||
"more_tab_title": "Více",
|
"Leave": "Opustit hovor",
|
||||||
"speaker_device_selection_label": "Reproduktor"
|
"Join call now": "Připojit se k hovoru",
|
||||||
},
|
"Join call": "Připojit se k hovoru",
|
||||||
"unauthenticated_view_body": "Nejste registrovaní? <2>Vytvořit účet</2>",
|
"Invite people": "Pozvat lidi",
|
||||||
"unauthenticated_view_login_button": "Přihlásit se ke svému účtu",
|
"Invite": "Pozvat",
|
||||||
"version": "Verze: {{version}}",
|
"Inspector": "Insepktor",
|
||||||
"waiting_for_participants": "Čekání na další účastníky…"
|
"Incompatible versions!": "Nekompatibilní verze!",
|
||||||
|
"Incompatible versions": "Nekompatibilní verze",
|
||||||
|
"{{name}} is talking…": "{{name}} mluví…",
|
||||||
|
"{{name}} is presenting": "{{name}} prezentuje",
|
||||||
|
"{{name}} (Connecting...)": "{{name}} (Připojení...)",
|
||||||
|
"{{displayName}}, your call is now ended": "{{displayName}}, váš hovor je nyní ukončen",
|
||||||
|
"{{count}} people connected|other": "{{count}} lidí připojeno",
|
||||||
|
"{{count}} people connected|one": "{{count}} lidí připojeno",
|
||||||
|
"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.)": "Tato možnost způsobí, že zvuk účastníků hovoru se bude tvářit jako by přicházel z místa, kde jsou umístěni na obrazovce.(Experimentální možnost: může způsobit nestabilitu audia.)",
|
||||||
|
"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>": "Tato stárnka je chráněna pomocí ReCAPTCHA a Google <2>zásad ochrany osobních údajů</2> a <6>podmínky služby</6> platí.<9></9>Kliknutím na \"Registrovat\", souhlasíte s <12>Pravidly a podmínkami</12>",
|
||||||
|
"Walkie-talkie call name": "Jméno vysílačkového hovoru",
|
||||||
|
"Walkie-talkie call": "Vysílačkový hovor",
|
||||||
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - Vysílačkový hovor",
|
||||||
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
|
"Talking…": "Mluvení…",
|
||||||
|
"Talk over speaker": "Mluvit přes mluvčího",
|
||||||
|
"Spotlight": "Soustředěný mód",
|
||||||
|
"Release to stop": "Pusťte pro ukončení",
|
||||||
|
"Release spacebar key to stop": "Pusťte mezerník pro ukončení",
|
||||||
|
"Recaptcha not loaded": "Recaptcha se nenačetla",
|
||||||
|
"Recaptcha dismissed": "Recaptcha byla zamítnuta",
|
||||||
|
"Press and hold to talk over {{name}}": "Zmáčkněte a držte, abyste mluvili přes {{name}}",
|
||||||
|
"Press and hold spacebar to talk over {{name}}": "Zmáčkněte a držte mezerník, abyste mluvili přes {{name}}",
|
||||||
|
"Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>": "Ostatní uživatelé se pokoušejí připojit k tomuto hovoru s nekompatibilních verzí. Tito uživatelé by se měli ujistit, že stránku načetli znovu:<1>{userLis}</1>",
|
||||||
|
"Not registered yet? <2>Create an account</2>": "Nejste registrovaní? <2>Vytvořit účet</2>",
|
||||||
|
"More menu": "Další možnosti",
|
||||||
|
"Join existing call?": "Připojit se k existujícimu hovoru?",
|
||||||
|
"Include debug logs": "Zahrnout ladící záznamy",
|
||||||
|
"Home": "Domov",
|
||||||
|
"Having trouble? Help us fix it.": "Máte problémy? Pomozte nám je spravit.",
|
||||||
|
"Grid layout menu": "Menu rozložení",
|
||||||
|
"Go": "Pokračovat",
|
||||||
|
"Full screen": "Zvětšit na celou obrazovku",
|
||||||
|
"Freedom": "Volný",
|
||||||
|
"Fetching group call timed out.": "Vypršel časový limit načítání skupinového hovoru.",
|
||||||
|
"Exit full screen": "Ukončit režim celé obrazovky",
|
||||||
|
"Element Call Home": "Domov Element Call",
|
||||||
|
"Download debug logs": "Stáhnout ladící záznamy",
|
||||||
|
"Display name": "Zobrazované jméno",
|
||||||
|
"Developer": "Vývojář",
|
||||||
|
"Details": "Detaily",
|
||||||
|
"Description (optional)": "Popis (nepovinný)",
|
||||||
|
"Debug log request": "Žádost o protokoly ladění",
|
||||||
|
"Debug log": "Protokoly ladění",
|
||||||
|
"Create account": "Vytvořit účet",
|
||||||
|
"Copy": "Kopírovat",
|
||||||
|
"Call type menu": "Menu typu hovoru",
|
||||||
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Kliknutím na \"Připojit se do hovoru\", odsouhlasíte naše <2>Terms and conditions</2>",
|
||||||
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Kliknutím na \"Pokračovat\", odsouhlasíte naše <2>Terms and conditions</2>",
|
||||||
|
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Jiný uživatel v tomto hovoru má problémy. Abychom mohli diagnostikovat problém, rádi bychom shromáždili protokoly ladění.",
|
||||||
|
"<0>Why not finish by setting up a password to keep your account?</0><1>You'll be able to keep your name and set an avatar for use on future calls</1>": "<0>Proč neskončit nastavením hesla, abyste mohli účet použít znovu?</0><1>Budete si moci nechat své jméno a nastavit si avatar pro budoucí hovory </1>",
|
||||||
|
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Připojit se</0><1>Or</1><2>Zkopírovat odkaz a připojit se později</2>",
|
||||||
|
"<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Už máte účet?</0><1><0>Přihlásit se</0> Or <2>Jako host</2></1>",
|
||||||
|
"{{name}} (Waiting for video...)": "{{name}} (Čekání na video...)",
|
||||||
|
"This feature is only supported on Firefox.": "Tato funkce je podporována jen ve Firefoxu.",
|
||||||
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Odeslání ladících záznamů nám pomůže diagnostikovat problém.</0>",
|
||||||
|
"<0>Oops, something's gone wrong.</0>": "<0>Oops, něco se pokazilo.</0>"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,148 +1,143 @@
|
|||||||
{
|
{
|
||||||
"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>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>",
|
||||||
"action": {
|
"Accept camera/microphone permissions to join the call.": "Erlaube Zugriff auf Kamera/Mikrofon um dem Anruf beizutreten.",
|
||||||
"close": "Schließen",
|
"Accept microphone permissions to join the call.": "Erlaube Zugriff auf das Mikrofon um dem Anruf beizutreten.",
|
||||||
"copy": "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.",
|
||||||
"copy_link": "Link kopieren",
|
"Audio": "Audio",
|
||||||
"go": "Los geht’s",
|
"Avatar": "Avatar",
|
||||||
"invite": "Einladen",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Wenn du auf „Los geht’s“ klickst, akzeptierst du unsere <2>Geschäftsbedingungen</2>",
|
||||||
"no": "Nein",
|
"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>",
|
||||||
"register": "Registrieren",
|
"Call link copied": "Anruflink kopiert",
|
||||||
"remove": "Entfernen",
|
"Call type menu": "Anruftyp Menü",
|
||||||
"sign_in": "Anmelden",
|
"Camera": "Kamera",
|
||||||
"sign_out": "Abmelden",
|
"Camera {{n}}": "Kamera {{n}}",
|
||||||
"submit": "Absenden"
|
"Camera/microphone permissions needed to join the call.": "Für die Teilnahme am Anruf sind Kamera- und Mikrofonberechtigungen erforderlich.",
|
||||||
},
|
"Change layout": "Layout ändern",
|
||||||
"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>.",
|
"Close": "Schließen",
|
||||||
"app_selection_modal": {
|
"Confirm password": "Passwort bestätigen",
|
||||||
"continue_in_browser": "Weiter im Browser",
|
"Connection lost": "Verbindung verloren",
|
||||||
"open_in_app": "In der App öffnen",
|
"Copied!": "Kopiert!",
|
||||||
"text": "Bereit, beizutreten?",
|
"Copy and share this call link": "Kopiere und teile diesen Anruflink",
|
||||||
"title": "App auswählen"
|
"Create account": "Konto erstellen",
|
||||||
},
|
"Debug log": "Debug-Protokoll",
|
||||||
"application_opened_another_tab": "Diese Anwendung wurde in einem anderen Tab geöffnet.",
|
"Debug log request": "Debug-Log Anfrage",
|
||||||
"browser_media_e2ee_unsupported": "Dein Webbrowser unterstützt keine Medien-Ende-zu-Ende-Verschlüsselung. Unterstützte Browser sind Chrome, Safari, Firefox >=117",
|
"Description (optional)": "Beschreibung (optional)",
|
||||||
"browser_media_e2ee_unsupported_heading": "Inkompatibler Browser",
|
"Details": "Details",
|
||||||
"call_ended_view": {
|
"Developer": "Entwickler",
|
||||||
"body": "Deine Verbindung wurde getrennt",
|
"Display name": "Anzeigename",
|
||||||
"create_account_button": "Konto erstellen",
|
"Download debug logs": "Debug-Protokolle herunterladen",
|
||||||
"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>",
|
"Exit full screen": "Vollbildmodus verlassen",
|
||||||
"feedback_done": "<0>Danke für deine Rückmeldung!</0>",
|
"Freedom": "Freiraum",
|
||||||
"feedback_prompt": "<0>Wir würden uns freuen, deine Rückmeldung zu hören, um deine Erfahrung verbessern zu können.</0>",
|
"Full screen": "Vollbild",
|
||||||
"headline": "{{displayName}}, dein Anruf wurde beendet.",
|
"Go": "Los geht’s",
|
||||||
"not_now_button": "Nicht jetzt, zurück zur Startseite",
|
"Grid layout menu": "Grid-Layout-Menü",
|
||||||
"reconnect_button": "Erneut verbinden",
|
"Having trouble? Help us fix it.": "Du hast ein Problem? Hilf uns, es zu beheben.",
|
||||||
"survey_prompt": "Wie ist es gelaufen?"
|
"Home": "Startseite",
|
||||||
},
|
"Include debug logs": "Debug-Protokolle einschließen",
|
||||||
"call_name": "Name des Anrufs",
|
"Incompatible versions": "Inkompatible Versionen",
|
||||||
"common": {
|
"Incompatible versions!": "Inkompatible Versionen!",
|
||||||
"audio": "Audio",
|
"Inspector": "Inspektor",
|
||||||
"avatar": "Profilbild",
|
"Invite": "Einladen",
|
||||||
"camera": "Kamera",
|
"Invite people": "Personen einladen",
|
||||||
"copied": "Kopiert!",
|
"Join call": "Anruf beitreten",
|
||||||
"display_name": "Anzeigename",
|
"Join call now": "Anruf beitreten",
|
||||||
"encrypted": "Verschlüsselt",
|
"Join existing call?": "An bestehendem Anruf teilnehmen?",
|
||||||
"error": "Fehler",
|
"Leave": "Verlassen",
|
||||||
"home": "Startseite",
|
"Loading room…": "Lade Raum …",
|
||||||
"loading": "Lade …",
|
"Loading…": "Lade …",
|
||||||
"microphone": "Mikrofon",
|
"Local volume": "Lokale Lautstärke",
|
||||||
"password": "Passwort",
|
"Logging in…": "Anmelden …",
|
||||||
"profile": "Profil",
|
"Login": "Anmelden",
|
||||||
"settings": "Einstellungen",
|
"Login to your account": "Melde dich mit deinem Konto an",
|
||||||
"unencrypted": "Nicht verschlüsselt",
|
"Microphone": "Mikrofon",
|
||||||
"username": "Benutzername",
|
"Microphone permissions needed to join the call.": "Mikrofon-Berechtigung ist erforderlich, um dem Anruf beizutreten.",
|
||||||
"video": "Video"
|
"Microphone {{n}}": "Mikrofon {{n}}",
|
||||||
},
|
"More": "Mehr",
|
||||||
"disconnected_banner": "Die Verbindung zum Server wurde getrennt.",
|
"More menu": "Weiteres Menü",
|
||||||
"exit_fullscreen_button_label": "Vollbildmodus verlassen",
|
"Mute microphone": "Mikrofon stummschalten",
|
||||||
"full_screen_view_description": "<0>Übermittelte Problemberichte helfen uns, Fehler zu beheben.</0>",
|
"No": "Nein",
|
||||||
"full_screen_view_h1": "<0>Hoppla, etwas ist schiefgelaufen.</0>",
|
"Not now, return to home screen": "Nicht jetzt, zurück zum Startbildschirm",
|
||||||
"fullscreen_button_label": "Vollbild",
|
"Not registered yet? <2>Create an account</2>": "Noch nicht registriert? <2>Konto erstellen</2>",
|
||||||
"group_call_loader_failed_heading": "Anruf nicht gefunden",
|
"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>",
|
||||||
"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.",
|
"Password": "Passwort",
|
||||||
"hangup_button_label": "Anruf beenden",
|
"Passwords must match": "Passwörter müssen übereinstimmen",
|
||||||
"header_label": "Element Call-Startseite",
|
"Press and hold spacebar to talk": "Halte zum Sprechen die Leertaste gedrückt",
|
||||||
"header_participants_label": "Teilnehmende",
|
"Press and hold spacebar to talk over {{name}}": "Zum Verdrängen von {{name}} und Sprechen die Leertaste gedrückt halten",
|
||||||
"invite_modal": {
|
"Press and hold to talk": "Zum Sprechen gedrückt halten",
|
||||||
"link_copied_toast": "Link in Zwischenablage kopiert",
|
"Press and hold to talk over {{name}}": "Zum Verdrängen von {{name}} und Sprechen gedrückt halten",
|
||||||
"title": "Zu diesem Anruf einladen"
|
"Profile": "Profil",
|
||||||
},
|
"Recaptcha dismissed": "Recaptcha abgelehnt",
|
||||||
"join_existing_call_modal": {
|
"Recaptcha not loaded": "Recaptcha nicht geladen",
|
||||||
"join_button": "Ja, Anruf beitreten",
|
"Register": "Registrieren",
|
||||||
"text": "Dieser Aufruf existiert bereits, möchtest Du teilnehmen?",
|
"Registering…": "Registrierung …",
|
||||||
"title": "An bestehendem Anruf teilnehmen?"
|
"Release spacebar key to stop": "Leertaste loslassen, um zu stoppen",
|
||||||
},
|
"Release to stop": "Loslassen zum Stoppen",
|
||||||
"layout_grid_label": "Raster",
|
"Remove": "Entfernen",
|
||||||
"layout_spotlight_label": "Rampenlicht",
|
"Return to home screen": "Zurück zum Startbildschirm",
|
||||||
"lobby": {
|
"Save": "Speichern",
|
||||||
"join_button": "Anruf beitreten",
|
"Saving…": "Speichere …",
|
||||||
"leave_button": "Zurück zu kürzlichen Anrufen"
|
"Select an option": "Wähle eine Option",
|
||||||
},
|
"Send debug logs": "Debug-Logs senden",
|
||||||
"local_volume_label": "Lokale Lautstärke",
|
"Sending…": "Senden …",
|
||||||
"log_in": "Anmelden",
|
"Settings": "Einstellungen",
|
||||||
"logging_in": "Anmelden …",
|
"Share screen": "Bildschirm teilen",
|
||||||
"login_auth_links": "<0>Konto erstellen</0> Oder <2>Als Gast betreten</2>",
|
"Show call inspector": "Anrufinspektor anzeigen",
|
||||||
"login_auth_links_prompt": "Noch nicht registriert?",
|
"Sign in": "Anmelden",
|
||||||
"login_subheading": "Weiter zu Element",
|
"Sign out": "Abmelden",
|
||||||
"login_title": "Anmelden",
|
"Spatial audio": "Räumliche Audiowiedergabe",
|
||||||
"microphone_off": "Mikrofon aus",
|
"Speaker": "Wiedergabegerät",
|
||||||
"microphone_on": "Mikrofon an",
|
"Speaker {{n}}": "Wiedergabegerät {{n}}",
|
||||||
"mute_microphone_button_label": "Mikrofon deaktivieren",
|
"Spotlight": "Rampenlicht",
|
||||||
"rageshake_button_error_caption": "Protokolle erneut senden",
|
"Stop sharing screen": "Beenden der Bildschirmfreigabe",
|
||||||
"rageshake_request_modal": {
|
"Submit feedback": "Rückmeldung geben",
|
||||||
"body": "Ein anderer Benutzer dieses Anrufs hat ein Problem. Um es besser diagnostizieren zu können, würden wir gerne ein Debug-Protokoll erstellen.",
|
"Submitting feedback…": "Sende Rückmeldung …",
|
||||||
"title": "Debug-Log Anfrage"
|
"Take me Home": "Zurück zur Startseite",
|
||||||
},
|
"Talk over speaker": "Aktiven Sprecher verdrängen und sprechen",
|
||||||
"rageshake_send_logs": "Debug-Logs senden",
|
"Talking…": "Sprechen …",
|
||||||
"rageshake_sending": "Senden …",
|
"Thanks! We'll get right on it.": "Vielen Dank! Wir werden uns sofort darum kümmern.",
|
||||||
"rageshake_sending_logs": "Sende Debug-Protokolle …",
|
"This call already exists, would you like to join?": "Dieser Aufruf existiert bereits, möchtest Du teilnehmen?",
|
||||||
"rageshake_sent": "Danke!",
|
"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",
|
||||||
"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>",
|
"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.)",
|
||||||
"recaptcha_dismissed": "Recaptcha abgelehnt",
|
"Turn off camera": "Kamera ausschalten",
|
||||||
"recaptcha_not_loaded": "Recaptcha nicht geladen",
|
"Turn on camera": "Kamera einschalten",
|
||||||
"register": {
|
"Unmute microphone": "Mikrofon aktivieren",
|
||||||
"passwords_must_match": "Passwörter müssen übereinstimmen",
|
"User ID": "Benutzer-ID",
|
||||||
"registering": "Registrierung …"
|
"User menu": "Benutzermenü",
|
||||||
},
|
"Username": "Benutzername",
|
||||||
"register_auth_links": "<0>Du hast bereits ein Konto?</0><1><0>Anmelden</0> Oder <2>Als Gast betreten</2></1>",
|
"Version: {{version}}": "Version: {{version}}",
|
||||||
"register_confirm_password_label": "Passwort bestätigen",
|
"Video": "Video",
|
||||||
"return_home_button": "Zurück zur Startseite",
|
"Video call": "Videoanruf",
|
||||||
"room_auth_view_eula_caption": "Mit einem Klick auf „Anruf beitreten“ akzeptierst du unseren <2>Endbenutzer-Lizenzvertrag (EULA)</2>",
|
"Video call name": "Name des Videoanrufs",
|
||||||
"room_auth_view_join_button": "Anruf beitreten",
|
"Waiting for network": "Warte auf Netzwerk",
|
||||||
"screenshare_button_label": "Bildschirm teilen",
|
"Waiting for other participants…": "Warte auf weitere Teilnehmer …",
|
||||||
"select_input_unset_button": "Wähle eine Option",
|
"Walkie-talkie call": "Walkie-Talkie-Anruf",
|
||||||
"settings": {
|
"WebRTC is not supported or is being blocked in this browser.": "WebRTC wird in diesem Browser nicht unterstützt oder ist blockiert.",
|
||||||
"developer_settings_label": "Entwicklereinstellungen",
|
"Yes, join call": "Ja, Anruf beitreten",
|
||||||
"developer_settings_label_description": "Zeige die Entwicklereinstellungen im Einstellungsfenster.",
|
"You can't talk at the same time": "Du kannst nicht gleichzeitig sprechen",
|
||||||
"developer_tab_title": "Entwickler",
|
"Your recent calls": "Deine letzten Anrufe",
|
||||||
"feedback_tab_body": "Falls du auf Probleme stößt oder einfach nur eine Rückmeldung geben möchtest, sende uns bitte eine kurze Beschreibung.",
|
"{{count}} people connected|one": "{{count}} Person verbunden",
|
||||||
"feedback_tab_description_label": "Deine Rückmeldung",
|
"{{count}} people connected|other": "{{count}} Personen verbunden",
|
||||||
"feedback_tab_h4": "Rückmeldung geben",
|
"{{displayName}}, your call is now ended": "{{displayName}}, dein Anruf wurde beendet",
|
||||||
"feedback_tab_send_logs_label": "Debug-Protokolle einschließen",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"feedback_tab_thank_you": "Danke, wir haben deine Rückmeldung erhalten!",
|
"{{name}} is presenting": "{{name}} präsentiert",
|
||||||
"feedback_tab_title": "Rückmeldung",
|
"{{name}} is talking…": "{{name}} spricht …",
|
||||||
"more_tab_title": "Mehr",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} – Walkie-Talkie-Anruf",
|
||||||
"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.",
|
"Fetching group call timed out.": "Zeitüberschreitung beim Abrufen des Gruppenanrufs.",
|
||||||
"show_connection_stats_label": "Verbindungsstatistiken zeigen",
|
"Walkie-talkie call name": "Name des Walkie-Talkie-Anrufs",
|
||||||
"speaker_device_selection_label": "Wiedergabegerät"
|
"Sending debug logs…": "Sende Debug-Protokolle …",
|
||||||
},
|
"<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>",
|
||||||
"star_rating_input_label_one": "{{count}} Stern",
|
"{{name}} (Connecting...)": "{{name}} (verbindet sich …)",
|
||||||
"star_rating_input_label_other": "{{count}} Sterne",
|
"Copy": "Kopieren",
|
||||||
"start_new_call": "Neuen Anruf beginnen",
|
"Element Call Home": "Element Call-Startseite",
|
||||||
"start_video_button_label": "Video aktivieren",
|
"{{name}} (Waiting for video...)": "{{name}} (Warte auf Video …)",
|
||||||
"stop_screenshare_button_label": "Bildschirm wird geteilt",
|
"This feature is only supported on Firefox.": "Diese Funktion wird nur in Firefox unterstützt.",
|
||||||
"stop_video_button_label": "Video deaktivieren",
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Übermittelte Problemberichte helfen uns, Fehler zu beheben.</0>",
|
||||||
"submitting": "Sende …",
|
"<0>Oops, something's gone wrong.</0>": "<0>Hoppla, etwas ist schiefgelaufen.</0>",
|
||||||
"unauthenticated_view_body": "Noch nicht registriert? <2>Konto erstellen</2>",
|
"Use the upcoming grid system": "Nutze das kommende Rastersystem",
|
||||||
"unauthenticated_view_eula_caption": "Mit einem Klick auf „Los geht’s“ akzeptierst du unseren <2>Endbenutzer-Lizenzvertrag (EULA)</2>",
|
"Expose developer settings in the settings window.": "Zeige die Entwicklereinstellungen im Einstellungsfenster.",
|
||||||
"unauthenticated_view_login_button": "Melde dich mit deinem Konto an",
|
"Developer Settings": "Entwicklereinstellungen",
|
||||||
"unmute_microphone_button_label": "Mikrofon aktivieren",
|
"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>.": "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>.",
|
||||||
"version": "Version: {{version}}",
|
"<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0></0><1></1>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."
|
||||||
"video_tile": {
|
|
||||||
"presenter_label": "{{displayName}} präsentiert",
|
|
||||||
"sfu_participant_local": "Du"
|
|
||||||
},
|
|
||||||
"waiting_for_participants": "Warte auf weitere Teilnehmer …"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,101 +1,101 @@
|
|||||||
{
|
{
|
||||||
"a11y": {
|
"You can't talk at the same time": "Δεν μπορείς να μιλάς ταυτόχρονα",
|
||||||
"user_menu": "Μενού χρήστη"
|
"Version: {{version}}": "Έκδοση: {{version}}",
|
||||||
},
|
"User menu": "Μενού χρήστη",
|
||||||
"action": {
|
"Submit feedback": "Υποβάλετε σχόλια",
|
||||||
"close": "Κλείσιμο",
|
"Stop sharing screen": "Διακοπή κοινής χρήσης οθόνης",
|
||||||
"copy": "Αντιγραφή",
|
"Sign in": "Σύνδεση",
|
||||||
"go": "Μετάβαση",
|
"Show call inspector": "Εμφάνιση του επιθεωρητή κλήσης",
|
||||||
"no": "Όχι",
|
"Share screen": "Κοινή χρήση οθόνης",
|
||||||
"register": "Εγγραφή",
|
"Sending…": "Αποστολή…",
|
||||||
"remove": "Αφαίρεση",
|
"Select an option": "Επιλέξτε μια επιλογή",
|
||||||
"sign_in": "Σύνδεση",
|
"Saving…": "Αποθήκευση…",
|
||||||
"sign_out": "Αποσύνδεση",
|
"Remove": "Αφαίρεση",
|
||||||
"submit": "Υποβολή"
|
"Registering…": "Εγγραφή…",
|
||||||
},
|
"Press and hold to talk": "Πατήστε παρατεταμένα για να μιλήσετε",
|
||||||
"analytics_notice": "Συμμετέχοντας σε αυτή τη δοκιμαστική έκδοση, συναινείτε στη συλλογή ανώνυμων δεδομένων, τα οποία χρησιμοποιούμε για τη βελτίωση του προϊόντος. Μπορείτε να βρείτε περισσότερες πληροφορίες σχετικά με το ποια δεδομένα καταγράφουμε στην <2>Πολιτική απορρήτου</2> και στην <5>Πολιτική cookies</5>.",
|
"Not registered yet? <2>Create an account</2>": "Δεν έχετε εγγραφεί ακόμα; <2>Δημιουργήστε λογαριασμό</2>",
|
||||||
"call_ended_view": {
|
"Login to your account": "Συνδεθείτε στο λογαριασμό σας",
|
||||||
"create_account_button": "Δημιουργία λογαριασμού",
|
"Logging in…": "Σύνδεση…",
|
||||||
"create_account_prompt": "<0>Γιατί να μην ολοκληρώσετε με τη δημιουργία ενός κωδικού πρόσβασης για τη διατήρηση του λογαριασμού σας;</0><1>Θα μπορείτε να διατηρήσετε το όνομά σας και να ορίσετε ένα avatar για χρήση σε μελλοντικές κλήσεις.</1>",
|
"Invite people": "Προσκαλέστε άτομα",
|
||||||
"feedback_done": "<0>Ευχαριστώ για τα σχόλιά σας!</0>",
|
"Invite": "Πρόσκληση",
|
||||||
"feedback_prompt": "<0>Θα θέλαμε να ακούσουμε τα σχόλιά σας ώστε να βελτιώσουμε την εμπειρία σας.</0>",
|
"Inspector": "Επιθεωρητής",
|
||||||
"headline": "{{displayName}}, η κλήση σας τερματίστηκε.",
|
"Incompatible versions!": "Μη συμβατές εκδόσεις!",
|
||||||
"not_now_button": "Όχι τώρα, επιστροφή στην αρχική οθόνη",
|
"Incompatible versions": "Μη συμβατές εκδόσεις",
|
||||||
"survey_prompt": "Πώς σας φάνηκε;"
|
"Display name": "Εμφανιζόμενο όνομα",
|
||||||
},
|
"Developer Settings": "Ρυθμίσεις προγραμματιστή",
|
||||||
"common": {
|
"Debug log request": "Αίτημα αρχείου καταγραφής",
|
||||||
"audio": "Ήχος",
|
"Call link copied": "Ο σύνδεσμος κλήσης αντιγράφηκε",
|
||||||
"camera": "Κάμερα",
|
"Avatar": "Avatar",
|
||||||
"copied": "Αντιγράφηκε!",
|
"Accept microphone permissions to join the call.": "Αποδεχτείτε τα δικαιώματα μικροφώνου για να συμμετάσχετε στην κλήση.",
|
||||||
"display_name": "Εμφανιζόμενο όνομα",
|
"Accept camera/microphone permissions to join the call.": "Αποδεχτείτε τα δικαιώματα κάμερας/μικροφώνου για να συμμετάσχετε στην κλήση.",
|
||||||
"home": "Αρχική",
|
"<0>Oops, something's gone wrong.</0>": "<0>Ωχ, κάτι πήγε στραβά.</0>",
|
||||||
"loading": "Φόρτωση…",
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Δημιουργήστε λογαριασμό</0> Ή <2>Συμμετέχετε ως επισκέπτης</2>",
|
||||||
"microphone": "Μικρόφωνο",
|
"<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>",
|
||||||
"password": "Κωδικός",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - Κλήση walkie-talkie",
|
||||||
"profile": "Προφίλ",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"settings": "Ρυθμίσεις",
|
"Your recent calls": "Οι πρόσφατες κλήσεις σας",
|
||||||
"username": "Όνομα χρήστη",
|
"Yes, join call": "Ναι, συμμετοχή στην κλήση",
|
||||||
"video": "Βίντεο"
|
"WebRTC is not supported or is being blocked in this browser.": "Το WebRTC δεν υποστηρίζεται ή έχει αποκλειστεί σε αυτό το πρόγραμμα περιήγησης.",
|
||||||
},
|
"Walkie-talkie call name": "Όνομα κλήσης walkie-talkie",
|
||||||
"exit_fullscreen_button_label": "Έξοδος από πλήρη οθόνη",
|
"Walkie-talkie call": "Κλήση walkie-talkie",
|
||||||
"full_screen_view_description": "<0>Η υποβολή αρχείων καταγραφής σφαλμάτων θα μας βοηθήσει να εντοπίσουμε το πρόβλημα.</0>",
|
"Waiting for other participants…": "Αναμονή για άλλους συμμετέχοντες…",
|
||||||
"full_screen_view_h1": "<0>Ωχ, κάτι πήγε στραβά.</0>",
|
"Waiting for network": "Αναμονή για δίκτυο",
|
||||||
"fullscreen_button_label": "Πλήρη οθόνη",
|
"Video call name": "Όνομα βίντεο κλήσης",
|
||||||
"header_label": "Element Κεντρική Οθόνη Κλήσεων",
|
"Video call": "Βίντεο κλήση",
|
||||||
"join_existing_call_modal": {
|
"Video": "Βίντεο",
|
||||||
"join_button": "Ναι, συμμετοχή στην κλήση",
|
"Username": "Όνομα χρήστη",
|
||||||
"text": "Αυτή η κλήση υπάρχει ήδη, θα θέλατε να συμμετάσχετε;",
|
"Turn on camera": "Ενεργοποιήστε την κάμερα",
|
||||||
"title": "Συμμετοχή στην υπάρχουσα κλήση;"
|
"Turn off camera": "Απενεργοποιήστε την κάμερα",
|
||||||
},
|
"This feature is only supported on Firefox.": "Αυτή η δυνατότητα υποστηρίζεται μόνο στον Firefox.",
|
||||||
"lobby": {
|
"This call already exists, would you like to join?": "Αυτή η κλήση υπάρχει ήδη, θα θέλατε να συμμετάσχετε;",
|
||||||
"join_button": "Συμμετοχή στην κλήση"
|
"Speaker": "Ηχείο",
|
||||||
},
|
"Spatial audio": "Χωρικός ήχος",
|
||||||
"local_volume_label": "Τοπική ένταση",
|
"Sign out": "Αποσύνδεση",
|
||||||
"logging_in": "Σύνδεση…",
|
"Settings": "Ρυθμίσεις",
|
||||||
"login_auth_links": "<0>Δημιουργήστε λογαριασμό</0> Ή <2>Συμμετέχετε ως επισκέπτης</2>",
|
"Save": "Αποθήκευση",
|
||||||
"login_title": "Σύνδεση",
|
"Return to home screen": "Επιστροφή στην αρχική οθόνη",
|
||||||
"rageshake_request_modal": {
|
"Register": "Εγγραφή",
|
||||||
"body": "Ένας άλλος χρήστης σε αυτή την κλήση έχει ένα πρόβλημα. Για την καλύτερη διάγνωση αυτών των προβλημάτων θα θέλαμε να συλλέξουμε ένα αρχείο καταγραφής σφαλμάτων.",
|
"Profile": "Προφίλ",
|
||||||
"title": "Αίτημα αρχείου καταγραφής"
|
"Press and hold spacebar to talk": "Για να μιλήσετε κρατήστε πατημένο το πλήκτρο διαστήματος",
|
||||||
},
|
"Passwords must match": "Οι κωδικοί πρέπει να ταιριάζουν",
|
||||||
"rageshake_send_logs": "Αποστολή αρχείων καταγραφής",
|
"Password": "Κωδικός",
|
||||||
"rageshake_sending": "Αποστολή…",
|
"Not now, return to home screen": "Όχι τώρα, επιστροφή στην αρχική οθόνη",
|
||||||
"rageshake_sending_logs": "Αποστολή αρχείων καταγραφής…",
|
"No": "Όχι",
|
||||||
"recaptcha_dismissed": "Το recaptcha απορρίφθηκε",
|
"Mute microphone": "Σίγαση μικροφώνου",
|
||||||
"recaptcha_not_loaded": "Το Recaptcha δεν φορτώθηκε",
|
"More menu": "Μενού περισσότερα",
|
||||||
"register": {
|
"More": "Περισσότερα",
|
||||||
"passwords_must_match": "Οι κωδικοί πρέπει να ταιριάζουν",
|
"Microphone permissions needed to join the call.": "Απαιτούνται δικαιώματα μικροφώνου για συμμετοχή στην κλήση.",
|
||||||
"registering": "Εγγραφή…"
|
"Microphone {{n}}": "Μικρόφωνο {{n}}",
|
||||||
},
|
"Microphone": "Μικρόφωνο",
|
||||||
"register_auth_links": "<0>Έχετε ήδη λογαριασμό;</0><1><0>Συνδεθείτε</0> Ή <2>Συμμετέχετε ως επισκέπτης</2></1>",
|
"Login": "Σύνδεση",
|
||||||
"register_confirm_password_label": "Επιβεβαίωση κωδικού",
|
"Loading…": "Φόρτωση…",
|
||||||
"return_home_button": "Επιστροφή στην αρχική οθόνη",
|
"Loading room…": "Φόρτωση δωματίου…",
|
||||||
"room_auth_view_join_button": "Συμμετοχή στην κλήση τώρα",
|
"Leave": "Αποχώρηση",
|
||||||
"screenshare_button_label": "Κοινή χρήση οθόνης",
|
"Join existing call?": "Συμμετοχή στην υπάρχουσα κλήση;",
|
||||||
"select_input_unset_button": "Επιλέξτε μια επιλογή",
|
"Join call now": "Συμμετοχή στην κλήση τώρα",
|
||||||
"settings": {
|
"Join call": "Συμμετοχή στην κλήση",
|
||||||
"developer_settings_label": "Ρυθμίσεις προγραμματιστή",
|
"Go": "Μετάβαση",
|
||||||
"developer_settings_label_description": "Εμφάνιση ρυθμίσεων προγραμματιστή στο παράθυρο ρυθμίσεων.",
|
"Full screen": "Πλήρη οθόνη",
|
||||||
"developer_tab_title": "Προγραμματιστής",
|
"Exit full screen": "Έξοδος από πλήρη οθόνη",
|
||||||
"feedback_tab_body": "Εάν αντιμετωπίζετε προβλήματα ή απλά θέλετε να μας δώσετε κάποια σχόλια, παρακαλούμε στείλτε μας μια σύντομη περιγραφή παρακάτω.",
|
"Details": "Λεπτομέρειες",
|
||||||
"feedback_tab_description_label": "Τα σχόλιά σας",
|
"Description (optional)": "Περιγραφή (προαιρετική)",
|
||||||
"feedback_tab_h4": "Υποβάλετε σχόλια",
|
"Create account": "Δημιουργία λογαριασμού",
|
||||||
"feedback_tab_send_logs_label": "Να συμπεριληφθούν αρχεία καταγραφής",
|
"Copy and share this call link": "Αντιγράψτε και μοιραστείτε αυτόν τον σύνδεσμο κλήσης",
|
||||||
"feedback_tab_thank_you": "Ευχαριστούμε, λάβαμε τα σχόλιά σας!",
|
"Copy": "Αντιγραφή",
|
||||||
"feedback_tab_title": "Ανατροφοδότηση",
|
"Copied!": "Αντιγράφηκε!",
|
||||||
"more_tab_title": "Περισσότερα",
|
"Connection lost": "Η σύνδεση χάθηκε",
|
||||||
"opt_in_description": "<0></0><1></1>Μπορείτε να ανακαλέσετε τη συγκατάθεσή σας αποεπιλέγοντας αυτό το πλαίσιο. Εάν βρίσκεστε σε κλήση, η ρύθμιση αυτή θα τεθεί σε ισχύ στο τέλος της.",
|
"Confirm password": "Επιβεβαίωση κωδικού",
|
||||||
"show_connection_stats_label": "Εμφάνιση στατιστικών σύνδεσης",
|
"Close": "Κλείσιμο",
|
||||||
"speaker_device_selection_label": "Ηχείο"
|
"Change layout": "Αλλαγή διάταξης",
|
||||||
},
|
"Camera/microphone permissions needed to join the call.": "Απαιτούνται δικαιώματα κάμερας/μικροφώνου για να συμμετάσχετε στην κλήση.",
|
||||||
"star_rating_input_label_one": "{{count}} αστέρι",
|
"Camera {{n}}": "Κάμερα {{n}}",
|
||||||
"star_rating_input_label_other": "{{count}} αστέρια",
|
"Camera": "Κάμερα",
|
||||||
"submitting": "Υποβολή…",
|
"Audio": "Ήχος",
|
||||||
"unauthenticated_view_body": "Δεν έχετε εγγραφεί ακόμα; <2>Δημιουργήστε λογαριασμό</2>",
|
"{{name}} is talking…": "{{name}} ομιλεί…",
|
||||||
"unauthenticated_view_login_button": "Συνδεθείτε στον λογαριασμό σας",
|
"{{name}} is presenting": "{{name}} παρουσιάζει",
|
||||||
"version": "Έκδοση: {{version}}",
|
"{{name}} (Waiting for video...)": "{{name}} (Αναμονή για βίντεο...)",
|
||||||
"video_tile": {
|
"{{name}} (Connecting...)": "{{name}} (Συνδέεται...)",
|
||||||
"presenter_label": "{{displayName}} παρουσιάζει"
|
"{{displayName}}, your call is now ended": "{{displayName}}, η κλήση σας τερματίστηκε",
|
||||||
},
|
"{{count}} people connected|other": "{{count}} άτομα συνδεδεμένα",
|
||||||
"waiting_for_participants": "Αναμονή για άλλους συμμετέχοντες…"
|
"{{count}} people connected|one": "{{count}} άτομο συνδεδεμένο"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,153 +1,143 @@
|
|||||||
{
|
{
|
||||||
"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}} (Waiting for video...)": "{{name}} (Waiting for video...)",
|
||||||
"copy": "Copy",
|
"{{name}} is presenting": "{{name}} is presenting",
|
||||||
"copy_link": "Copy link",
|
"{{name}} is talking…": "{{name}} is talking…",
|
||||||
"go": "Go",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"invite": "Invite",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - Walkie-talkie call",
|
||||||
"no": "No",
|
"<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.",
|
||||||
"register": "Register",
|
"<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>",
|
||||||
"remove": "Remove",
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Create an account</0> Or <2>Access as a guest</2>",
|
||||||
"sign_in": "Sign in",
|
"<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>",
|
||||||
"sign_out": "Sign out",
|
"<0>Oops, something's gone wrong.</0>": "<0>Oops, something's gone wrong.</0>",
|
||||||
"submit": "Submit"
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Submitting debug logs will help us track down the problem.</0>",
|
||||||
},
|
"<0>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>",
|
||||||
"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>.",
|
"Accept camera/microphone permissions to join the call.": "Accept camera/microphone permissions to join the call.",
|
||||||
"app_selection_modal": {
|
"Accept microphone permissions to join the call.": "Accept microphone permissions to join the call.",
|
||||||
"continue_in_browser": "Continue in browser",
|
"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.",
|
||||||
"open_in_app": "Open in the app",
|
"Audio": "Audio",
|
||||||
"text": "Ready to join?",
|
"Avatar": "Avatar",
|
||||||
"title": "Select app"
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "By clicking \"Go\", you agree to our <2>Terms and conditions</2>",
|
||||||
},
|
"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>",
|
||||||
"application_opened_another_tab": "This application has been opened in another tab.",
|
"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>.": "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>.",
|
||||||
"browser_media_e2ee_unsupported": "Your web browser does not support media end-to-end encryption. Supported Browsers are Chrome, Safari, Firefox >=117",
|
"Call link copied": "Call link copied",
|
||||||
"browser_media_e2ee_unsupported_heading": "Incompatible Browser",
|
"Call type menu": "Call type menu",
|
||||||
"call_ended_view": {
|
"Camera": "Camera",
|
||||||
"body": "You were disconnected from the call",
|
"Camera {{n}}": "Camera {{n}}",
|
||||||
"create_account_button": "Create account",
|
"Camera/microphone permissions needed to join the call.": "Camera/microphone permissions needed to join the call.",
|
||||||
"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>",
|
"Change layout": "Change layout",
|
||||||
"feedback_done": "<0>Thanks for your feedback!</0>",
|
"Close": "Close",
|
||||||
"feedback_prompt": "<0>We'd love to hear your feedback so we can improve your experience.</0>",
|
"Confirm password": "Confirm password",
|
||||||
"headline": "{{displayName}}, your call has ended.",
|
"Connection lost": "Connection lost",
|
||||||
"not_now_button": "Not now, return to home screen",
|
"Copied!": "Copied!",
|
||||||
"reconnect_button": "Reconnect",
|
"Copy": "Copy",
|
||||||
"survey_prompt": "How did it go?"
|
"Copy and share this call link": "Copy and share this call link",
|
||||||
},
|
"Create account": "Create account",
|
||||||
"call_name": "Name of call",
|
"Debug log": "Debug log",
|
||||||
"common": {
|
"Debug log request": "Debug log request",
|
||||||
"analytics": "Analytics",
|
"Description (optional)": "Description (optional)",
|
||||||
"audio": "Audio",
|
"Details": "Details",
|
||||||
"avatar": "Avatar",
|
"Developer": "Developer",
|
||||||
"camera": "Camera",
|
"Developer Settings": "Developer Settings",
|
||||||
"copied": "Copied!",
|
"Display name": "Display name",
|
||||||
"display_name": "Display name",
|
"Download debug logs": "Download debug logs",
|
||||||
"encrypted": "Encrypted",
|
"Element Call Home": "Element Call Home",
|
||||||
"error": "Error",
|
"Exit full screen": "Exit full screen",
|
||||||
"home": "Home",
|
"Expose developer settings in the settings window.": "Expose developer settings in the settings window.",
|
||||||
"loading": "Loading…",
|
"Fetching group call timed out.": "Fetching group call timed out.",
|
||||||
"microphone": "Microphone",
|
"Freedom": "Freedom",
|
||||||
"options": "Options",
|
"Full screen": "Full screen",
|
||||||
"password": "Password",
|
"Go": "Go",
|
||||||
"profile": "Profile",
|
"Grid layout menu": "Grid layout menu",
|
||||||
"settings": "Settings",
|
"Having trouble? Help us fix it.": "Having trouble? Help us fix it.",
|
||||||
"unencrypted": "Not encrypted",
|
"Home": "Home",
|
||||||
"username": "Username",
|
"Include debug logs": "Include debug logs",
|
||||||
"video": "Video"
|
"Incompatible versions": "Incompatible versions",
|
||||||
},
|
"Incompatible versions!": "Incompatible versions!",
|
||||||
"disconnected_banner": "Connectivity to the server has been lost.",
|
"Inspector": "Inspector",
|
||||||
"full_screen_view_description": "<0>Submitting debug logs will help us track down the problem.</0>",
|
"Invite": "Invite",
|
||||||
"full_screen_view_h1": "<0>Oops, something's gone wrong.</0>",
|
"Invite people": "Invite people",
|
||||||
"group_call_loader_failed_heading": "Call not found",
|
"Join call": "Join call",
|
||||||
"group_call_loader_failed_text": "Calls are now end-to-end encrypted and need to be created from the home page. This helps make sure everyone's using the same encryption key.",
|
"Join call now": "Join call now",
|
||||||
"hangup_button_label": "End call",
|
"Join existing call?": "Join existing call?",
|
||||||
"header_label": "Element Call Home",
|
"Leave": "Leave",
|
||||||
"header_participants_label": "Participants",
|
"Loading room…": "Loading room…",
|
||||||
"invite_modal": {
|
"Loading…": "Loading…",
|
||||||
"link_copied_toast": "Link copied to clipboard",
|
"Local volume": "Local volume",
|
||||||
"title": "Invite to this call"
|
"Logging in…": "Logging in…",
|
||||||
},
|
"Login": "Login",
|
||||||
"join_existing_call_modal": {
|
"Login to your account": "Login to your account",
|
||||||
"join_button": "Yes, join call",
|
"Microphone": "Microphone",
|
||||||
"text": "This call already exists, would you like to join?",
|
"Microphone {{n}}": "Microphone {{n}}",
|
||||||
"title": "Join existing call?"
|
"Microphone permissions needed to join the call.": "Microphone permissions needed to join the call.",
|
||||||
},
|
"More": "More",
|
||||||
"layout_grid_label": "Grid",
|
"More menu": "More menu",
|
||||||
"layout_spotlight_label": "Spotlight",
|
"Mute microphone": "Mute microphone",
|
||||||
"lobby": {
|
"No": "No",
|
||||||
"join_button": "Join call",
|
"Not now, return to home screen": "Not now, return to home screen",
|
||||||
"leave_button": "Back to recents"
|
"Not registered yet? <2>Create an account</2>": "Not registered yet? <2>Create an account</2>",
|
||||||
},
|
"Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>": "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>",
|
||||||
"log_in": "Log In",
|
"Password": "Password",
|
||||||
"logging_in": "Logging in…",
|
"Passwords must match": "Passwords must match",
|
||||||
"login_auth_links": "<0>Create an account</0> Or <2>Access as a guest</2>",
|
"Press and hold spacebar to talk": "Press and hold spacebar to talk",
|
||||||
"login_auth_links_prompt": "Not registered yet?",
|
"Press and hold spacebar to talk over {{name}}": "Press and hold spacebar to talk over {{name}}",
|
||||||
"login_subheading": "To continue to Element",
|
"Press and hold to talk": "Press and hold to talk",
|
||||||
"login_title": "Login",
|
"Press and hold to talk over {{name}}": "Press and hold to talk over {{name}}",
|
||||||
"microphone_off": "Microphone off",
|
"Profile": "Profile",
|
||||||
"microphone_on": "Microphone on",
|
"Recaptcha dismissed": "Recaptcha dismissed",
|
||||||
"mute_microphone_button_label": "Mute microphone",
|
"Recaptcha not loaded": "Recaptcha not loaded",
|
||||||
"participant_count_one": "{{count, number}}",
|
"Register": "Register",
|
||||||
"participant_count_other": "{{count, number}}",
|
"Registering…": "Registering…",
|
||||||
"rageshake_button_error_caption": "Retry sending logs",
|
"Release spacebar key to stop": "Release spacebar key to stop",
|
||||||
"rageshake_request_modal": {
|
"Release to stop": "Release to stop",
|
||||||
"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.",
|
"Remove": "Remove",
|
||||||
"title": "Debug log request"
|
"Return to home screen": "Return to home screen",
|
||||||
},
|
"Save": "Save",
|
||||||
"rageshake_send_logs": "Send debug logs",
|
"Saving…": "Saving…",
|
||||||
"rageshake_sending": "Sending…",
|
"Select an option": "Select an option",
|
||||||
"rageshake_sending_logs": "Sending debug logs…",
|
"Send debug logs": "Send debug logs",
|
||||||
"rageshake_sent": "Thanks!",
|
"Sending debug logs…": "Sending debug logs…",
|
||||||
"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>",
|
"Sending…": "Sending…",
|
||||||
"recaptcha_dismissed": "Recaptcha dismissed",
|
"Settings": "Settings",
|
||||||
"recaptcha_not_loaded": "Recaptcha not loaded",
|
"Share screen": "Share screen",
|
||||||
"register": {
|
"Show call inspector": "Show call inspector",
|
||||||
"passwords_must_match": "Passwords must match",
|
"Sign in": "Sign in",
|
||||||
"registering": "Registering…"
|
"Sign out": "Sign out",
|
||||||
},
|
"Spatial audio": "Spatial audio",
|
||||||
"register_auth_links": "<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>",
|
"Speaker": "Speaker",
|
||||||
"register_confirm_password_label": "Confirm password",
|
"Speaker {{n}}": "Speaker {{n}}",
|
||||||
"register_heading": "Create your account",
|
"Spotlight": "Spotlight",
|
||||||
"return_home_button": "Return to home screen",
|
"Stop sharing screen": "Stop sharing screen",
|
||||||
"room_auth_view_eula_caption": "By clicking \"Join call now\", you agree to our <2>End User Licensing Agreement (EULA)</2>",
|
"Submit feedback": "Submit feedback",
|
||||||
"room_auth_view_join_button": "Join call now",
|
"Submitting feedback…": "Submitting feedback…",
|
||||||
"screenshare_button_label": "Share screen",
|
"Take me Home": "Take me Home",
|
||||||
"select_input_unset_button": "Select an option",
|
"Talk over speaker": "Talk over speaker",
|
||||||
"settings": {
|
"Talking…": "Talking…",
|
||||||
"developer_settings_label": "Developer Settings",
|
"Thanks! We'll get right on it.": "Thanks! We'll get right on it.",
|
||||||
"developer_settings_label_description": "Expose developer settings in the settings window.",
|
"This call already exists, would you like to join?": "This call already exists, would you like to join?",
|
||||||
"developer_tab_title": "Developer",
|
"This feature is only supported on Firefox.": "This feature is only supported on Firefox.",
|
||||||
"feedback_tab_body": "If you are experiencing issues or simply would like to provide some feedback, please send us a short description below.",
|
"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>",
|
||||||
"feedback_tab_description_label": "Your feedback",
|
"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.)",
|
||||||
"feedback_tab_h4": "Submit feedback",
|
"Turn off camera": "Turn off camera",
|
||||||
"feedback_tab_send_logs_label": "Include debug logs",
|
"Turn on camera": "Turn on camera",
|
||||||
"feedback_tab_thank_you": "Thanks, we received your feedback!",
|
"Unmute microphone": "Unmute microphone",
|
||||||
"feedback_tab_title": "Feedback",
|
"Use the upcoming grid system": "Use the upcoming grid system",
|
||||||
"more_tab_title": "More",
|
"User ID": "User ID",
|
||||||
"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.",
|
"User menu": "User menu",
|
||||||
"show_connection_stats_label": "Show connection stats",
|
"Username": "Username",
|
||||||
"speaker_device_selection_label": "Speaker"
|
"Version: {{version}}": "Version: {{version}}",
|
||||||
},
|
"Video": "Video",
|
||||||
"star_rating_input_label_one": "{{count}} stars",
|
"Video call": "Video call",
|
||||||
"star_rating_input_label_other": "{{count}} stars",
|
"Video call name": "Video call name",
|
||||||
"start_new_call": "Start new call",
|
"Waiting for network": "Waiting for network",
|
||||||
"start_video_button_label": "Start video",
|
"Waiting for other participants…": "Waiting for other participants…",
|
||||||
"stop_screenshare_button_label": "Sharing screen",
|
"Walkie-talkie call": "Walkie-talkie call",
|
||||||
"stop_video_button_label": "Stop video",
|
"Walkie-talkie call name": "Walkie-talkie call name",
|
||||||
"submitting": "Submitting…",
|
"WebRTC is not supported or is being blocked in this browser.": "WebRTC is not supported or is being blocked in this browser.",
|
||||||
"unauthenticated_view_body": "Not registered yet? <2>Create an account</2>",
|
"Yes, join call": "Yes, join call",
|
||||||
"unauthenticated_view_eula_caption": "By clicking \"Go\", you agree to our <2>End User Licensing Agreement (EULA)</2>",
|
"You can't talk at the same time": "You can't talk at the same time",
|
||||||
"unauthenticated_view_login_button": "Login to your account",
|
"Your recent calls": "Your recent calls"
|
||||||
"unmute_microphone_button_label": "Unmute microphone",
|
|
||||||
"version": "Version: {{version}}",
|
|
||||||
"video_tile": {
|
|
||||||
"exit_full_screen": "Exit full screen",
|
|
||||||
"full_screen": "Full screen",
|
|
||||||
"mute_for_me": "Mute for me",
|
|
||||||
"sfu_participant_local": "You",
|
|
||||||
"volume": "Volume"
|
|
||||||
},
|
|
||||||
"waiting_for_participants": "Waiting for other participants…"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,102 +1,140 @@
|
|||||||
{
|
{
|
||||||
"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…",
|
||||||
"exit_fullscreen_button_label": "Salir de pantalla completa",
|
"Submit feedback": "Enviar comentarios",
|
||||||
"full_screen_view_description": "<0>Subir los registros de depuración nos ayudará a encontrar el problema.</0>",
|
"Stop sharing screen": "Dejar de compartir pantalla",
|
||||||
"full_screen_view_h1": "<0>Ups, algo ha salido mal.</0>",
|
"Spotlight": "Foco",
|
||||||
"fullscreen_button_label": "Pantalla completa",
|
"Speaker {{n}}": "Altavoz {{n}}",
|
||||||
"header_label": "Inicio de Element Call",
|
"Speaker": "Altavoz",
|
||||||
"join_existing_call_modal": {
|
"Spatial audio": "Audio espacial",
|
||||||
"join_button": "Si, unirse a la llamada",
|
"Sign out": "Cerrar sesión",
|
||||||
"text": "Esta llamada ya existe, ¿te gustaría unirte?",
|
"Sign in": "Iniciar sesión",
|
||||||
"title": "¿Unirse a llamada existente?"
|
"Show call inspector": "Mostrar inspector de llamada",
|
||||||
},
|
"Share screen": "Compartir pantalla",
|
||||||
"layout_spotlight_label": "Foco",
|
"Settings": "Ajustes",
|
||||||
"lobby": {
|
"Sending…": "Enviando…",
|
||||||
"join_button": "Unirse a la llamada"
|
"Sending debug logs…": "Enviando registros de depuración…",
|
||||||
},
|
"Send debug logs": "Enviar registros de depuración",
|
||||||
"local_volume_label": "Volumen local",
|
"Select an option": "Selecciona una opción",
|
||||||
"logging_in": "Iniciando sesión…",
|
"Saving…": "Guardando…",
|
||||||
"login_auth_links": "<0>Crear una cuenta</0> o <2>Acceder como invitado</2>",
|
"Save": "Guardar",
|
||||||
"login_title": "Iniciar sesión",
|
"Return to home screen": "Volver a la pantalla de inicio",
|
||||||
"rageshake_request_modal": {
|
"Remove": "Eliminar",
|
||||||
"body": "Otro usuario en esta llamada está teniendo problemas. Para diagnosticar estos problemas nos gustaría recopilar un registro de depuración.",
|
"Release to stop": "Suelta para parar",
|
||||||
"title": "Petición de registros de depuración"
|
"Release spacebar key to stop": "Suelta la barra espaciadora para parar",
|
||||||
},
|
"Registering…": "Registrando…",
|
||||||
"rageshake_send_logs": "Enviar registros de depuración",
|
"Recaptcha not loaded": "No se ha cargado el Recaptcha",
|
||||||
"rageshake_sending": "Enviando…",
|
"Recaptcha dismissed": "Recaptcha cancelado",
|
||||||
"rageshake_sending_logs": "Enviando registros de depuración…",
|
"Profile": "Perfil",
|
||||||
"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>",
|
"Press and hold to talk": "Mantén pulsado para hablar",
|
||||||
"recaptcha_dismissed": "Recaptcha cancelado",
|
"Press and hold spacebar to talk over {{name}}": "Mantén pulsada la barra espaciadora para hablar por encima de {{name}}",
|
||||||
"recaptcha_not_loaded": "No se ha cargado el Recaptcha",
|
"Press and hold spacebar to talk": "Mantén pulsada la barra espaciadora para hablar",
|
||||||
"register": {
|
"Passwords must match": "Las contraseñas deben coincidir",
|
||||||
"passwords_must_match": "Las contraseñas deben coincidir",
|
"Password": "Contraseña",
|
||||||
"registering": "Registrando…"
|
"Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>": "Otros usuarios están intentando unirse a la llamada con versiones incompatibles. Estos usuarios deberán asegurarse de que han refrescado sus navegadores:<1>{userLis}</1>",
|
||||||
},
|
"Not now, return to home screen": "Ahora no, volver a la pantalla de inicio",
|
||||||
"register_auth_links": "<0>¿Ya tienes una cuenta?</0><1><0>Iniciar sesión</0> o <2>Acceder como invitado</2></1>",
|
"No": "No",
|
||||||
"register_confirm_password_label": "Confirmar contraseña",
|
"Mute microphone": "Silenciar micrófono",
|
||||||
"return_home_button": "Volver a la pantalla de inicio",
|
"More menu": "Menú Más",
|
||||||
"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>",
|
"More": "Más",
|
||||||
"room_auth_view_join_button": "Unirse a la llamada ahora",
|
"Microphone permissions needed to join the call.": "Se necesitan permisos del micrófono para unirse a la llamada.",
|
||||||
"screenshare_button_label": "Compartir pantalla",
|
"Microphone {{n}}": "Micrófono {{n}}",
|
||||||
"select_input_unset_button": "Selecciona una opción",
|
"Microphone": "Micrófono",
|
||||||
"settings": {
|
"Login": "Iniciar sesión",
|
||||||
"developer_settings_label": "Ajustes de desarrollador",
|
"Logging in…": "Iniciando sesión…",
|
||||||
"developer_settings_label_description": "Muestra los ajustes de desarrollador en la ventana de ajustes.",
|
"Local volume": "Volumen local",
|
||||||
"developer_tab_title": "Desarrollador",
|
"Loading…": "Cargando…",
|
||||||
"feedback_tab_body": "Si tienes algún problema o simplemente quieres darnos tu opinión, por favor envíanos una breve descripción.",
|
"Loading room…": "Cargando sala…",
|
||||||
"feedback_tab_description_label": "Tus comentarios",
|
"Leave": "Abandonar",
|
||||||
"feedback_tab_h4": "Enviar comentarios",
|
"Join existing call?": "¿Unirse a llamada existente?",
|
||||||
"feedback_tab_send_logs_label": "Incluir registros de depuración",
|
"Join call now": "Unirse a la llamada ahora",
|
||||||
"feedback_tab_thank_you": "¡Gracias, hemos recibido tus comentarios!",
|
"Join call": "Unirse a la llamada",
|
||||||
"feedback_tab_title": "Danos tu opinión",
|
"Invite people": "Invitar a gente",
|
||||||
"more_tab_title": "Más",
|
"Invite": "Invitar",
|
||||||
"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.",
|
"Inspector": "Inspector",
|
||||||
"show_connection_stats_label": "Mostrar estadísticas de conexión",
|
"Incompatible versions!": "¡Versiones incompatibles!",
|
||||||
"speaker_device_selection_label": "Altavoz"
|
"Incompatible versions": "Versiones incompatibles",
|
||||||
},
|
"Include debug logs": "Incluir registros de depuración",
|
||||||
"star_rating_input_label_one": "{{count}} estrella",
|
"Home": "Inicio",
|
||||||
"star_rating_input_label_other": "{{count}} estrellas",
|
"Having trouble? Help us fix it.": "¿Tienes problemas? Ayúdanos a resolverlos.",
|
||||||
"submitting": "Enviando…",
|
"Grid layout menu": "Menú de distribución de cuadrícula",
|
||||||
"unauthenticated_view_body": "¿No estás registrado todavía? <2>Crear una cuenta</2>",
|
"Go": "Comenzar",
|
||||||
"unauthenticated_view_eula_caption": "Al hacer clic en \"Comenzar\", aceptas nuestro <2>Contrato de Licencia de Usuario Final (CLUF)</2>",
|
"Full screen": "Pantalla completa",
|
||||||
"unauthenticated_view_login_button": "Iniciar sesión en tu cuenta",
|
"Freedom": "Libre",
|
||||||
"version": "Versión: {{version}}",
|
"Fetching group call timed out.": "Se ha agotado el tiempo de espera para obtener la llamada grupal.",
|
||||||
"video_tile": {
|
"Exit full screen": "Salir de pantalla completa",
|
||||||
"presenter_label": "{{displayName}} está presentando"
|
"Download debug logs": "Descargar registros de depuración",
|
||||||
},
|
"Display name": "Nombre a mostrar",
|
||||||
"waiting_for_participants": "Esperando a los otros participantes…"
|
"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>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",
|
||||||
|
"Element Call Home": "Inicio de Element Call",
|
||||||
|
"Copy": "Copiar",
|
||||||
|
"{{name}} (Waiting for video...)": "{{name}} (Esperando al video...)",
|
||||||
|
"This feature is only supported on Firefox.": "Esta característica solo está disponible en Firefox.",
|
||||||
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Subir los registros de depuración nos ayudará a encontrar el problema.</0>",
|
||||||
|
"<0>Oops, something's gone wrong.</0>": "<0>Ups, algo ha salido mal.</0>",
|
||||||
|
"Expose developer settings in the settings window.": "Muestra los ajustes de desarrollador en la ventana de ajustes.",
|
||||||
|
"Developer Settings": "Ajustes de desarrollador"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,140 +1,143 @@
|
|||||||
{
|
{
|
||||||
"a11y": {
|
"Accept camera/microphone permissions to join the call.": "Kõnega liitumiseks 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 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>",
|
||||||
"action": {
|
"<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>",
|
||||||
"close": "Sulge",
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Loo konto</0> Või <2>Sisene külalisena</2>",
|
||||||
"copy": "Kopeeri",
|
"<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>",
|
||||||
"copy_link": "Kopeeri link",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - walkie-talkie-kõne",
|
||||||
"go": "Jätka",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"invite": "Kutsu",
|
"{{name}} is talking…": "{{nimi}} räägib…",
|
||||||
"no": "Ei",
|
"{{name}} is presenting": "{{nimi}} esitab",
|
||||||
"register": "Registreeru",
|
"{{name}} (Connecting...)": "{{nimi}} (ühendamisel...)",
|
||||||
"remove": "Eemalda",
|
"{{displayName}}, your call is now ended": "{{displayName}}, sinu kõne on nüüd lõppenud",
|
||||||
"sign_in": "Logi sisse",
|
"{{count}} people connected|other": "{{count}} osalejat liitunud",
|
||||||
"sign_out": "Logi välja",
|
"{{count}} people connected|one": "{{count}} osaleja liitunud",
|
||||||
"submit": "Saada"
|
"Invite people": "Kutsu inimesi",
|
||||||
},
|
"Invite": "Kutsu",
|
||||||
"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>.",
|
"Inspector": "Inspektor",
|
||||||
"app_selection_modal": {
|
"Incompatible versions!": "Ühildumatud versioonid!",
|
||||||
"continue_in_browser": "Jätka veebibrauseris",
|
"Incompatible versions": "Ühildumatud versioonid",
|
||||||
"open_in_app": "Ava rakenduses",
|
"Include debug logs": "Lisa veatuvastuslogid",
|
||||||
"text": "Oled valmis liituma?",
|
"Home": "Avavaatesse",
|
||||||
"title": "Vali rakendus"
|
"Having trouble? Help us fix it.": "Kas on probleeme? Aita meil asja parandada.",
|
||||||
},
|
"Grid layout menu": "Ruudustikvaate menüü",
|
||||||
"browser_media_e2ee_unsupported": "Sinu veebibrauser ei toeta meedia läbivat krüptimist. Toetatud brauserid on Chrome, Chromium, Safari ja Firefox >=117",
|
"Go": "Jätka",
|
||||||
"call_ended_view": {
|
"Full screen": "Täisekraan",
|
||||||
"body": "Sinu ühendus kõnega katkes",
|
"Freedom": "Vaba",
|
||||||
"create_account_button": "Loo konto",
|
"Fetching group call timed out.": "Grupikõne kättesaamine aegus.",
|
||||||
"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>",
|
"Exit full screen": "Välju täisekraanivaatest",
|
||||||
"feedback_done": "<0>Täname Sind tagasiside eest!</0>",
|
"Download debug logs": "Lae alla veatuvastuslogid",
|
||||||
"feedback_prompt": "<0>Meie rakenduse paremaks muutmiseks me hea meelega ootame Sinu arvamusi.</0>",
|
"Display name": "Kuvatav nimi",
|
||||||
"headline": "{{displayName}}, sinu kõne on lõppenud.",
|
"Developer": "Arendaja",
|
||||||
"not_now_button": "Mitte praegu, mine tagasi avalehele",
|
"Details": "Täpsemalt",
|
||||||
"reconnect_button": "Ühenda uuesti",
|
"Description (optional)": "Kirjeldus (valikuline)",
|
||||||
"survey_prompt": "Kuidas sujus?"
|
"Debug log request": "Veaotsingulogi päring",
|
||||||
},
|
"Debug log": "Veaotsingulogi",
|
||||||
"call_name": "Kõne nimi",
|
"Create account": "Loo konto",
|
||||||
"common": {
|
"Copy and share this call link": "Kopeeri ja jaga selle kõne linki",
|
||||||
"audio": "Heli",
|
"Copied!": "Kopeeritud!",
|
||||||
"avatar": "Tunnuspilt",
|
"Connection lost": "Ühendus on katkenud",
|
||||||
"camera": "Kaamera",
|
"Confirm password": "Kinnita salasõna",
|
||||||
"copied": "Kopeeritud!",
|
"Close": "Sulge",
|
||||||
"display_name": "Kuvatav nimi",
|
"Change layout": "Muuda paigutust",
|
||||||
"encrypted": "Krüptitud",
|
"Camera/microphone permissions needed to join the call.": "Kõnega liitumiseks vajalikud kaamera/mikrofoni kasutamise load.",
|
||||||
"home": "Avavaatesse",
|
"Camera {{n}}": "Kaamera {{n}}",
|
||||||
"loading": "Laadimine …",
|
"Camera": "Kaamera",
|
||||||
"microphone": "Mikrofon",
|
"Call type menu": "Kõnetüübi valik",
|
||||||
"password": "Salasõna",
|
"Call link copied": "Kõne link on kopeeritud",
|
||||||
"profile": "Profiil",
|
"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>",
|
||||||
"settings": "Seadistused",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Klõpsides „Jätka“nõustud sa meie <2>kasutustingimustega</2>",
|
||||||
"unencrypted": "Krüptimata",
|
"Avatar": "Tunnuspilt",
|
||||||
"username": "Kasutajanimi"
|
"Audio": "Heli",
|
||||||
},
|
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Ühel teisel selles kõnes osalejal on lahenduse kasutamisel tekkinud probleem ning selle põhjuse leidmiseks me sooviksime koguda silumislogisid.",
|
||||||
"disconnected_banner": "Võrguühendus serveriga on katkenud.",
|
"Press and hold spacebar to talk": "Rääkimiseks vajuta ja hoia all tühikuklahvi",
|
||||||
"exit_fullscreen_button_label": "Välju täisekraanivaatest",
|
"Passwords must match": "Salasõnad ei klapi",
|
||||||
"full_screen_view_description": "<0>Kui saadad meile vealogid, siis on lihtsam vea põhjust otsida.</0>",
|
"Password": "Salasõna",
|
||||||
"full_screen_view_h1": "<0>Ohoo, midagi on nüüd katki.</0>",
|
"Not registered yet? <2>Create an account</2>": "Pole veel registreerunud? <2>Loo kasutajakonto</2>",
|
||||||
"fullscreen_button_label": "Täisekraan",
|
"Not now, return to home screen": "Mitte praegu, mine tagasi avalehele",
|
||||||
"group_call_loader_failed_heading": "Kõnet ei leidu",
|
"No": "Ei",
|
||||||
"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.",
|
"Mute microphone": "Summuta mikrofon",
|
||||||
"hangup_button_label": "Lõpeta kõne",
|
"Your recent calls": "Hiljutised kõned",
|
||||||
"header_participants_label": "Osalejad",
|
"You can't talk at the same time": "Üheaegselt ei saa rääkida",
|
||||||
"invite_modal": {
|
"More menu": "Rohkem valikuid",
|
||||||
"link_copied_toast": "Link on kopeeritud lõikelauale",
|
"More": "Rohkem",
|
||||||
"title": "Kutsu liituma selle kõnaga"
|
"Microphone permissions needed to join the call.": "Kõnega liitumiseks on vaja lubada mikrofoni kasutamine.",
|
||||||
},
|
"Microphone {{n}}": "Mikrofon {{n}}",
|
||||||
"join_existing_call_modal": {
|
"Microphone": "Mikrofon",
|
||||||
"join_button": "Jah, liitu kõnega",
|
"Login to your account": "Logi oma kontosse sisse",
|
||||||
"text": "See kõne on juba olemas, kas soovid liituda?",
|
"Login": "Sisselogimine",
|
||||||
"title": "Liitu juba käimasoleva kõnega?"
|
"Logging in…": "Sisselogimine …",
|
||||||
},
|
"Local volume": "Kohalik helitugevus",
|
||||||
"layout_grid_label": "Ruudustik",
|
"Loading…": "Laadimine …",
|
||||||
"layout_spotlight_label": "Rambivalgus",
|
"Loading room…": "Ruumi laadimine …",
|
||||||
"lobby": {
|
"Leave": "Lahku",
|
||||||
"join_button": "Kõnega liitumine",
|
"Join existing call?": "Liitu juba käimasoleva kõnega?",
|
||||||
"leave_button": "Tagasi hiljutiste kõnede juurde"
|
"Join call now": "Kõnega liitumine",
|
||||||
},
|
"Join call": "Kõnega liitumine",
|
||||||
"local_volume_label": "Kohalik helitugevus",
|
"User ID": "Kasutajatunnus",
|
||||||
"logging_in": "Sisselogimine …",
|
"Turn on camera": "Lülita kaamera sisse",
|
||||||
"login_auth_links": "<0>Loo konto</0> Või <2>Sisene külalisena</2>",
|
"Turn off camera": "Lülita kaamera välja",
|
||||||
"login_title": "Sisselogimine",
|
"Submitting feedback…": "Tagasiside saatmine…",
|
||||||
"microphone_off": "Mikrofon ei tööta",
|
"Take me Home": "Mine avalehele",
|
||||||
"microphone_on": "Mikrofon töötab",
|
"Submit feedback": "Jaga tagasisidet",
|
||||||
"mute_microphone_button_label": "Summuta mikrofon",
|
"Stop sharing screen": "Lõpeta ekraani jagamine",
|
||||||
"rageshake_button_error_caption": "Proovi uuesti logisid saata",
|
"Spotlight": "Rambivalgus",
|
||||||
"rageshake_request_modal": {
|
"Speaker {{n}}": "Kõlar {{n}}",
|
||||||
"body": "Ühel teisel selles kõnes osalejal on lahenduse kasutamisel tekkinud probleem ning selle põhjuse leidmiseks me sooviksime koguda silumislogisid.",
|
"Speaker": "Kõlar",
|
||||||
"title": "Veaotsingulogi päring"
|
"Spatial audio": "Ruumiline heli",
|
||||||
},
|
"Sign out": "Logi välja",
|
||||||
"rageshake_send_logs": "Saada veaotsingulogid",
|
"Sign in": "Logi sisse",
|
||||||
"rageshake_sending": "Saatmine…",
|
"Show call inspector": "Näita kõneteavet",
|
||||||
"rageshake_sending_logs": "Veaotsingulogide saatmine…",
|
"Share screen": "Jaga ekraani",
|
||||||
"rageshake_sent": "Tänud!",
|
"Settings": "Seadistused",
|
||||||
"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>",
|
"Sending…": "Saatmine…",
|
||||||
"recaptcha_dismissed": "Robotilõks on vahele jäetud",
|
"Sending debug logs…": "Veaotsingulogide saatmine…",
|
||||||
"recaptcha_not_loaded": "Robotilõks pole laetud",
|
"Send debug logs": "Saada veaotsingulogid",
|
||||||
"register": {
|
"Select an option": "Vali oma eelistus",
|
||||||
"passwords_must_match": "Salasõnad ei klapi",
|
"Saving…": "Salvestamine…",
|
||||||
"registering": "Registreerimine…"
|
"Save": "Salvesta",
|
||||||
},
|
"Return to home screen": "Tagasi avalehele",
|
||||||
"register_auth_links": "<0>On sul juba konto?</0><1><0>Logi sisse</0> Või <2>Logi sisse külalisena</2></1>",
|
"Remove": "Eemalda",
|
||||||
"register_confirm_password_label": "Kinnita salasõna",
|
"Release to stop": "Peatamiseks vabasta klahv",
|
||||||
"return_home_button": "Tagasi avalehele",
|
"Release spacebar key to stop": "Peatamiseks vabasta tühikuklahv",
|
||||||
"room_auth_view_eula_caption": "Klõpsides „Liitu kõnega kohe“, nõustud sa meie <2>Lõppkasutaja litsentsilepinguga (EULA)</2>",
|
"Registering…": "Registreerimine…",
|
||||||
"room_auth_view_join_button": "Liitu kõnega kohe",
|
"Register": "Registreeru",
|
||||||
"screenshare_button_label": "Jaga ekraani",
|
"Recaptcha not loaded": "Robotilõks pole laetud",
|
||||||
"select_input_unset_button": "Vali oma eelistus",
|
"Recaptcha dismissed": "Robotilõks on vahele jäetud",
|
||||||
"settings": {
|
"Profile": "Profiil",
|
||||||
"developer_settings_label": "Arendaja seadistused",
|
"Press and hold to talk over {{name}}": "{{name}} ülerääkimiseks vajuta ja hoia all",
|
||||||
"developer_settings_label_description": "Näita seadistuste aknas arendajale vajalikke seadeid.",
|
"Press and hold to talk": "Rääkimiseks vajuta ja hoia all",
|
||||||
"developer_tab_title": "Arendaja",
|
"Press and hold spacebar to talk over {{name}}": "{{name}} ülerääkimiseks vajuta ja hoia all tühikuklahvi",
|
||||||
"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.",
|
"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>",
|
||||||
"feedback_tab_description_label": "Sinu tagasiside",
|
"Waiting for other participants…": "Ootame teiste osalejate lisandumist…",
|
||||||
"feedback_tab_h4": "Jaga tagasisidet",
|
"Waiting for network": "Ootame võrguühendust",
|
||||||
"feedback_tab_send_logs_label": "Lisa veatuvastuslogid",
|
"Video call name": "Videokõne nimi",
|
||||||
"feedback_tab_thank_you": "Tänud, me oleme sinu tagasiside kätte saanud!",
|
"Video call": "Videokõne",
|
||||||
"feedback_tab_title": "Tagasiside",
|
"Video": "Video",
|
||||||
"more_tab_title": "Rohkem",
|
"Version: {{version}}": "Versioon: {{version}}",
|
||||||
"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.",
|
"Username": "Kasutajanimi",
|
||||||
"show_connection_stats_label": "Näita ühenduse statistikat",
|
"This call already exists, would you like to join?": "See kõne on juba olemas, kas soovid liituda?",
|
||||||
"speaker_device_selection_label": "Kõlar"
|
"Talking…": "Jutt käib…",
|
||||||
},
|
"Talk over speaker": "Räägi teisest kõnelejast üle",
|
||||||
"star_rating_input_label_one": "{{count}} tärni",
|
"Thanks! We'll get right on it.": "Tänud! Tegeleme sellega esimesel võimalusel.",
|
||||||
"star_rating_input_label_other": "{{count}} tärni",
|
"Unmute microphone": "Aktiveeri mikrofon",
|
||||||
"start_new_call": "Algata uus kõne",
|
"User menu": "Kasutajamenüü",
|
||||||
"start_video_button_label": "Lülita videovoog sisse",
|
"Yes, join call": "Jah, liitu kõnega",
|
||||||
"stop_screenshare_button_label": "Ekraanivaade on jagamisel",
|
"Walkie-talkie call": "Walkie-talkie stiilis kõne",
|
||||||
"stop_video_button_label": "Peata videovoog",
|
"Walkie-talkie call name": "Walkie-talkie stiilis kõne nimi",
|
||||||
"submitting": "Saadan…",
|
"WebRTC is not supported or is being blocked in this browser.": "WebRTC pole kas selles brauseris toetatud või on keelatud.",
|
||||||
"unauthenticated_view_body": "Sa pole veel registreerunud? <2>Loo kasutajakonto</2>",
|
"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.)",
|
||||||
"unauthenticated_view_eula_caption": "Klõpsides „Jätka“, nõustud sa meie <2>Lõppkasutaja litsentsilepinguga (EULA)</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>": "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>",
|
||||||
"unauthenticated_view_login_button": "Logi oma kontosse sisse",
|
"Element Call Home": "Element Call Home",
|
||||||
"unmute_microphone_button_label": "Lülita mikrofon sisse",
|
"Copy": "Kopeeri",
|
||||||
"version": "Versioon: {{version}}",
|
"{{name}} (Waiting for video...)": "{{name}} (Ootame videovoo algust...)",
|
||||||
"video_tile": {
|
"This feature is only supported on Firefox.": "See funktsionaalsus on toetatud vaid Firefoxis.",
|
||||||
"presenter_label": "{{displayName}} on esitlemas",
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Kui saadad meile vealogid, siis on lihtsam vea põhjust otsida.</0>",
|
||||||
"sfu_participant_local": "Sina"
|
"<0>Oops, something's gone wrong.</0>": "<0>Ohoo, midagi on nüüd katki.</0>",
|
||||||
},
|
"Use the upcoming grid system": "Kasuta tulevast ruudustiku-põhist paigutust",
|
||||||
"waiting_for_participants": "Ootame teiste osalejate lisandumist…"
|
"Expose developer settings in the settings window.": "Näita seadistuste aknas arendajale vajalikke seadeid.",
|
||||||
|
"Developer Settings": "Arendaja seadistused",
|
||||||
|
"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>.": "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>.",
|
||||||
|
"<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0></0><1></1>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."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,81 +1,135 @@
|
|||||||
{
|
{
|
||||||
"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": "آزادی",
|
||||||
"exit_fullscreen_button_label": "خروج از حالت تمام صفحه",
|
"Exit full screen": "خروج از حالت تمام صفحه",
|
||||||
"fullscreen_button_label": "تمام صحفه",
|
"Download debug logs": "دانلود لاگ عیبیابی",
|
||||||
"header_label": "خانهٔ تماس المنت",
|
"Display name": "نام نمایشی",
|
||||||
"join_existing_call_modal": {
|
"Developer": "توسعه دهنده",
|
||||||
"join_button": "بله، به تماس بپیوندید",
|
"Details": "جزئیات",
|
||||||
"text": "این تماس از قبل وجود دارد، میخواهید بپیوندید؟",
|
"Description (optional)": "توضیحات (اختیاری)",
|
||||||
"title": "پیوست به تماس؟"
|
"Debug log request": "درخواست لاگ عیبیابی",
|
||||||
},
|
"Debug log": "لاگ عیبیابی",
|
||||||
"layout_spotlight_label": "نور افکن",
|
"Create account": "ساخت حساب کاربری",
|
||||||
"lobby": {
|
"Copy and share this call link": "لینک تماس را کپی کنید و به اشتراک بگذارید",
|
||||||
"join_button": "پیوستن به تماس"
|
"Copied!": "کپی شد!",
|
||||||
},
|
"Connection lost": "ارتباط قطع شد",
|
||||||
"local_volume_label": "حجم داخلی",
|
"Confirm password": "تایید رمزعبور",
|
||||||
"logging_in": "ورود…",
|
"Close": "بستن",
|
||||||
"login_auth_links": "<0>ساخت حساب کاربری</0> Or <2>دسترسی به عنوان میهمان</2>",
|
"Change layout": "تغییر طرح",
|
||||||
"login_title": "ورود",
|
"Camera/microphone permissions needed to join the call.": "برای پیوستن به تماس، دسترسی به دوربین/ میکروفون نیاز است.",
|
||||||
"rageshake_request_modal": {
|
"Camera {{n}}": "دوربین {{n}}",
|
||||||
"body": "کاربر دیگری در این تماس مشکلی دارد. برای تشخیص بهتر مشکل، بهتر است ما لاگ عیبیابی را جمعآوری کنیم.",
|
"Camera": "دوربین",
|
||||||
"title": "درخواست لاگ عیبیابی"
|
"Call type menu": "منوی نوع تماس",
|
||||||
},
|
"Call link copied": "لینک تماس کپی شد",
|
||||||
"rageshake_send_logs": "ارسال لاگهای عیبیابی",
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "با کلیک بر روی پیوستن به تماس، شما با <2>شرایط و قوانین استفاده</2> موافقت میکنید",
|
||||||
"rageshake_sending": "در حال ارسال…",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "با کلیک بر روی برو، شما با <2>شرایط و قوانین استفاده</2> موافقت میکنید",
|
||||||
"rageshake_sending_logs": "در حال ارسال باگهای عیبیابی…",
|
"Avatar": "آواتار",
|
||||||
"recaptcha_dismissed": "ریکپچا رد شد",
|
"Audio": "صدا",
|
||||||
"recaptcha_not_loaded": "کپچا بارگیری نشد",
|
"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": {
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"passwords_must_match": "رمز عبور باید همخوانی داشته باشد",
|
"Accept microphone permissions to join the call.": "پذیرفتن دسترسی به میکروفون برای پیوستن به تماس.",
|
||||||
"registering": "ثبتنام…"
|
"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>",
|
||||||
"register_auth_links": "<0>از قبل حساب کاربری دارید؟</0><1><0>ورود</0> Or <2>به عنوان یک میهمان وارد شوید</2></1>",
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>ساخت حساب کاربری</0> Or <2>دسترسی به عنوان میهمان</2>",
|
||||||
"register_confirm_password_label": "تایید رمزعبور",
|
"<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>",
|
||||||
"return_home_button": "برگشت به صفحه اصلی",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - تماس واکی-تاکی",
|
||||||
"room_auth_view_join_button": "الان به تماس بپیوند",
|
"{{name}} is talking…": "{{name}} در حال صحبت است…",
|
||||||
"screenshare_button_label": "اشتراک گذاری صفحه نمایش",
|
"{{name}} is presenting": "{{name}} حاضر است",
|
||||||
"select_input_unset_button": "یک گزینه را انتخاب کنید",
|
"{{displayName}}, your call is now ended": "{{displayName}} تماس شما پایان یافت",
|
||||||
"settings": {
|
"{{count}} people connected|other": "{{count}} نفر متصل هستند",
|
||||||
"developer_tab_title": "توسعه دهنده",
|
"{{count}} people connected|one": "{{count}} فرد متصل هستند",
|
||||||
"feedback_tab_h4": "بازخورد ارائه دهید",
|
"Local volume": "حجم داخلی",
|
||||||
"feedback_tab_send_logs_label": "شامل لاگهای عیبیابی",
|
"Inspector": "بازرس",
|
||||||
"more_tab_title": "بیشتر",
|
"Incompatible versions!": "نسخههای ناسازگار!",
|
||||||
"speaker_device_selection_label": "بلندگو"
|
"Incompatible versions": "نسخههای ناسازگار",
|
||||||
},
|
"Spotlight": "نور افکن",
|
||||||
"unauthenticated_view_body": "هنوز ثبتنام نکردهاید؟ <2>ساخت حساب کاربری</2>",
|
"Speaker {{n}}": "بلندگو {{n}}",
|
||||||
"unauthenticated_view_login_button": "به حساب کاربری خود وارد شوید",
|
"Show call inspector": "نمایش بازرس تماس",
|
||||||
"version": "نسخه: {{نسخه}}",
|
"Share screen": "اشتراک گذاری صفحه نمایش",
|
||||||
"waiting_for_participants": "در انتظار برای دیگر شرکتکنندگان…"
|
"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": "صدای جهتدار",
|
||||||
|
"Element Call Home": "خانهٔ تماس المنت",
|
||||||
|
"Copy": "رونوشت",
|
||||||
|
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>اکنون به تماس پیوسته</0><1>یا</1><2>پیوند تماس را رونوشت کرده و بعداً بپیوندید</2>",
|
||||||
|
"{{name}} (Waiting for video...)": "{{name}} (منتظر تصویر…)",
|
||||||
|
"{{name}} (Connecting...)": "{{name}} (وصل شدن…)"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,138 +1,143 @@
|
|||||||
{
|
{
|
||||||
"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>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>",
|
||||||
},
|
"Accept camera/microphone permissions to join the call.": "Autorisez l’accès à votre caméra et microphone pour rejoindre l’appel.",
|
||||||
"action": {
|
"Accept microphone permissions to join the call.": "Autorisez l’accès au microphone pour rejoindre l’appel.",
|
||||||
"close": "Fermer",
|
"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": "Copier",
|
"Audio": "Audio",
|
||||||
"copy_link": "Copier le lien",
|
"Avatar": "Avatar",
|
||||||
"go": "Commencer",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "En cliquant sur « Commencer » vous acceptez nos <2>conditions d’utilisation</2>",
|
||||||
"invite": "Inviter",
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "En cliquant sur « Rejoindre l’appel » vous acceptez nos <2>conditions d’utilisation</2>",
|
||||||
"no": "Non",
|
"Call link copied": "Lien de l’appel copié",
|
||||||
"register": "S’enregistrer",
|
"Call type menu": "Menu de type d’appel",
|
||||||
"remove": "Supprimer",
|
"Camera": "Caméra",
|
||||||
"sign_in": "Connexion",
|
"Camera {{n}}": "Caméra {{n}}",
|
||||||
"sign_out": "Déconnexion",
|
"Camera/microphone permissions needed to join the call.": "Accès à la caméra et au microphone requis pour rejoindre l’appel.",
|
||||||
"submit": "Envoyer"
|
"Change layout": "Changer la disposition",
|
||||||
},
|
"Close": "Fermer",
|
||||||
"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 d’informations sur les données collectées dans notre <2>Politique de vie privée</2> et notre <5>Politique de cookies</5>.",
|
"Confirm password": "Confirmer le mot de passe",
|
||||||
"app_selection_modal": {
|
"Connection lost": "Connexion interrompue",
|
||||||
"continue_in_browser": "Continuer dans le navigateur",
|
"Copied!": "Copié !",
|
||||||
"open_in_app": "Ouvrir dans l’application",
|
"Copy and share this call link": "Copier et partager le lien de cet appel",
|
||||||
"text": "Prêt à rejoindre ?",
|
"Create account": "Créer un compte",
|
||||||
"title": "Choisissez l’application"
|
"Debug log": "Journal de débogage",
|
||||||
},
|
"Debug log request": "Demande d’un 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",
|
"Description (optional)": "Description (facultatif)",
|
||||||
"call_ended_view": {
|
"Details": "Informations",
|
||||||
"body": "Vous avez été déconnecté de l’appel",
|
"Developer": "Développeur",
|
||||||
"create_account_button": "Créer un compte",
|
"Display name": "Nom d’affichage",
|
||||||
"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>",
|
"Download debug logs": "Télécharger les journaux de débogage",
|
||||||
"feedback_done": "<0>Merci pour votre commentaire !</0>",
|
"Exit full screen": "Quitter le plein écran",
|
||||||
"feedback_prompt": "<0>Nous aimerions avoir vos commentaires afin que nous puissions améliorer votre expérience.</0>",
|
"Freedom": "Libre",
|
||||||
"headline": "{{displayName}}, votre appel est terminé.",
|
"Full screen": "Plein écran",
|
||||||
"not_now_button": "Pas maintenant, retourner à l’accueil",
|
"Go": "Commencer",
|
||||||
"reconnect_button": "Se reconnecter",
|
"Grid layout menu": "Menu en grille",
|
||||||
"survey_prompt": "Comment cela s’est-il passé ?"
|
"Having trouble? Help us fix it.": "Un problème ? Aidez nous à le résoudre.",
|
||||||
},
|
"Home": "Accueil",
|
||||||
"call_name": "Nom de l’appel",
|
"Include debug logs": "Inclure les journaux de débogage",
|
||||||
"common": {
|
"Incompatible versions": "Versions incompatibles",
|
||||||
"camera": "Caméra",
|
"Incompatible versions!": "Versions incompatibles !",
|
||||||
"copied": "Copié !",
|
"Inspector": "Inspecteur",
|
||||||
"display_name": "Nom d’affichage",
|
"Invite people": "Inviter des gens",
|
||||||
"encrypted": "Chiffré",
|
"Join call": "Rejoindre l’appel",
|
||||||
"home": "Accueil",
|
"Join call now": "Rejoindre l’appel maintenant",
|
||||||
"loading": "Chargement…",
|
"Join existing call?": "Rejoindre un appel existant ?",
|
||||||
"password": "Mot de passe",
|
"Leave": "Partir",
|
||||||
"profile": "Profil",
|
"Loading room…": "Chargement du salon…",
|
||||||
"settings": "Paramètres",
|
"Loading…": "Chargement…",
|
||||||
"unencrypted": "Non chiffré",
|
"Local volume": "Volume local",
|
||||||
"username": "Nom d’utilisateur",
|
"Logging in…": "Connexion…",
|
||||||
"video": "Vidéo"
|
"Login": "Connexion",
|
||||||
},
|
"Login to your account": "Connectez vous à votre compte",
|
||||||
"disconnected_banner": "La connexion avec le serveur a été perdue.",
|
"Microphone": "Microphone",
|
||||||
"exit_fullscreen_button_label": "Quitter le plein écran",
|
"Microphone permissions needed to join the call.": "Accès au microphone requis pour rejoindre l’appel.",
|
||||||
"full_screen_view_description": "<0>Soumettre les journaux de débogage nous aidera à déterminer le problème.</0>",
|
"Microphone {{n}}": "Microphone {{n}}",
|
||||||
"full_screen_view_h1": "<0>Oups, quelque chose s’est mal passé.</0>",
|
"More": "Plus",
|
||||||
"fullscreen_button_label": "Plein écran",
|
"More menu": "Menu plus",
|
||||||
"group_call_loader_failed_heading": "Appel non trouvé",
|
"Mute microphone": "Couper le micro",
|
||||||
"group_call_loader_failed_text": "Les appels sont maintenant chiffrés de bout-en-bout et doivent être créés depuis la page d’accueil. Cela permet d’être sûr que tout le monde utilise la même clé de chiffrement.",
|
"No": "Non",
|
||||||
"hangup_button_label": "Terminer l’appel",
|
"Not now, return to home screen": "Pas maintenant, retourner à l’accueil",
|
||||||
"header_label": "Accueil Element Call",
|
"Not registered yet? <2>Create an account</2>": "Pas encore de compte ? <2>En créer un</2>",
|
||||||
"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>": "Des utilisateurs essayent de rejoindre cet appel à partir de versions incompatibles. Ces utilisateurs doivent rafraîchir la page dans leur navigateur : <1>{userLis}</1>",
|
||||||
"link_copied_toast": "Lien copié dans le presse-papier",
|
"Password": "Mot de passe",
|
||||||
"title": "Inviter dans cet appel"
|
"Passwords must match": "Les mots de passe doivent correspondre",
|
||||||
},
|
"Press and hold spacebar to talk": "Appuyez et maintenez la barre d’espace enfoncée pour parler",
|
||||||
"join_existing_call_modal": {
|
"Press and hold spacebar to talk over {{name}}": "Appuyez et maintenez la barre d’espace enfoncée pour parler par dessus {{name}}",
|
||||||
"join_button": "Oui, rejoindre l’appel",
|
"Press and hold to talk": "Appuyez et maintenez enfoncé pour parler",
|
||||||
"text": "Cet appel existe déjà, voulez-vous le rejoindre ?",
|
"Press and hold to talk over {{name}}": "Appuyez et maintenez enfoncé pour parler par dessus {{name}}",
|
||||||
"title": "Rejoindre un appel existant ?"
|
"Profile": "Profil",
|
||||||
},
|
"Recaptcha dismissed": "Recaptcha refusé",
|
||||||
"layout_grid_label": "Grille",
|
"Recaptcha not loaded": "Recaptcha non chargé",
|
||||||
"layout_spotlight_label": "Premier plan",
|
"Register": "S’enregistrer",
|
||||||
"lobby": {
|
"Registering…": "Enregistrement…",
|
||||||
"join_button": "Rejoindre l’appel",
|
"Release spacebar key to stop": "Relâcher la barre d’espace pour arrêter",
|
||||||
"leave_button": "Revenir à l’historique des appels"
|
"Release to stop": "Relâcher pour arrêter",
|
||||||
},
|
"Remove": "Supprimer",
|
||||||
"local_volume_label": "Volume local",
|
"Return to home screen": "Retour à l’accueil",
|
||||||
"logging_in": "Connexion…",
|
"Save": "Enregistrer",
|
||||||
"login_auth_links": "<0>Créer un compte</0> Or <2>Accès invité</2>",
|
"Saving…": "Enregistrement…",
|
||||||
"login_title": "Connexion",
|
"Select an option": "Sélectionnez une option",
|
||||||
"microphone_off": "Microphone éteint",
|
"Send debug logs": "Envoyer les journaux de débogage",
|
||||||
"microphone_on": "Microphone allumé",
|
"Sending…": "Envoi…",
|
||||||
"mute_microphone_button_label": "Couper le microphone",
|
"Settings": "Paramètres",
|
||||||
"rageshake_button_error_caption": "Réessayer d’envoyer les journaux",
|
"Share screen": "Partage d’écran",
|
||||||
"rageshake_request_modal": {
|
"Show call inspector": "Afficher l’inspecteur d’appel",
|
||||||
"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.",
|
"Sign in": "Connexion",
|
||||||
"title": "Demande d’un journal de débogage"
|
"Sign out": "Déconnexion",
|
||||||
},
|
"Spatial audio": "Audio spatialisé",
|
||||||
"rageshake_send_logs": "Envoyer les journaux de débogage",
|
"Spotlight": "Premier plan",
|
||||||
"rageshake_sending": "Envoi…",
|
"Stop sharing screen": "Arrêter le partage d’écran",
|
||||||
"rageshake_sending_logs": "Envoi des journaux de débogage…",
|
"Submit feedback": "Envoyer des retours",
|
||||||
"rageshake_sent": "Merci !",
|
"Submitting feedback…": "Envoi des retours…",
|
||||||
"recaptcha_caption": "Ce site est protégé par ReCAPTCHA, la <2>politique de confidentialité</2> et les <6>conditions d’utilisation</6> de Google s’appliquent.<9></9>En cliquant sur « S’enregistrer » vous acceptez également notre <12>Contrat de Licence Utilisateur Final (CLUF)</12>",
|
"Take me Home": "Retouner à l’accueil",
|
||||||
"recaptcha_dismissed": "Recaptcha refusé",
|
"Talk over speaker": "Parler par dessus l’intervenant",
|
||||||
"recaptcha_not_loaded": "Recaptcha non chargé",
|
"Thanks! We'll get right on it.": "Merci ! Nous allons nous y attaquer.",
|
||||||
"register": {
|
"This call already exists, would you like to join?": "Cet appel existe déjà, voulez-vous le rejoindre ?",
|
||||||
"passwords_must_match": "Les mots de passe doivent correspondre",
|
"{{name}} is presenting": "{{name}} est le présentateur",
|
||||||
"registering": "Enregistrement…"
|
"Fetching group call timed out.": "Échec de connexion à l’appel de groupe dans le temps imparti.",
|
||||||
},
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} — Appel talkie-walkie",
|
||||||
"register_auth_links": "<0>Vous avez déjà un compte ?</0><1><0>Se connecter</0> Ou <2>Accès invité</2></1>",
|
"{{name}} is talking…": "{{name}} est en train de parler…",
|
||||||
"register_confirm_password_label": "Confirmer le mot de passe",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"return_home_button": "Retour à l’accueil",
|
"{{displayName}}, your call is now ended": "{{displayName}}, votre appel est désormais terminé",
|
||||||
"room_auth_view_eula_caption": "En cliquant sur « Rejoindre l’appel maintenant », vous acceptez notre <2>Contrat de Licence Utilisateur Final (CLUF)</2>",
|
"{{count}} people connected|other": "{{count}} personnes connectées",
|
||||||
"room_auth_view_join_button": "Rejoindre l’appel maintenant",
|
"{{count}} people connected|one": "{{count}} personne connectée",
|
||||||
"screenshare_button_label": "Partage d’écran",
|
"Your recent calls": "Appels récents",
|
||||||
"select_input_unset_button": "Sélectionnez une option",
|
"You can't talk at the same time": "Vous ne pouvez pas parler en même temps",
|
||||||
"settings": {
|
"Yes, join call": "Oui, rejoindre l’appel",
|
||||||
"developer_settings_label": "Paramètres développeurs",
|
"WebRTC is not supported or is being blocked in this browser.": "WebRTC n’est pas pris en charge ou est bloqué par ce navigateur.",
|
||||||
"developer_settings_label_description": "Affiche les paramètres développeurs dans la fenêtre des paramètres.",
|
"Walkie-talkie call name": "Nom de l’appel talkie-walkie",
|
||||||
"developer_tab_title": "Développeur",
|
"Walkie-talkie call": "Appel talkie-walkie",
|
||||||
"feedback_tab_body": "Si vous rencontrez des problèmes, ou vous voulez simplement faire un commentaire, faites-en une courte description ci-dessous.",
|
"Waiting for other participants…": "En attente d’autres participants…",
|
||||||
"feedback_tab_description_label": "Votre commentaire",
|
"Waiting for network": "En attente du réseau",
|
||||||
"feedback_tab_h4": "Envoyer un commentaire",
|
"Video call name": "Nom de l’appel vidéo",
|
||||||
"feedback_tab_send_logs_label": "Inclure les journaux de débogage",
|
"Video call": "Appel vidéo",
|
||||||
"feedback_tab_thank_you": "Merci, nous avons reçu vos commentaires !",
|
"Video": "Vidéo",
|
||||||
"feedback_tab_title": "Commentaires",
|
"Version: {{version}}": "Version : {{version}}",
|
||||||
"more_tab_title": "Plus",
|
"Username": "Nom d’utilisateur",
|
||||||
"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 l’appel.",
|
"User menu": "Menu utilisateur",
|
||||||
"show_connection_stats_label": "Afficher les statistiques de la connexion",
|
"User ID": "Identifiant utilisateur",
|
||||||
"speaker_device_selection_label": "Intervenant"
|
"Unmute microphone": "Allumer le micro",
|
||||||
},
|
"Turn on camera": "Allumer la caméra",
|
||||||
"star_rating_input_label_one": "{{count}} favori",
|
"Turn off camera": "Couper la caméra",
|
||||||
"star_rating_input_label_other": "{{count}} favoris",
|
"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 l’impression que le son de l’intervenant 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.)",
|
||||||
"start_new_call": "Démarrer un nouvel appel",
|
"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 d’utilisation</6> de Google s’appliquent.<9></9>En cliquant sur « S’enregistrer » vous acceptez également nos <12>conditions d’utilisation</12>",
|
||||||
"start_video_button_label": "Démarrer la vidéo",
|
"Talking…": "Vous parlez…",
|
||||||
"stop_screenshare_button_label": "L’écran est partagé",
|
"Speaker {{n}}": "Intervenant {{n}}",
|
||||||
"stop_video_button_label": "Arrêter la vidéo",
|
"Speaker": "Intervenant",
|
||||||
"submitting": "Envoi…",
|
"Invite": "Inviter",
|
||||||
"unauthenticated_view_body": "Pas encore de compte ? <2>En créer un</2>",
|
"<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>",
|
||||||
"unauthenticated_view_eula_caption": "En cliquant sur « Commencer », vous acceptez notre <2>Contrat de Licence Utilisateur Final (CLUF)</2>",
|
"Sending debug logs…": "Envoi des journaux de débogage…",
|
||||||
"unauthenticated_view_login_button": "Connectez vous à votre compte",
|
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Rejoindre l’appel maintenant</0><1>Ou</1><2>Copier le lien de l’appel et rejoindre plus tard</2>",
|
||||||
"unmute_microphone_button_label": "Allumer le microphone",
|
"{{name}} (Connecting...)": "{{name}} (Connexion…)",
|
||||||
"version": "Version : {{version}}",
|
"Element Call Home": "Accueil Element Call",
|
||||||
"video_tile": {
|
"Copy": "Copier",
|
||||||
"presenter_label": "{{displayName}} est à l’écran",
|
"{{name}} (Waiting for video...)": "{{name}} (En attente de vidéo…)",
|
||||||
"sfu_participant_local": "Vous"
|
"This feature is only supported on Firefox.": "Cette fonctionnalité est prise en charge dans Firefox uniquement.",
|
||||||
},
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Soumettre les journaux de débogage nous aidera à déterminer le problème.</0>",
|
||||||
"waiting_for_participants": "En attente d’autres participants…"
|
"<0>Oops, something's gone wrong.</0>": "<0>Oups, quelque chose s’est mal passé.</0>",
|
||||||
|
"Use the upcoming grid system": "Utiliser le futur système de grille",
|
||||||
|
"Expose developer settings in the settings window.": "Affiche les paramètres développeurs dans la fenêtre des paramètres.",
|
||||||
|
"Developer Settings": "Paramètres développeurs",
|
||||||
|
"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>.": "En participant à cette beta, vous consentez à la collecte de données anonymes, qui seront utilisées pour améliorer le produit. Vous trouverez plus d’informations sur les données collectées dans notre <2>Politique de vie privée</2> et notre <5>Politique de cookies</5>.",
|
||||||
|
"<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0></0><1></1>Vous pouvez retirer votre consentement en décochant cette case. Si vous êtes actuellement en communication, ce paramètre prendra effet à la fin de l’appel."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,139 +1,143 @@
|
|||||||
{
|
{
|
||||||
"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>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>",
|
||||||
"action": {
|
"Accept camera/microphone permissions to join the call.": "Terima izin kamera/mikrofon untuk bergabung ke panggilan.",
|
||||||
"close": "Tutup",
|
"Accept microphone permissions to join the call.": "Terima izin mikrofon untuk bergabung ke panggilan.",
|
||||||
"copy": "Salin",
|
"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.",
|
||||||
"copy_link": "Salin tautan",
|
"Audio": "Audio",
|
||||||
"go": "Bergabung",
|
"Avatar": "Avatar",
|
||||||
"invite": "Undang",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Dengan mengeklik \"Bergabung\", Anda terima <2>syarat dan ketentuan</2> kami",
|
||||||
"no": "Tidak",
|
"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",
|
||||||
"register": "Daftar",
|
"Call link copied": "Tautan panggilan disalin",
|
||||||
"remove": "Hapus",
|
"Call type menu": "Menu jenis panggilan",
|
||||||
"sign_in": "Masuk",
|
"Camera": "Kamera",
|
||||||
"sign_out": "Keluar",
|
"Camera {{n}}": "Kamera {{n}}",
|
||||||
"submit": "Kirim"
|
"Camera/microphone permissions needed to join the call.": "Izin kamera/mikrofon dibutuhkan untuk bergabung ke panggilan.",
|
||||||
},
|
"Change layout": "Ubah tata letak",
|
||||||
"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.",
|
"Close": "Tutup",
|
||||||
"app_selection_modal": {
|
"Confirm password": "Konfirmasi kata sandi",
|
||||||
"continue_in_browser": "Lanjutkan dalam peramban",
|
"Connection lost": "Koneksi hilang",
|
||||||
"open_in_app": "Buka dalam aplikasi",
|
"Copied!": "Disalin!",
|
||||||
"text": "Siap untuk bergabung?",
|
"Copy and share this call link": "Salin dan bagikan tautan panggilan ini",
|
||||||
"title": "Pilih plikasi"
|
"Create account": "Buat akun",
|
||||||
},
|
"Debug log": "Catatan pengawakutuan",
|
||||||
"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 request": "Permintaan catatan pengawakutuan",
|
||||||
"call_ended_view": {
|
"Description (optional)": "Deskripsi (opsional)",
|
||||||
"body": "Anda terputus dari panggilan",
|
"Details": "Detail",
|
||||||
"create_account_button": "Buat akun",
|
"Developer": "Pengembang",
|
||||||
"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>",
|
"Display name": "Nama tampilan",
|
||||||
"feedback_done": "<0>Terima kasih atas masukan Anda!</0>",
|
"Download debug logs": "Unduh catatan pengawakutuan",
|
||||||
"feedback_prompt": "<0>Kami ingin mendengar masukan Anda supaya kami bisa meningkatkan pengalaman Anda.</0>",
|
"Exit full screen": "Keluar dari layar penuh",
|
||||||
"headline": "{{displayName}}, panggilan Anda telah berakhir.",
|
"Fetching group call timed out.": "Waktu pendapatan panggilan grup habis.",
|
||||||
"not_now_button": "Tidak sekarang, kembali ke layar beranda",
|
"Freedom": "Bebas",
|
||||||
"reconnect_button": "Hubungkan ulang",
|
"Full screen": "Layar penuh",
|
||||||
"survey_prompt": "Bagaimana rasanya?"
|
"Go": "Bergabung",
|
||||||
},
|
"Grid layout menu": "Menu tata letak kisi",
|
||||||
"call_name": "Nama panggilan",
|
"Having trouble? Help us fix it.": "Mengalami masalah? Bantu kami memperbaikinya.",
|
||||||
"common": {
|
"Home": "Beranda",
|
||||||
"camera": "Kamera",
|
"Include debug logs": "Termasuk catatan pengawakutuan",
|
||||||
"copied": "Disalin!",
|
"Incompatible versions": "Versi tidak kompatibel",
|
||||||
"display_name": "Nama tampilan",
|
"Incompatible versions!": "Versi tidak kompatibel!",
|
||||||
"encrypted": "Terenkripsi",
|
"Inspector": "Inspektur",
|
||||||
"home": "Beranda",
|
"Invite": "Undang",
|
||||||
"loading": "Memuat…",
|
"Invite people": "Undang orang",
|
||||||
"microphone": "Mikrofon",
|
"Join call": "Bergabung ke panggilan",
|
||||||
"password": "Kata sandi",
|
"Join call now": "Bergabung ke panggilan sekarang",
|
||||||
"profile": "Profil",
|
"Join existing call?": "Bergabung ke panggilan yang sudah ada?",
|
||||||
"settings": "Pengaturan",
|
"Leave": "Keluar",
|
||||||
"unencrypted": "Tidak terenkripsi",
|
"Loading room…": "Memuat ruangan…",
|
||||||
"username": "Nama pengguna"
|
"Loading…": "Memuat…",
|
||||||
},
|
"Local volume": "Volume lokal",
|
||||||
"disconnected_banner": "Koneksi ke server telah hilang.",
|
"Logging in…": "Memasuki…",
|
||||||
"exit_fullscreen_button_label": "Keluar dari layar penuh",
|
"Login": "Masuk",
|
||||||
"full_screen_view_description": "<0>Mengirim catatan pengawakutuan akan membantu kami melacak masalahnya.</0>",
|
"Login to your account": "Masuk ke akun Anda",
|
||||||
"full_screen_view_h1": "<0>Aduh, ada yang salah.</0>",
|
"Microphone": "Mikrofon",
|
||||||
"fullscreen_button_label": "Layar penuh",
|
"Microphone permissions needed to join the call.": "Izin mikrofon dibutuhkan untuk bergabung ke panggilan ini.",
|
||||||
"group_call_loader_failed_heading": "Panggilan tidak ditemukan",
|
"Microphone {{n}}": "Mikrofon {{n}}",
|
||||||
"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.",
|
"More": "Lainnya",
|
||||||
"hangup_button_label": "Akhiri panggilan",
|
"More menu": "Menu lainnya",
|
||||||
"header_label": "Beranda Element Call",
|
"Mute microphone": "Bisukan mikrofon",
|
||||||
"header_participants_label": "Peserta",
|
"No": "Tidak",
|
||||||
"invite_modal": {
|
"Not now, return to home screen": "Tidak sekarang, kembali ke layar beranda",
|
||||||
"link_copied_toast": "Tautan disalin ke papan klip",
|
"Not registered yet? <2>Create an account</2>": "Belum terdaftar? <2>Buat sebuah akun</2>",
|
||||||
"title": "Undang ke panggilan ini"
|
"Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>": "Pengguna lain sedang mencoba bergabung ke panggilan ini dari versi yang tidak kompatibel. Pengguna berikut seharusnya memastikan bahwa mereka telah memuat ulang peramban mereka: <1>{userLis}</1>",
|
||||||
},
|
"Password": "Kata sandi",
|
||||||
"join_existing_call_modal": {
|
"Passwords must match": "Kata sandi harus cocok",
|
||||||
"join_button": "Ya, bergabung ke panggilan",
|
"Press and hold spacebar to talk": "Tekan dan tahan bilah spasi untuk berbicara",
|
||||||
"text": "Panggilan ini sudah ada, apakah Anda ingin bergabung?",
|
"Press and hold spacebar to talk over {{name}}": "Tekan dan tahan bilah spasi untuk berbicara pada {{name}}",
|
||||||
"title": "Bergabung ke panggilan yang sudah ada?"
|
"Press and hold to talk": "Tekan dan tahan untuk berbicara",
|
||||||
},
|
"Press and hold to talk over {{name}}": "Tekan dan tahan untuk berbicara pada {{name}}",
|
||||||
"layout_grid_label": "Kisi",
|
"Profile": "Profil",
|
||||||
"layout_spotlight_label": "Sorotan",
|
"Recaptcha dismissed": "Recaptcha ditutup",
|
||||||
"lobby": {
|
"Recaptcha not loaded": "Recaptcha tidak dimuat",
|
||||||
"join_button": "Bergabung ke panggilan",
|
"Register": "Daftar",
|
||||||
"leave_button": "Kembali ke terkini"
|
"Registering…": "Mendaftarkan…",
|
||||||
},
|
"Release spacebar key to stop": "Lepaskan bilah spasi untuk berhenti",
|
||||||
"local_volume_label": "Volume lokal",
|
"Release to stop": "Lepaskan untuk berhenti",
|
||||||
"logging_in": "Memasuki…",
|
"Remove": "Hapus",
|
||||||
"login_auth_links": "<0>Buat akun</0> Atau <2>Akses sebagai tamu</2>",
|
"Return to home screen": "Kembali ke layar beranda",
|
||||||
"login_title": "Masuk",
|
"Save": "Simpan",
|
||||||
"microphone_off": "Mikrofon dimatikan",
|
"Saving…": "Menyimpan…",
|
||||||
"microphone_on": "Mikrofon dinyalakan",
|
"Select an option": "Pilih sebuah opsi",
|
||||||
"mute_microphone_button_label": "Matikan mikrofon",
|
"Send debug logs": "Kirim catatan pengawakutuan",
|
||||||
"rageshake_button_error_caption": "Kirim ulang catatan",
|
"Sending…": "Mengirimkan…",
|
||||||
"rageshake_request_modal": {
|
"Settings": "Pengaturan",
|
||||||
"body": "Pengguna yang lain di panggilan ini sedang mengalami masalah. Supaya dapat mendiagnosa masalah ini, kami ingin mengumpulkan sebuah catatan pengawakutuan.",
|
"Share screen": "Bagikan layar",
|
||||||
"title": "Permintaan catatan pengawakutuan"
|
"Show call inspector": "Tampilkan inspektur panggilan",
|
||||||
},
|
"Sign in": "Masuk",
|
||||||
"rageshake_send_logs": "Kirim catatan pengawakutuan",
|
"Sign out": "Keluar",
|
||||||
"rageshake_sending": "Mengirimkan…",
|
"Spatial audio": "Audio spasial",
|
||||||
"rageshake_sending_logs": "Mengirimkan catatan pengawakutuan…",
|
"Speaker": "Pembicara",
|
||||||
"rageshake_sent": "Terima kasih!",
|
"Speaker {{n}}": "Pembicara {{n}}",
|
||||||
"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",
|
"Spotlight": "Sorotan",
|
||||||
"recaptcha_dismissed": "Recaptcha ditutup",
|
"Stop sharing screen": "Berhenti membagikan layar",
|
||||||
"recaptcha_not_loaded": "Recaptcha tidak dimuat",
|
"Submit feedback": "Kirim masukan",
|
||||||
"register": {
|
"Submitting feedback…": "Mengirimkan masukan…",
|
||||||
"passwords_must_match": "Kata sandi harus cocok",
|
"Take me Home": "Bawa saya ke Beranda",
|
||||||
"registering": "Mendaftarkan…"
|
"Talk over speaker": "Bicara pada pembicara",
|
||||||
},
|
"Talking…": "Berbicara…",
|
||||||
"register_auth_links": "<0>Sudah punya akun?</0><1><0>Masuk</0> Atau <2>Akses sebagai tamu</2></1>",
|
"Thanks! We'll get right on it.": "Terima kasih! Kami akan melihatnya.",
|
||||||
"register_confirm_password_label": "Konfirmasi kata sandi",
|
"This call already exists, would you like to join?": "Panggilan ini sudah ada, apakah Anda ingin bergabung?",
|
||||||
"return_home_button": "Kembali ke layar beranda",
|
"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",
|
||||||
"room_auth_view_eula_caption": "Dengan mengeklik \"Bergabung ke panggilan sekarang\", Anda menyetujui <2>Perjanjian Lisensi Pengguna Akhir (EULA)</2> kami",
|
"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.)",
|
||||||
"room_auth_view_join_button": "Bergabung ke panggilan sekarang",
|
"Turn off camera": "Matikan kamera",
|
||||||
"screenshare_button_label": "Bagikan layar",
|
"Turn on camera": "Nyalakan kamera",
|
||||||
"select_input_unset_button": "Pilih sebuah opsi",
|
"Unmute microphone": "Suarakan mikrofon",
|
||||||
"settings": {
|
"User ID": "ID pengguna",
|
||||||
"developer_settings_label": "Pengaturan Pengembang",
|
"User menu": "Menu pengguna",
|
||||||
"developer_settings_label_description": "Ekspos pengaturan pengembang dalam jendela pengaturan.",
|
"Username": "Nama pengguna",
|
||||||
"developer_tab_title": "Pengembang",
|
"Version: {{version}}": "Versi: {{version}}",
|
||||||
"feedback_tab_body": "Jika Anda mengalami masalah atau hanya ingin memberikan masukan, silakan kirimkan kami deskripsi pendek di bawah.",
|
"Video": "Video",
|
||||||
"feedback_tab_description_label": "Masukan Anda",
|
"Video call": "Panggilan video",
|
||||||
"feedback_tab_h4": "Kirim masukan",
|
"Video call name": "Nama panggilan video",
|
||||||
"feedback_tab_send_logs_label": "Termasuk catatan pengawakutuan",
|
"Waiting for network": "Menunggu jaringan",
|
||||||
"feedback_tab_thank_you": "Terima kasih, kami telah menerima masukan Anda!",
|
"Waiting for other participants…": "Menunggu peserta lain…",
|
||||||
"feedback_tab_title": "Masukan",
|
"Walkie-talkie call": "Panggilan protofon",
|
||||||
"more_tab_title": "Lainnya",
|
"Walkie-talkie call name": "Nama panggilan protofon",
|
||||||
"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.",
|
"WebRTC is not supported or is being blocked in this browser.": "WebRTC tidak didukung atau diblokir di peramban ini.",
|
||||||
"show_connection_stats_label": "Tampilkan statistik koneksi",
|
"Yes, join call": "Ya, bergabung ke panggilan",
|
||||||
"speaker_device_selection_label": "Pembicara"
|
"You can't talk at the same time": "Anda tidak dapat berbicara pada waktu yang sama",
|
||||||
},
|
"Your recent calls": "Panggilan Anda terkini",
|
||||||
"star_rating_input_label_one": "{{count}} bintang",
|
"{{count}} people connected|one": "{{count}} orang terhubung",
|
||||||
"star_rating_input_label_other": "{{count}} bintang",
|
"{{count}} people connected|other": "{{count}} orang terhubung",
|
||||||
"start_new_call": "Mulai panggilan baru",
|
"{{displayName}}, your call is now ended": "{{displayName}}, panggilan Anda sekarang telah berakhir",
|
||||||
"start_video_button_label": "Nyalakan video",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"stop_screenshare_button_label": "Berbagi layar",
|
"{{name}} is presenting": "{{name}} sedang mempresentasi",
|
||||||
"stop_video_button_label": "Matikan video",
|
"{{name}} is talking…": "{{name}} sedang berbicara…",
|
||||||
"submitting": "Mengirim…",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - Panggilan protofon",
|
||||||
"unauthenticated_view_body": "Belum terdaftar? <2>Buat sebuah akun</2>",
|
"Sending debug logs…": "Mengirimkan catatan pengawakutuan…",
|
||||||
"unauthenticated_view_eula_caption": "Dengan mengeklik \"Bergabung\", Anda menyetujui <2>Perjanjian Lisensi Pengguna Akhir (EULA)</2>",
|
"<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>",
|
||||||
"unauthenticated_view_login_button": "Masuk ke akun Anda",
|
"{{name}} (Connecting...)": "{{name}} (Menghubungkan...)",
|
||||||
"unmute_microphone_button_label": "Nyalakan mikrofon",
|
"Element Call Home": "Beranda Element Call",
|
||||||
"version": "Versi: {{version}}",
|
"Copy": "Salin",
|
||||||
"video_tile": {
|
"{{name}} (Waiting for video...)": "{{name}} (Menunggu video...)",
|
||||||
"presenter_label": "{{displayName}} sedang menampilkan",
|
"This feature is only supported on Firefox.": "Fitur ini hanya didukung di Firefox.",
|
||||||
"sfu_participant_local": "Anda"
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Mengirim catatan pengawakutuan akan membantu kami melacak masalahnya.</0>",
|
||||||
},
|
"<0>Oops, something's gone wrong.</0>": "<0>Aduh, ada yang salah.</0>",
|
||||||
"waiting_for_participants": "Menunggu peserta lain…"
|
"Use the upcoming grid system": "Gunakan sistem kisi yang akan segera datang",
|
||||||
|
"Expose developer settings in the settings window.": "Ekspos pengaturan pengembang dalam jendela pengaturan.",
|
||||||
|
"Developer Settings": "Pengaturan Pengembang",
|
||||||
|
"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>.": "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.",
|
||||||
|
"<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0></0><1></1>Anda dapat mengurungkan kembali izin dengan mencentang kotak ini. Jika Anda saat ini dalam panggilan, pengaturan ini akan diterapkan di akhir panggilan."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,136 +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.",
|
|
||||||
"exit_fullscreen_button_label": "Esci da schermo intero",
|
|
||||||
"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>",
|
|
||||||
"fullscreen_button_label": "Schermo intero",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"local_volume_label": "Volume locale",
|
|
||||||
"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": {
|
|
||||||
"presenter_label": "{{displayName}} sta presentando",
|
|
||||||
"sfu_participant_local": "Tu"
|
|
||||||
},
|
|
||||||
"waiting_for_participants": "In attesa di altri partecipanti…"
|
|
||||||
}
|
|
||||||
@@ -1,75 +1,114 @@
|
|||||||
{
|
{
|
||||||
"a11y": {
|
"{{name}} (Connecting...)": "{{name}}(接続しています…)",
|
||||||
"user_menu": "ユーザーメニュー"
|
"{{count}} people connected|other": "{{count}}人が接続済",
|
||||||
},
|
"{{count}} people connected|one": "{{count}}人が接続済",
|
||||||
"action": {
|
"{{name}} (Waiting for video...)": "{{name}}(ビデオを待機しています…)",
|
||||||
"close": "閉じる",
|
"<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>",
|
||||||
"copy": "コピー",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - トランシーバー通話",
|
||||||
"go": "続行",
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>アカウントを作成</0>または<2>ゲストとしてアクセス</2>",
|
||||||
"no": "いいえ",
|
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>今すぐ通話に参加</0><1>または</1><2>通話リンクをコピーし、後で参加</2>",
|
||||||
"register": "登録",
|
"Accept camera/microphone permissions to join the call.": "通話に参加するには、カメラ・マイクの許可が必要です。",
|
||||||
"remove": "削除",
|
"<0>Oops, something's gone wrong.</0>": "<0>何かがうまく行きませんでした。</0>",
|
||||||
"sign_in": "サインイン",
|
"Camera/microphone permissions needed to join the call.": "通話に参加する場合、カメラ・マイクの許可が必要です。",
|
||||||
"sign_out": "サインアウト"
|
"Camera": "カメラ",
|
||||||
},
|
"Call link copied": "通話リンクをコピーしました",
|
||||||
"call_ended_view": {
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "「今すぐ通話に参加」をクリックすると、<2>利用規約</2>に同意したとみなされます",
|
||||||
"create_account_button": "アカウントを作成"
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "「続行」をクリックすると、 <2>利用規約</2>に同意したとみなされます",
|
||||||
},
|
"Avatar": "アバター",
|
||||||
"common": {
|
"Accept microphone permissions to join the call.": "通話に参加するには、マイクの許可が必要です。",
|
||||||
"audio": "音声",
|
"Audio": "音声",
|
||||||
"avatar": "アバター",
|
"Connection lost": "接続が切断されました",
|
||||||
"camera": "カメラ",
|
"Confirm password": "パスワードを確認",
|
||||||
"copied": "コピーしました!",
|
"Close": "閉じる",
|
||||||
"display_name": "表示名",
|
"Change layout": "レイアウトを変更",
|
||||||
"home": "ホーム",
|
"Copied!": "コピーしました!",
|
||||||
"loading": "読み込んでいます…",
|
"Copy and share this call link": "通話リンクをコピーし共有",
|
||||||
"microphone": "マイク",
|
"Copy": "コピー",
|
||||||
"password": "パスワード",
|
"Description (optional)": "概要(任意)",
|
||||||
"profile": "プロフィール",
|
"Debug log": "デバッグログ",
|
||||||
"settings": "設定",
|
"Create account": "アカウントを作成",
|
||||||
"username": "ユーザー名",
|
"Having trouble? Help us fix it.": "問題が起きましたか?修正にご協力ください。",
|
||||||
"video": "ビデオ"
|
"Go": "続行",
|
||||||
},
|
"Fetching group call timed out.": "グループ通話の取得がタイムアウトしました。",
|
||||||
"exit_fullscreen_button_label": "全画面表示を終了",
|
"Element Call Home": "Element Call ホーム",
|
||||||
"full_screen_view_h1": "<0>何かがうまく行きませんでした。</0>",
|
"Download debug logs": "デバッグログをダウンロード",
|
||||||
"fullscreen_button_label": "全画面表示",
|
"Display name": "表示名",
|
||||||
"header_label": "Element Call ホーム",
|
"Developer": "開発者",
|
||||||
"join_existing_call_modal": {
|
"Details": "詳細",
|
||||||
"join_button": "はい、通話に参加",
|
"Full screen": "全画面表示",
|
||||||
"text": "この通話は既に存在します。参加しますか?",
|
"Exit full screen": "全画面表示を終了",
|
||||||
"title": "既存の通話に参加しますか?"
|
"Include debug logs": "デバッグログを含める",
|
||||||
},
|
"Home": "ホーム",
|
||||||
"layout_spotlight_label": "スポットライト",
|
"Incompatible versions!": "互換性のないバージョンです!",
|
||||||
"lobby": {
|
"Incompatible versions": "互換性のないバージョン",
|
||||||
"join_button": "通話に参加"
|
"Join existing call?": "既存の通話に参加しますか?",
|
||||||
},
|
"Join call now": "今すぐ通話に参加",
|
||||||
"logging_in": "ログインしています…",
|
"Join call": "通話に参加",
|
||||||
"login_auth_links": "<0>アカウントを作成</0>または<2>ゲストとしてアクセス</2>",
|
"Invite": "招待",
|
||||||
"login_title": "ログイン",
|
"Invite people": "連絡先を招待",
|
||||||
"rageshake_request_modal": {
|
"Not registered yet? <2>Create an account</2>": "アカウントがありませんか? <2>アカウントを作成</2>",
|
||||||
"title": "デバッグログを要求"
|
"Mute microphone": "マイクをミュート",
|
||||||
},
|
"Microphone permissions needed to join the call.": "通話の参加にはマイクの許可が必要です。",
|
||||||
"rageshake_send_logs": "デバッグログを送信",
|
"Microphone": "マイク",
|
||||||
"rageshake_sending": "送信しています…",
|
"Login": "ログイン",
|
||||||
"rageshake_sending_logs": "デバッグログを送信しています…",
|
"Logging in…": "ログインしています…",
|
||||||
"register": {
|
"Loading…": "読み込んでいます…",
|
||||||
"passwords_must_match": "パスワードが一致する必要があります",
|
"Loading room…": "ルームを読み込んでいます…",
|
||||||
"registering": "登録しています…"
|
"Leave": "退出",
|
||||||
},
|
"Version: {{version}}": "バージョン:{{version}}",
|
||||||
"register_auth_links": "<0>既にアカウントをお持ちですか?</0><1><0>ログイン</0>または<2>ゲストとしてアクセス</2></1>",
|
"Username": "ユーザー名",
|
||||||
"register_confirm_password_label": "パスワードを確認",
|
"User menu": "ユーザーメニュー",
|
||||||
"return_home_button": "ホーム画面に戻る",
|
"User ID": "ユーザーID",
|
||||||
"room_auth_view_join_button": "今すぐ通話に参加",
|
"Unmute microphone": "マイクのミュートを解除",
|
||||||
"screenshare_button_label": "画面共有",
|
"Turn on camera": "カメラをつける",
|
||||||
"select_input_unset_button": "オプションを選択",
|
"Turn off camera": "カメラを切る",
|
||||||
"settings": {
|
"Submitting feedback…": "フィードバックを送信しています…",
|
||||||
"developer_tab_title": "開発者",
|
"Submit feedback": "フィードバックを送信",
|
||||||
"feedback_tab_h4": "フィードバックを送信",
|
"Stop sharing screen": "画面共有を停止",
|
||||||
"feedback_tab_send_logs_label": "デバッグログを含める",
|
"Spotlight": "スポットライト",
|
||||||
"speaker_device_selection_label": "スピーカー"
|
"Send debug logs": "デバッグログを送信",
|
||||||
},
|
"Sign out": "サインアウト",
|
||||||
"unauthenticated_view_body": "アカウントがありませんか? <2>アカウントを作成</2>",
|
"Sign in": "サインイン",
|
||||||
"unauthenticated_view_login_button": "アカウントにログイン",
|
"Share screen": "画面共有",
|
||||||
"version": "バージョン:{{version}}",
|
"Settings": "設定",
|
||||||
"waiting_for_participants": "他の参加者を待機しています…"
|
"Sending…": "送信しています…",
|
||||||
|
"Sending debug logs…": "デバッグログを送信しています…",
|
||||||
|
"Saving…": "保存しています…",
|
||||||
|
"Save": "保存",
|
||||||
|
"Return to home screen": "ホーム画面に戻る",
|
||||||
|
"Registering…": "登録しています…",
|
||||||
|
"Register": "登録",
|
||||||
|
"Profile": "プロフィール",
|
||||||
|
"Press and hold spacebar to talk": "スペースを長押しで会話",
|
||||||
|
"Passwords must match": "パスワードが一致する必要があります",
|
||||||
|
"Password": "パスワード",
|
||||||
|
"Speaker": "スピーカー",
|
||||||
|
"Video call name": "ビデオ通話の名称",
|
||||||
|
"Video call": "ビデオ通話",
|
||||||
|
"Video": "ビデオ",
|
||||||
|
"Waiting for other participants…": "他の参加者を待機しています…",
|
||||||
|
"Waiting for network": "ネットワークを待機しています",
|
||||||
|
"Walkie-talkie call name": "トランシーバー通話の名称",
|
||||||
|
"Walkie-talkie call": "トランシーバー通話",
|
||||||
|
"Camera {{n}}": "カメラ {{n}}",
|
||||||
|
"{{name}} is talking…": "{{name}}が話しています…",
|
||||||
|
"Yes, join call": "はい、通話に参加",
|
||||||
|
"Spatial audio": "空間オーディオ",
|
||||||
|
"Select an option": "オプションを選択",
|
||||||
|
"Debug log request": "デバッグログを要求",
|
||||||
|
"Your recent calls": "最近の通話",
|
||||||
|
"You can't talk at the same time": "同時に会話することはできません",
|
||||||
|
"WebRTC is not supported or is being blocked in this browser.": "お使いのブラウザでWebRTCがサポートされていないか、またはブロックされています。",
|
||||||
|
"Login to your account": "アカウントにログイン",
|
||||||
|
"Freedom": "自由",
|
||||||
|
"{{displayName}}, your call is now ended": "{{displayName}}、通話が終了しました",
|
||||||
|
"Talking…": "話しています…",
|
||||||
|
"Remove": "削除",
|
||||||
|
"No": "いいえ",
|
||||||
|
"This feature is only supported on Firefox.": "この機能はFirefoxでのみサポートされています。",
|
||||||
|
"This call already exists, would you like to join?": "この通話は既に存在します。参加しますか?",
|
||||||
|
"Take me Home": "ホームに戻る",
|
||||||
|
"Press and hold to talk": "押し続けて会話",
|
||||||
|
"{{name}} is presenting": "{{name}}が画面を共有しています",
|
||||||
|
"{{names}}, {{name}}": "{{names}}、{{name}}"
|
||||||
}
|
}
|
||||||
|
|||||||
11
public/locales/ko/app.json
Normal file
11
public/locales/ko/app.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"<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>": "",
|
||||||
|
"{{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}} - 워키토키 전화"
|
||||||
|
}
|
||||||
@@ -1,110 +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.",
|
|
||||||
"exit_fullscreen_button_label": "Iziet no pilnekrāna",
|
|
||||||
"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>",
|
|
||||||
"fullscreen_button_label": "Pilnekrāns",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
"local_volume_label": "Vietējais skaļums",
|
|
||||||
"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}}",
|
|
||||||
"video_tile": {
|
|
||||||
"presenter_label": "{{displayName}} uzstājas"
|
|
||||||
},
|
|
||||||
"waiting_for_participants": "Gaida citus dalībniekus…"
|
|
||||||
}
|
|
||||||
@@ -1,142 +1,138 @@
|
|||||||
{
|
{
|
||||||
"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 sieć",
|
||||||
"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",
|
||||||
"exit_fullscreen_button_label": "Opuść pełny ekran",
|
"Profile": "Profil",
|
||||||
"full_screen_view_description": "<0>Wysłanie dzienników debuggowania pomoże nam ustalić przyczynę problemu.</0>",
|
"Press and hold to talk over {{name}}": "Przytrzymaj, aby mówić wraz z {{name}}",
|
||||||
"full_screen_view_h1": "<0>Ojej, coś poszło nie tak.</0>",
|
"Press and hold to talk": "Przytrzymaj, aby mówić",
|
||||||
"fullscreen_button_label": "Pełny ekran",
|
"Press and hold spacebar to talk over {{name}}": "Przytrzymaj spację, aby mówić wraz z {{name}}",
|
||||||
"group_call_loader_failed_heading": "Nie znaleziono połączenia",
|
"Press and hold spacebar to talk": "Przytrzymaj spację, 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.",
|
"Passwords must match": "Hasła muszą być identyczne",
|
||||||
"hangup_button_label": "Zakończ połączenie",
|
"Password": "Hasło",
|
||||||
"header_label": "Strona główna 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>": "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>",
|
||||||
"header_participants_label": "Uczestnicy",
|
"Not registered yet? <2>Create an account</2>": "Nie masz konta? <2>Utwórz je</2>",
|
||||||
"invite_modal": {
|
"Not now, return to home screen": "Nie teraz, powróć do ekranu domowego",
|
||||||
"link_copied_toast": "Skopiowano link do schowka",
|
"No": "Nie",
|
||||||
"title": "Zaproś do połączenia"
|
"Mute microphone": "Wycisz mikrofon",
|
||||||
},
|
"More": "Więcej",
|
||||||
"join_existing_call_modal": {
|
"Microphone permissions needed to join the call.": "Aby dołączyć do połączenia, potrzebne są uprawnienia do mikrofonu.",
|
||||||
"join_button": "Tak, dołącz do połączenia",
|
"Microphone {{n}}": "Mikrofon {{n}}",
|
||||||
"text": "Te połączenie już istnieje, czy chcesz do niego dołączyć?",
|
"Microphone": "Mikrofon",
|
||||||
"title": "Dołączyć do istniejącego połączenia?"
|
"Login to your account": "Zaloguj się do swojego konta",
|
||||||
},
|
"Logging in…": "Logowanie…",
|
||||||
"layout_grid_label": "Siatka",
|
"Local volume": "Lokalna głośność",
|
||||||
"layout_spotlight_label": "Centrum uwagi",
|
"Loading…": "Ładowanie…",
|
||||||
"lobby": {
|
"Loading room…": "Ładowanie pokoju…",
|
||||||
"join_button": "Dołącz do połączenia",
|
"Leave": "Opuść",
|
||||||
"leave_button": "Wróć do ostatnie"
|
"Join existing call?": "Dołączyć do istniejącego połączenia?",
|
||||||
},
|
"Join call now": "Dołącz do połączenia teraz",
|
||||||
"local_volume_label": "Głośność lokalna",
|
"Join call": "Dołącz do połączenia",
|
||||||
"logging_in": "Logowanie…",
|
"Invite people": "Zaproś ludzi",
|
||||||
"login_auth_links": "<0>Utwórz konto</0> lub <2>Dołącz jako gość</2>",
|
"Invite": "Zaproś",
|
||||||
"login_title": "Zaloguj się",
|
"Inspector": "Inspektor",
|
||||||
"microphone_off": "Mikrofon wyłączony",
|
"Incompatible versions!": "Niekompatybilne wersje!",
|
||||||
"microphone_on": "Mikrofon włączony",
|
"Incompatible versions": "Niekompatybilne wersje",
|
||||||
"mute_microphone_button_label": "Wycisz mikrofon",
|
"Include debug logs": "Dołącz dzienniki debugowania",
|
||||||
"rageshake_button_error_caption": "Wyślij logi ponownie",
|
"Home": "Strona domowa",
|
||||||
"rageshake_request_modal": {
|
"Having trouble? Help us fix it.": "Masz problem? Pomóż nam go naprawić.",
|
||||||
"body": "Inny użytkownik w tym połączeniu napotkał problem. Aby lepiej zdiagnozować tę usterkę, chcielibyśmy zebrać dzienniki debugowania.",
|
"Grid layout menu": "Menu układu siatki",
|
||||||
"title": "Prośba o dzienniki debugowania"
|
"Full screen": "Pełen ekran",
|
||||||
},
|
"Freedom": "Wolność",
|
||||||
"rageshake_send_logs": "Wyślij dzienniki debugowania",
|
"Fetching group call timed out.": "Przekroczono limit czasu na uzyskanie połączenia grupowego.",
|
||||||
"rageshake_sending": "Wysyłanie…",
|
"Exit full screen": "Zamknij pełny ekran",
|
||||||
"rageshake_sending_logs": "Wysyłanie dzienników debugowania…",
|
"Download debug logs": "Pobierz dzienniki debugowania",
|
||||||
"rageshake_sent": "Dziękujemy!",
|
"Display name": "Wyświetlana nazwa",
|
||||||
"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>",
|
"Developer": "Deweloper",
|
||||||
"recaptcha_dismissed": "Recaptcha odrzucona",
|
"Details": "Szczegóły",
|
||||||
"recaptcha_not_loaded": "Recaptcha nie została załadowana",
|
"Description (optional)": "Opis (opcjonalny)",
|
||||||
"register": {
|
"Debug log request": "Prośba o dzienniki debugowania",
|
||||||
"passwords_must_match": "Hasła muszą pasować",
|
"Debug log": "Dzienniki debugowania",
|
||||||
"registering": "Rejestrowanie…"
|
"Create account": "Utwórz konto",
|
||||||
},
|
"Copy and share this call link": "Skopiuj i podziel się linkiem do połączenia",
|
||||||
"register_auth_links": "<0>Masz już konto?</0><1><0>Zaloguj się</0> lub <2>Dołącz jako gość</2></1>",
|
"Copied!": "Skopiowano!",
|
||||||
"register_confirm_password_label": "Potwierdź hasło",
|
"Connection lost": "Połączenie utracone",
|
||||||
"return_home_button": "Powróć do strony głównej",
|
"Confirm password": "Potwierdź hasło",
|
||||||
"room_auth_view_eula_caption": "Klikając \"Dołącz teraz do rozmowy\", zgadzasz się na naszą <2>Umowę licencyjną (EULA)</2>",
|
"Close": "Zamknij",
|
||||||
"room_auth_view_join_button": "Dołącz do połączenia teraz",
|
"Change layout": "Zmień układ",
|
||||||
"screenshare_button_label": "Udostępnij ekran",
|
"Camera/microphone permissions needed to join the call.": "Aby dołączyć do tego połączenia, potrzebne są uprawnienia do kamery/mikrofonu.",
|
||||||
"select_input_unset_button": "Wybierz opcję",
|
"Camera {{n}}": "Kamera {{n}}",
|
||||||
"settings": {
|
"Camera": "Kamera",
|
||||||
"developer_settings_label": "Opcje programisty",
|
"Call type menu": "Menu rodzaju połączenia",
|
||||||
"developer_settings_label_description": "Wyświetl opcje programisty w oknie ustawień.",
|
"Call link copied": "Skopiowano link do połączenia",
|
||||||
"developer_tab_title": "Programista",
|
"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_body": "Jeśli posiadasz problemy lub chciałbyś zgłosić swoją opinię, wyślij nam krótki opis.",
|
"Avatar": "Awatar",
|
||||||
"feedback_tab_description_label": "Twoje opinie",
|
"Audio": "Dźwięk",
|
||||||
"feedback_tab_h4": "Prześlij opinię",
|
"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.",
|
||||||
"feedback_tab_send_logs_label": "Dołącz dzienniki debugowania",
|
"Accept microphone permissions to join the call.": "Przyznaj uprawnienia do mikrofonu aby dołączyć do połączenia.",
|
||||||
"feedback_tab_thank_you": "Dziękujemy, otrzymaliśmy Twoją opinię!",
|
"Accept camera/microphone permissions to join the call.": "Przyznaj uprawnienia do kamery/mikrofonu aby dołączyć do połączenia.",
|
||||||
"feedback_tab_title": "Opinia użytkownika",
|
"<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>",
|
||||||
"more_tab_title": "Więcej",
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Utwórz konto</0> Albo <2>Dołącz jako gość</2>",
|
||||||
"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.",
|
"<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>",
|
||||||
"show_connection_stats_label": "Pokaż statystyki połączenia",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - połączenie walkie-talkie",
|
||||||
"speaker_device_selection_label": "Głośnik"
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
},
|
"{{name}} is talking…": "{{name}} mówi…",
|
||||||
"star_rating_input_label_one": "{{count}} gwiazdki",
|
"{{name}} is presenting": "{{name}} prezentuje",
|
||||||
"star_rating_input_label_other": "{{count}} gwiazdki",
|
"{{displayName}}, your call is now ended": "{{displayName}}, twoje połączenie zostało zakończone",
|
||||||
"start_new_call": "Rozpocznij nowe połączenie",
|
"{{count}} people connected|one": "{{count}} osoba połączona",
|
||||||
"start_video_button_label": "Rozpocznij wideo",
|
"This feature is only supported on Firefox.": "Ta funkcjonalność jest dostępna tylko w Firefox.",
|
||||||
"stop_screenshare_button_label": "Udostępnianie ekranu",
|
"Copy": "Kopiuj",
|
||||||
"stop_video_button_label": "Zakończ wideo",
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Wysłanie logów debuggowania pomoże nam ustalić przyczynę problemu.</0>",
|
||||||
"submitting": "Wysyłanie…",
|
"<0>Oops, something's gone wrong.</0>": "<0>Ojej, coś poszło nie tak.</0>",
|
||||||
"unauthenticated_view_body": "Nie masz konta? <2>Utwórz je</2>",
|
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Dołącz do rozmowy teraz</0><1>Or</1><2>Skopiuj link do rozmowy i dołącz później</2>",
|
||||||
"unauthenticated_view_eula_caption": "Klikając \"Przejdź\", zgadzasz się na naszą <2>Umowę licencyjną (EULA)</2>",
|
"{{name}} (Waiting for video...)": "{{name}} (Oczekiwanie na wideo...)",
|
||||||
"unauthenticated_view_login_button": "Zaloguj się do swojego konta",
|
"{{name}} (Connecting...)": "{{name}} (Łączenie...)",
|
||||||
"unmute_microphone_button_label": "Odcisz mikrofon",
|
"Expose developer settings in the settings window.": "Wyświetlaj opcje programisty w oknie ustawień.",
|
||||||
"version": "Wersja: {{version}}",
|
"Element Call Home": "Strona główna Element Call",
|
||||||
"video_tile": {
|
"Developer Settings": "Opcje programisty"
|
||||||
"presenter_label": "{{displayName}} prezentuje",
|
|
||||||
"sfu_participant_local": "Ty"
|
|
||||||
},
|
|
||||||
"waiting_for_participants": "Oczekiwanie na pozostałych uczestników…"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,103 +1,143 @@
|
|||||||
{
|
{
|
||||||
"a11y": {
|
"Register": "Зарегистрироваться",
|
||||||
"user_menu": "Меню пользователя"
|
"Saving…": "Сохранение…",
|
||||||
},
|
"Registering…": "Регистрация…",
|
||||||
"action": {
|
"Logging in…": "Вход…",
|
||||||
"close": "Закрыть",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"copy": "Копировать",
|
"Waiting for other participants…": "Ожидание других участников…",
|
||||||
"go": "Далее",
|
"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.)": "Эта функция балансирует звук к расположению плитки на экране. (Экспериментальная функция: может повлиять на стабильность аудио.)",
|
||||||
"no": "Нет",
|
"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>.",
|
||||||
"register": "Зарегистрироваться",
|
"This call already exists, would you like to join?": "Этот звонок уже существует, хотите присоединиться?",
|
||||||
"remove": "Удалить",
|
"Thanks! We'll get right on it.": "Спасибо! Мы учтём ваш отзыв.",
|
||||||
"sign_in": "Войти",
|
"Talking…": "Говорите…",
|
||||||
"sign_out": "Выйти",
|
"Submitting feedback…": "Отправка отзыва…",
|
||||||
"submit": "Отправить"
|
"Submit feedback": "Отправить отзыв",
|
||||||
},
|
"Sending debug logs…": "Отправка журнала отладки…",
|
||||||
"analytics_notice": "Участвуя в этой бета-версии, вы соглашаетесь на сбор анонимных данных, которые мы используем для улучшения продукта. Более подробную информацию о том, какие данные мы отслеживаем, вы можете найти в нашей <2> Политике конфиденциальности</2> и нашей <5> Политике использования файлов cookie</5>.",
|
"Select an option": "Выберите вариант",
|
||||||
"call_ended_view": {
|
"Release to stop": "Отпустите, чтобы прекратить вещание",
|
||||||
"create_account_button": "Создать аккаунт",
|
"Release spacebar key to stop": "Чтобы прекратить вещание, отпустите [Пробел]",
|
||||||
"create_account_prompt": "<0>Почему бы не задать пароль, тем самым сохранив аккаунт?</0><1>Так вы можете оставить своё имя и задать аватар для будущих звонков.</1>",
|
"Press and hold to talk over {{name}}": "Зажмите, чтобы говорить поверх участника {{name}}",
|
||||||
"feedback_done": "<0>Спасибо за обратную связь!</0>",
|
"Press and hold spacebar to talk over {{name}}": "Чтобы говорить поверх участника {{name}}, нажмите и удерживайте [Пробел]",
|
||||||
"feedback_prompt": "<0>Мы будем рады видеть ваши отзывы, чтобы мы могли улучшить ваш опыт.</0>",
|
"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>",
|
||||||
"headline": "{{displayName}}, ваш звонок окончен.",
|
"Grid layout menu": "Меню \"Расположение сеткой\"",
|
||||||
"not_now_button": "Не сейчас, вернуться в Начало",
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Нажимая \"Присоединиться сейчас\", вы соглашаетесь с нашими <2>положениями и условиями</2>",
|
||||||
"survey_prompt": "Как всё прошло?"
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Нажимая \"Далее\", вы соглашаетесь с нашими <2>положениями и условиями</2>",
|
||||||
},
|
"<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>",
|
||||||
"common": {
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Создать аккаунт</0> или <2>Зайти как гость</2>",
|
||||||
"audio": "Аудио",
|
"<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>",
|
||||||
"avatar": "Аватар",
|
"Your recent calls": "Ваши недавние звонки",
|
||||||
"camera": "Камера",
|
"You can't talk at the same time": "Вы не можете говорить одновременно",
|
||||||
"copied": "Скопировано!",
|
"Yes, join call": "Да, присоединиться",
|
||||||
"display_name": "Видимое имя",
|
"WebRTC is not supported or is being blocked in this browser.": "WebRTC не поддерживается или заблокирован в этом браузере.",
|
||||||
"home": "Начало",
|
"Walkie-talkie call name": "Название звонка-рации",
|
||||||
"loading": "Загрузка…",
|
"Walkie-talkie call": "Звонок-рация",
|
||||||
"microphone": "Микрофон",
|
"Waiting for network": "Ожидание сети",
|
||||||
"password": "Пароль",
|
"Video call name": "Название видео-звонка",
|
||||||
"profile": "Профиль",
|
"Video call": "Видео-звонок",
|
||||||
"settings": "Настройки",
|
"Video": "Видео",
|
||||||
"username": "Имя пользователя",
|
"Version: {{version}}": "Версия: {{version}}",
|
||||||
"video": "Видео"
|
"Username": "Имя пользователя",
|
||||||
},
|
"User menu": "Меню пользователя",
|
||||||
"exit_fullscreen_button_label": "Выйти из полноэкранного режима",
|
"User ID": "ID пользователя",
|
||||||
"full_screen_view_description": "<0>Отправка журналов поможет нам найти и устранить проблему.</0>",
|
"Unmute microphone": "Включить микрофон",
|
||||||
"full_screen_view_h1": "<0>Упс, что-то пошло не так.</0>",
|
"Turn on camera": "Включить камеру",
|
||||||
"fullscreen_button_label": "Полноэкранный режим",
|
"Turn off camera": "Отключить камеру",
|
||||||
"header_label": "Главная Element Call",
|
"Talk over speaker": "Говорить через динамик",
|
||||||
"join_existing_call_modal": {
|
"Take me Home": "Перейти в Начало",
|
||||||
"join_button": "Да, присоединиться",
|
"Stop sharing screen": "Остановить показ экрана",
|
||||||
"text": "Этот звонок уже существует, хотите присоединиться?",
|
"Spotlight": "Внимание",
|
||||||
"title": "Присоединиться к существующему звонку?"
|
"Speaker {{n}}": "Динамик {{n}}",
|
||||||
},
|
"Speaker": "Динамик",
|
||||||
"layout_spotlight_label": "Внимание",
|
"Spatial audio": "Пространственное аудио",
|
||||||
"lobby": {
|
"Sign out": "Выйти",
|
||||||
"join_button": "Присоединиться"
|
"Sign in": "Войти",
|
||||||
},
|
"Show call inspector": "Показать инспектор",
|
||||||
"local_volume_label": "Местная громкость",
|
"Share screen": "Поделиться экраном",
|
||||||
"logging_in": "Вход…",
|
"Settings": "Настройки",
|
||||||
"login_auth_links": "<0>Создать аккаунт</0> или <2>Зайти как гость</2>",
|
"Sending…": "Отправка…",
|
||||||
"login_title": "Вход",
|
"Local volume": "Местная громкость",
|
||||||
"rageshake_request_modal": {
|
"Call type menu": "Меню \"Тип звонка\"",
|
||||||
"body": "У одного из участников звонка есть неполадки. Чтобы лучше диагностировать похожие проблемы, нам нужен журнал отладки.",
|
"More menu": "Полное меню",
|
||||||
"title": "Запрос журнала отладки"
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - Звонок-рация",
|
||||||
},
|
"Include debug logs": "Приложить журнал отладки",
|
||||||
"rageshake_send_logs": "Отправить журнал отладки",
|
"Download debug logs": "Скачать журнал отладки",
|
||||||
"rageshake_sending": "Отправка…",
|
"Debug log request": "Запрос журнала отладки",
|
||||||
"rageshake_sending_logs": "Отправка журнала отладки…",
|
"Debug log": "Журнал отладки",
|
||||||
"recaptcha_dismissed": "Проверка не пройдена",
|
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "У одного из участников звонка есть неполадки. Чтобы лучше диагностировать похожие проблемы, нам нужен журнал отладки.",
|
||||||
"recaptcha_not_loaded": "Невозможно начать проверку",
|
"Send debug logs": "Отправить журнал отладки",
|
||||||
"register": {
|
"Save": "Сохранить",
|
||||||
"passwords_must_match": "Пароли должны совпадать",
|
"Return to home screen": "Вернуться в Начало",
|
||||||
"registering": "Регистрация…"
|
"Remove": "Удалить",
|
||||||
},
|
"Recaptcha not loaded": "Невозможно начать проверку",
|
||||||
"register_auth_links": "<0>Уже есть аккаунт?</0><1><0>Войти с ним</0> или <2>Зайти как гость</2></1>",
|
"Recaptcha dismissed": "Проверка не пройдена",
|
||||||
"register_confirm_password_label": "Подтвердите пароль",
|
"Profile": "Профиль",
|
||||||
"return_home_button": "Вернуться в Начало",
|
"Press and hold to talk": "Зажмите, чтобы говорить",
|
||||||
"room_auth_view_join_button": "Присоединиться сейчас",
|
"Press and hold spacebar to talk": "Чтобы говорить, нажмите и удерживайте [Пробел]",
|
||||||
"screenshare_button_label": "Поделиться экраном",
|
"Passwords must match": "Пароли должны совпадать",
|
||||||
"select_input_unset_button": "Выберите вариант",
|
"Password": "Пароль",
|
||||||
"settings": {
|
"Not registered yet? <2>Create an account</2>": "Ещё не зарегистрированы? <2>Создайте аккаунт</2>",
|
||||||
"developer_settings_label": "Настройки Разработчика",
|
"Not now, return to home screen": "Не сейчас, вернуться в Начало",
|
||||||
"developer_settings_label_description": "Раскрыть настройки разработчика в окне настроек.",
|
"No": "Нет",
|
||||||
"developer_tab_title": "Разработчику",
|
"Mute microphone": "Отключить микрофон",
|
||||||
"feedback_tab_body": "Если у вас возникли проблемы или вы просто хотите оставить отзыв, отправьте нам краткое описание ниже.",
|
"More": "Больше",
|
||||||
"feedback_tab_description_label": "Ваш отзыв",
|
"Microphone permissions needed to join the call.": "Нужно разрешение на доступ к микрофону для присоединения к звонку.",
|
||||||
"feedback_tab_h4": "Отправить отзыв",
|
"Microphone {{n}}": "Микрофон {{n}}",
|
||||||
"feedback_tab_send_logs_label": "Приложить журнал отладки",
|
"Microphone": "Микрофон",
|
||||||
"feedback_tab_thank_you": "Спасибо. Мы получили ваш отзыв!",
|
"Login to your account": "Войдите в свой аккаунт",
|
||||||
"feedback_tab_title": "Отзыв",
|
"Login": "Вход",
|
||||||
"more_tab_title": "Больше",
|
"Loading…": "Загрузка…",
|
||||||
"opt_in_description": "<0></0><1></1>Вы можете отозвать согласие, сняв этот флажок. Если вы в данный момент находитесь в разговоре, эта настройка вступит в силу по окончании разговора.",
|
"Loading room…": "Загрузка комнаты…",
|
||||||
"show_connection_stats_label": "Показать статистику соединения",
|
"Leave": "Покинуть",
|
||||||
"speaker_device_selection_label": "Динамик"
|
"Join existing call?": "Присоединиться к существующему звонку?",
|
||||||
},
|
"Join call now": "Присоединиться сейчас",
|
||||||
"star_rating_input_label_one": "{{count}} отмечен",
|
"Join call": "Присоединиться",
|
||||||
"star_rating_input_label_other": "{{count}} отмеченных",
|
"Invite people": "Пригласить участников",
|
||||||
"submitting": "Отправляем…",
|
"Invite": "Пригласить",
|
||||||
"unauthenticated_view_body": "Ещё не зарегистрированы? <2>Создайте аккаунт</2>",
|
"Inspector": "Инспектор",
|
||||||
"unauthenticated_view_login_button": "Войдите в свой аккаунт",
|
"Incompatible versions!": "Несовместимые версии!",
|
||||||
"version": "Версия: {{version}}",
|
"Incompatible versions": "Несовместимые версии",
|
||||||
"video_tile": {
|
"Home": "Начало",
|
||||||
"presenter_label": "{{displayName}} представляет"
|
"Having trouble? Help us fix it.": "Есть проблема? Помогите нам её устранить.",
|
||||||
},
|
"Go": "Далее",
|
||||||
"waiting_for_participants": "Ожидание других участников…"
|
"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}} подключился",
|
||||||
|
"Element Call Home": "Главная Element Call",
|
||||||
|
"Copy": "Копировать",
|
||||||
|
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Присоединиться сейчас к звонку</0><1>или<1><2>Скопировать ссылку на звонок и присоединиться позже</2>",
|
||||||
|
"{{name}} (Connecting...)": "{{name}} (Соединение...)",
|
||||||
|
"This feature is only supported on Firefox.": "Эта возможность доступна только в Firefox.",
|
||||||
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Отправка журналов поможет нам найти и устранить проблему.</0>",
|
||||||
|
"<0>Oops, something's gone wrong.</0>": "<0>Упс, что-то пошло не так.</0>",
|
||||||
|
"{{name}} (Waiting for video...)": "{{name}} (Ожидание видео...)",
|
||||||
|
"Use the upcoming grid system": "Использовать сеточный показ",
|
||||||
|
"Expose developer settings in the settings window.": "Раскрыть настройки разработчика в окне настроек.",
|
||||||
|
"Developer Settings": "Настройки Разработчика",
|
||||||
|
"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>.": "Участвуя в этой бета-версии, вы соглашаетесь на сбор анонимных данных, которые мы используем для улучшения продукта. Более подробную информацию о том, какие данные мы отслеживаем, вы можете найти в нашей <2> Политике конфиденциальности</2> и нашей <5> Политике использования файлов cookie</5>.",
|
||||||
|
"<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0></0><1></1>Вы можете отозвать согласие, сняв этот флажок. Если вы в данный момент находитесь в разговоре, эта настройка вступит в силу по окончании разговора."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,140 +1,143 @@
|
|||||||
{
|
{
|
||||||
"a11y": {
|
"Spotlight": "Stredobod",
|
||||||
"user_menu": "Používateľské menu"
|
"Local volume": "Lokálna hlasitosť",
|
||||||
},
|
"Include debug logs": "Zahrnúť záznamy o ladení",
|
||||||
"action": {
|
"Fetching group call timed out.": "Vypršal čas načítania skupinového volania.",
|
||||||
"close": "Zatvoriť",
|
"Element Call Home": "Domov Element Call",
|
||||||
"copy": "Kopírovať",
|
"You can't talk at the same time": "Nemôžete hovoriť naraz",
|
||||||
"copy_link": "Kopírovať odkaz",
|
"Waiting for other participants…": "Čaká sa na ďalších účastníkov…",
|
||||||
"go": "Prejsť",
|
"Waiting for network": "Čakanie na sieť",
|
||||||
"invite": "Pozvať",
|
"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.)": "Zvuk reproduktora tak bude vyzerať, akoby vychádzal z miesta, kde je na obrazovke umiestnená jeho ikona. (Experimentálna funkcia: môže to mať vplyv na stabilitu zvuku.)",
|
||||||
"no": "Nie",
|
"Thanks! We'll get right on it.": "Vďaka! Hneď sa do toho pustíme.",
|
||||||
"register": "Registrovať sa",
|
"Talking…": "Rozprávanie…",
|
||||||
"remove": "Odstrániť",
|
"Talk over speaker": "Hovor cez reproduktor",
|
||||||
"sign_in": "Prihlásiť sa",
|
"Take me Home": "Zober ma domov",
|
||||||
"sign_out": "Odhlásiť sa",
|
"Submitting feedback…": "Odosielanie spätnej väzby…",
|
||||||
"submit": "Odoslať"
|
"Submit feedback": "Odoslať spätnú väzbu",
|
||||||
},
|
"Stop sharing screen": "Zastaviť zdieľanie obrazovky",
|
||||||
"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>.",
|
"Show call inspector": "Zobraziť inšpektora hovorov",
|
||||||
"app_selection_modal": {
|
"Share screen": "Zdieľať obrazovku",
|
||||||
"continue_in_browser": "Pokračovať v prehliadači",
|
"Sending…": "Odosielanie…",
|
||||||
"open_in_app": "Otvoriť v aplikácii",
|
"Sending debug logs…": "Odosielanie záznamov o ladení…",
|
||||||
"text": "Ste pripravení sa pridať?",
|
"Send debug logs": "Odoslať záznamy o ladení",
|
||||||
"title": "Vybrať aplikáciu"
|
"Select an option": "Vyberte možnosť",
|
||||||
},
|
"Saving…": "Ukladanie…",
|
||||||
"browser_media_e2ee_unsupported": "Váš webový prehliadač nepodporuje end-to-end šifrovanie médií. Podporované prehliadače sú Chrome, Safari, Firefox >=117",
|
"Save": "Uložiť",
|
||||||
"call_ended_view": {
|
"Return to home screen": "Návrat na domovskú obrazovku",
|
||||||
"body": "Boli ste odpojení z hovoru",
|
"Remove": "Odstrániť",
|
||||||
"create_account_button": "Vytvoriť účet",
|
"Release spacebar key to stop": "Pustite medzerník pre ukončenie",
|
||||||
"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>",
|
"Release to stop": "Pustite pre ukončenie",
|
||||||
"feedback_done": "<0> Ďakujeme za vašu spätnú väzbu!</0>",
|
"Registering…": "Registrácia…",
|
||||||
"feedback_prompt": "<0> Radi si vypočujeme vašu spätnú väzbu, aby sme mohli zlepšiť vaše skúsenosti.</0>",
|
"Register": "Registrovať sa",
|
||||||
"headline": "{{displayName}}, váš hovor skončil.",
|
"Recaptcha not loaded": "Recaptcha sa nenačítala",
|
||||||
"not_now_button": "Teraz nie, vrátiť sa na domovskú obrazovku",
|
"Recaptcha dismissed": "Recaptcha zamietnutá",
|
||||||
"reconnect_button": "Znovu pripojiť",
|
"Profile": "Profil",
|
||||||
"survey_prompt": "Ako to išlo?"
|
"Press and hold to talk over {{name}}": "Stlačte a podržte pre hovor cez {{name}}",
|
||||||
},
|
"Press and hold to talk": "Stlačte a podržte pre hovor",
|
||||||
"call_name": "Názov hovoru",
|
"Press and hold spacebar to talk over {{name}}": "Stlačte a podržte medzerník, ak chcete hovoriť cez {{name}}",
|
||||||
"common": {
|
"Press and hold spacebar to talk": "Stlačte a podržte medzerník, ak chcete hovoriť",
|
||||||
"avatar": "Obrázok",
|
"Passwords must match": "Heslá sa musia zhodovať",
|
||||||
"camera": "Kamera",
|
"Password": "Heslo",
|
||||||
"copied": "Skopírované!",
|
"Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>": "Ostatní používatelia sa pokúšajú pripojiť k tomuto hovoru z nekompatibilných verzií. Títo používatelia by sa mali uistiť, že si obnovili svoje prehliadače:<1>{userLis}</1>",
|
||||||
"display_name": "Zobrazované meno",
|
"Not registered yet? <2>Create an account</2>": "Ešte nie ste zaregistrovaný? <2>Vytvorte si účet</2>",
|
||||||
"encrypted": "Šifrované",
|
"Not now, return to home screen": "Teraz nie, vrátiť sa na domovskú obrazovku",
|
||||||
"home": "Domov",
|
"No": "Nie",
|
||||||
"loading": "Načítanie…",
|
"Mute microphone": "Stlmiť mikrofón",
|
||||||
"microphone": "Mikrofón",
|
"More menu": "Ponuka viac",
|
||||||
"password": "Heslo",
|
"More": "Viac",
|
||||||
"profile": "Profil",
|
"Microphone permissions needed to join the call.": "Povolenie mikrofónu je potrebné na pripojenie k hovoru.",
|
||||||
"settings": "Nastavenia",
|
"Microphone {{n}}": "Mikrofón {{n}}",
|
||||||
"unencrypted": "Nie je zašifrované",
|
"Microphone": "Mikrofón",
|
||||||
"username": "Meno používateľa"
|
"Login to your account": "Prihláste sa do svojho konta",
|
||||||
},
|
"Login": "Prihlásiť sa",
|
||||||
"disconnected_banner": "Spojenie so serverom sa stratilo.",
|
"Logging in…": "Prihlasovanie…",
|
||||||
"exit_fullscreen_button_label": "Ukončiť zobrazenie na celú obrazovku",
|
"Loading…": "Načítanie…",
|
||||||
"full_screen_view_description": "<0>Odoslanie záznamov ladenia nám pomôže nájsť problém.</0>",
|
"Loading room…": "Načítanie miestnosti…",
|
||||||
"full_screen_view_h1": "<0>Hups, niečo sa pokazilo.</0>",
|
"Leave": "Opustiť",
|
||||||
"fullscreen_button_label": "Zobrazenie na celú obrazovku",
|
"Join existing call?": "Pripojiť sa k existujúcemu hovoru?",
|
||||||
"group_call_loader_failed_heading": "Hovor nebol nájdený",
|
"Join call now": "Pripojiť sa k hovoru teraz",
|
||||||
"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ľúč.",
|
"Join call": "Pripojiť sa k hovoru",
|
||||||
"hangup_button_label": "Ukončiť hovor",
|
"Invite people": "Pozvať ľudí",
|
||||||
"header_label": "Domov Element Call",
|
"Invite": "Pozvať",
|
||||||
"header_participants_label": "Účastníci",
|
"Inspector": "Inšpektor",
|
||||||
"invite_modal": {
|
"Incompatible versions!": "Nekompatibilné verzie!",
|
||||||
"link_copied_toast": "Odkaz skopírovaný do schránky",
|
"Incompatible versions": "Nekompatibilné verzie",
|
||||||
"title": "Pozvať na tento hovor"
|
"Home": "Domov",
|
||||||
},
|
"Having trouble? Help us fix it.": "Máte problém? Pomôžte nám ho opraviť.",
|
||||||
"join_existing_call_modal": {
|
"Grid layout menu": "Ponuka rozloženia mriežky",
|
||||||
"join_button": "Áno, pripojiť sa k hovoru",
|
"Go": "Prejsť",
|
||||||
"text": "Tento hovor už existuje, chceli by ste sa k nemu pripojiť?",
|
"Full screen": "Zobrazenie na celú obrazovku",
|
||||||
"title": "Pripojiť sa k existujúcemu hovoru?"
|
"Freedom": "Sloboda",
|
||||||
},
|
"Exit full screen": "Ukončiť zobrazenie na celú obrazovku",
|
||||||
"layout_grid_label": "Sieť",
|
"Download debug logs": "Stiahnuť záznamy ladenia",
|
||||||
"layout_spotlight_label": "Stredobod",
|
"Your recent calls": "Vaše nedávne hovory",
|
||||||
"lobby": {
|
"Yes, join call": "Áno, pripojiť sa k hovoru",
|
||||||
"join_button": "Pripojiť sa k hovoru",
|
"WebRTC is not supported or is being blocked in this browser.": "WebRTC nie je podporované alebo je v tomto prehliadači blokované.",
|
||||||
"leave_button": "Späť k nedávnym"
|
"Walkie-talkie call name": "Názov vysielačkového hovoru",
|
||||||
},
|
"Walkie-talkie call": "Vysielačkový hovor",
|
||||||
"local_volume_label": "Lokálna hlasitosť",
|
"Video call name": "Názov video hovoru",
|
||||||
"logging_in": "Prihlasovanie…",
|
"Video call": "Video hovor",
|
||||||
"login_auth_links": "<0>Vytvoriť konto</0> Alebo <2>Prihlásiť sa ako hosť</2>",
|
"Video": "Video",
|
||||||
"login_title": "Prihlásiť sa",
|
"Version: {{version}}": "Verzia: {{version}}",
|
||||||
"microphone_off": "Mikrofón vypnutý",
|
"Username": "Meno používateľa",
|
||||||
"microphone_on": "Mikrofón zapnutý",
|
"User menu": "Používateľské menu",
|
||||||
"mute_microphone_button_label": "Stlmiť mikrofón",
|
"User ID": "ID používateľa",
|
||||||
"rageshake_button_error_caption": "Opakovať odoslanie záznamov",
|
"Unmute microphone": "Zrušiť stlmenie mikrofónu",
|
||||||
"rageshake_request_modal": {
|
"Turn on camera": "Zapnúť kameru",
|
||||||
"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í.",
|
"Turn off camera": "Vypnúť kameru",
|
||||||
"title": "Žiadosť o záznam ladenia"
|
"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>": "Táto stránka je chránená systémom ReCAPTCHA a platia na ňu <2>Pravidlá ochrany osobných údajov</2> a <6>Podmienky poskytovania služieb</6> spoločnosti Google.<9></9>Kliknutím na tlačidlo \"Registrovať sa\" vyjadrujete súhlas s našimi <12>Podmienkami poskytovania služieb</12>",
|
||||||
},
|
"This call already exists, would you like to join?": "Tento hovor už existuje, chceli by ste sa k nemu pripojiť?",
|
||||||
"rageshake_send_logs": "Odoslať záznamy o ladení",
|
"Speaker {{n}}": "Reproduktor {{n}}",
|
||||||
"rageshake_sending": "Odosielanie…",
|
"Speaker": "Reproduktor",
|
||||||
"rageshake_sending_logs": "Odosielanie záznamov o ladení…",
|
"Spatial audio": "Priestorový zvuk",
|
||||||
"rageshake_sent": "Ďakujeme!",
|
"Sign out": "Odhlásiť sa",
|
||||||
"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>",
|
"Sign in": "Prihlásiť sa",
|
||||||
"recaptcha_dismissed": "Recaptcha zamietnutá",
|
"Settings": "Nastavenia",
|
||||||
"recaptcha_not_loaded": "Recaptcha sa nenačítala",
|
"Display name": "Zobrazované meno",
|
||||||
"register": {
|
"Developer": "Vývojár",
|
||||||
"passwords_must_match": "Heslá sa musia zhodovať",
|
"Details": "Podrobnosti",
|
||||||
"registering": "Registrácia…"
|
"Description (optional)": "Popis (voliteľné)",
|
||||||
},
|
"Debug log request": "Žiadosť o záznam ladenia",
|
||||||
"register_auth_links": "<0>Už máte konto?</0><1><0>Prihláste sa</0> Alebo <2>Prihlásiť sa ako hosť</2></1>",
|
"Debug log": "Záznam o ladení",
|
||||||
"register_confirm_password_label": "Potvrdiť heslo",
|
"Create account": "Vytvoriť účet",
|
||||||
"return_home_button": "Návrat na domovskú obrazovku",
|
"Copy and share this call link": "Skopírovať a zdieľať tento odkaz na hovor",
|
||||||
"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>",
|
"Copy": "Kopírovať",
|
||||||
"room_auth_view_join_button": "Pripojiť sa k hovoru teraz",
|
"Copied!": "Skopírované!",
|
||||||
"screenshare_button_label": "Zdieľať obrazovku",
|
"Connection lost": "Strata spojenia",
|
||||||
"select_input_unset_button": "Vyberte možnosť",
|
"Confirm password": "Potvrdiť heslo",
|
||||||
"settings": {
|
"Close": "Zatvoriť",
|
||||||
"developer_settings_label": "Nastavenia pre vývojárov",
|
"Change layout": "Zmeniť rozloženie",
|
||||||
"developer_settings_label_description": "Zobraziť nastavenia pre vývojárov v okne nastavení.",
|
"Camera/microphone permissions needed to join the call.": "Povolenie kamery/mikrofónu je potrebné na pripojenie k hovoru.",
|
||||||
"developer_tab_title": "Vývojár",
|
"Camera {{n}}": "Kamera {{n}}",
|
||||||
"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.",
|
"Camera": "Kamera",
|
||||||
"feedback_tab_description_label": "Vaša spätná väzba",
|
"Call type menu": "Ponuka typu hovoru",
|
||||||
"feedback_tab_h4": "Odoslať spätnú väzbu",
|
"Call link copied": "Odkaz na hovor skopírovaný",
|
||||||
"feedback_tab_send_logs_label": "Zahrnúť záznamy o ladení",
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Kliknutím na \"Pripojiť sa k hovoru\" súhlasíte s našimi <2>Podmienkami</2>",
|
||||||
"feedback_tab_thank_you": "Ďakujeme, dostali sme vašu spätnú väzbu!",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Kliknutím na tlačidlo \"Prejsť\" súhlasíte s našimi <2>Podmienkami</2>",
|
||||||
"feedback_tab_title": "Spätná väzba",
|
"Avatar": "Obrázok",
|
||||||
"more_tab_title": "Viac",
|
"Audio": "Audio",
|
||||||
"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.",
|
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Ďalší používateľ v tomto hovore má problém. Aby sme mohli lepšie diagnostikovať tieto problémy, chceli by sme získať záznam o ladení.",
|
||||||
"show_connection_stats_label": "Zobraziť štatistiky pripojenia",
|
"Accept camera/microphone permissions to join the call.": "Prijmite povolenia kamery/mikrofónu, aby ste sa mohli pripojiť k hovoru.",
|
||||||
"speaker_device_selection_label": "Reproduktor"
|
"Accept microphone permissions to join the call.": "Prijmite povolenia mikrofónu, aby ste sa mohli pripojiť k hovoru.",
|
||||||
},
|
"<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>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>",
|
||||||
"star_rating_input_label_one": "{{count}} hviezdička",
|
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>Pripojiť sa k hovoru teraz</0><1>alebo</1><2>Kopírovať odkaz na hovor a pripojiť sa neskôr</2>",
|
||||||
"star_rating_input_label_other": "{{count}} hviezdičiek",
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Vytvoriť konto</0> Alebo <2>Prihlásiť sa ako hosť</2>",
|
||||||
"start_new_call": "Spustiť nový hovor",
|
"<0>Already have an account?</0><1><0>Log in</0> Or <2>Access as a guest</2></1>": "<0>Už máte konto?</0><1><0>Prihláste sa</0> Alebo <2>Prihlásiť sa ako hosť</2></1>",
|
||||||
"start_video_button_label": "Spustiť video",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - Vysielačkový hovor",
|
||||||
"stop_screenshare_button_label": "Zdieľanie obrazovky",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"stop_video_button_label": "Zastaviť video",
|
"{{name}} is talking…": "{{name}} rozpráva…",
|
||||||
"submitting": "Odosielanie…",
|
"{{name}} is presenting": "{{name}} prezentuje",
|
||||||
"unauthenticated_view_body": "Ešte nie ste zaregistrovaný? <2>Vytvorte si účet</2>",
|
"{{name}} (Waiting for video...)": "{{name}} (Čaká sa na video...)",
|
||||||
"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>",
|
"{{name}} (Connecting...)": "{{name}} (Pripájanie...)",
|
||||||
"unauthenticated_view_login_button": "Prihláste sa do svojho konta",
|
"{{displayName}}, your call is now ended": "{{displayName}}, váš hovor je teraz ukončený",
|
||||||
"unmute_microphone_button_label": "Zrušiť stlmenie mikrofónu",
|
"{{count}} people connected|other": "{{count}} osôb pripojených",
|
||||||
"version": "Verzia: {{version}}",
|
"{{count}} people connected|one": "{{count}} osoba pripojená",
|
||||||
"video_tile": {
|
"This feature is only supported on Firefox.": "Táto funkcia je podporovaná len v prehliadači Firefox.",
|
||||||
"presenter_label": "{{displayName}} prezentuje",
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Odoslanie záznamov ladenia nám pomôže nájsť problém.</0>",
|
||||||
"sfu_participant_local": "Vy"
|
"<0>Oops, something's gone wrong.</0>": "<0>Hups, niečo sa pokazilo.</0>",
|
||||||
},
|
"Use the upcoming grid system": "Použiť pripravovaný systém mriežky",
|
||||||
"waiting_for_participants": "Čaká sa na ďalších účastníkov…"
|
"Expose developer settings in the settings window.": "Zobraziť nastavenia pre vývojárov v okne nastavení.",
|
||||||
|
"Developer Settings": "Nastavenia pre vývojárov",
|
||||||
|
"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>.": "Úč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>.",
|
||||||
|
"<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0></0><1></1>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."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +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",
|
|
||||||
"video_tile": {
|
|
||||||
"presenter_label": "{{displayName}} presenterar"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,66 +1,100 @@
|
|||||||
{
|
{
|
||||||
"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",
|
||||||
"exit_fullscreen_button_label": "Tam ekranı terk et",
|
"Display name": "Ekran adı",
|
||||||
"fullscreen_button_label": "Tam ekran",
|
"Download debug logs": "Hata ayıklama kütüğünü indir",
|
||||||
"join_existing_call_modal": {
|
"Exit full screen": "Tam ekranı terk et",
|
||||||
"text": "Bu arama zaten var, katılmak ister misiniz?",
|
"Fetching group call timed out.": "Grup çağrısı zaman aşımına uğradı.",
|
||||||
"title": "Mevcut aramaya katıl?"
|
"Freedom": "Özgürlük",
|
||||||
},
|
"Full screen": "Tam ekran",
|
||||||
"lobby": {
|
"Go": "Git",
|
||||||
"join_button": "Aramaya katıl"
|
"Grid layout menu": "Izgara plan menü",
|
||||||
},
|
"Having trouble? Help us fix it.": "Sorun mu var? Çözmemize yardım edin.",
|
||||||
"local_volume_label": "Yerel ses seviyesi",
|
"Home": "Ev",
|
||||||
"logging_in": "Giriliyor…",
|
"Include debug logs": "Hata ayıklama kütüğünü dahil et",
|
||||||
"login_auth_links": "<0>Hesap oluştur</0> yahut <2>Konuk olarak gir</2>",
|
"Incompatible versions": "Uyumsuz sürümler",
|
||||||
"login_title": "Gir",
|
"Incompatible versions!": "Sürüm uyumsuz!",
|
||||||
"rageshake_request_modal": {
|
"Inspector": "Denetçi",
|
||||||
"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.",
|
"Invite people": "Kişileri davet et",
|
||||||
"title": "Hata ayıklama kütük istemi"
|
"Join call": "Aramaya katıl",
|
||||||
},
|
"Join call now": "Aramaya katıl",
|
||||||
"rageshake_send_logs": "Hata ayıklama kütüğünü gönder",
|
"Join existing call?": "Mevcut aramaya katıl?",
|
||||||
"rageshake_sending": "Gönderiliyor…",
|
"Leave": "Çık",
|
||||||
"recaptcha_dismissed": "reCAPTCHA atlandı",
|
"Loading room…": "Oda yükleniyor…",
|
||||||
"recaptcha_not_loaded": "reCAPTCHA yüklenmedi",
|
"Loading…": "Yükleniyor…",
|
||||||
"register": {
|
"Local volume": "Yerel ses seviyesi",
|
||||||
"passwords_must_match": "Parolalar aynı olmalı",
|
"Logging in…": "Giriliyor…",
|
||||||
"registering": "Kaydediyor…"
|
"Login": "Gir",
|
||||||
},
|
"Login to your account": "Hesabınıza girin",
|
||||||
"register_auth_links": "<0>Mevcut hesabınız mı var?</0><1><0>Gir</0> yahut <2>Konuk girişi</2></1>",
|
"Microphone": "Mikrofon",
|
||||||
"register_confirm_password_label": "Parolayı tekrar edin",
|
"Microphone permissions needed to join the call.": "Aramaya katılmak için mikrofon erişim izni gerek.",
|
||||||
"return_home_button": "Ev ekranına geri dön",
|
"Microphone {{n}}": "{{n}}. mikrofon",
|
||||||
"room_auth_view_join_button": "Aramaya katıl",
|
"More": "Daha",
|
||||||
"screenshare_button_label": "Ekran paylaş",
|
"More menu": "Daha fazla",
|
||||||
"select_input_unset_button": "Bir seçenek seç",
|
"Mute microphone": "Mikrofonu kapat",
|
||||||
"settings": {
|
"No": "Hayır",
|
||||||
"developer_tab_title": "Geliştirici",
|
"Not now, return to home screen": "Şimdi değil, ev ekranına dön",
|
||||||
"feedback_tab_h4": "Geri bildirim ver",
|
"Not registered yet? <2>Create an account</2>": "Kaydolmadınız mı? <2>Hesap açın</2>",
|
||||||
"feedback_tab_send_logs_label": "Hata ayıklama kütüğünü dahil et",
|
"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.",
|
||||||
"more_tab_title": "Daha"
|
"Password": "Parola",
|
||||||
},
|
"Passwords must match": "Parolalar aynı olmalı",
|
||||||
"unauthenticated_view_body": "Kaydolmadınız mı? <2>Hesap açın</2>",
|
"Press and hold spacebar to talk": "Konuşmak için boşluk çubuğunu basılı tutun",
|
||||||
"unauthenticated_view_login_button": "Hesabınıza girin"
|
"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>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>"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,142 +1,143 @@
|
|||||||
{
|
{
|
||||||
"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}}",
|
||||||
"exit_fullscreen_button_label": "Вийти з повноекранного режиму",
|
"Press and hold to talk": "Затисніть, щоб говорити",
|
||||||
"full_screen_view_description": "<0>Надсилання журналів налагодження допоможе нам виявити проблему.</0>",
|
"Press and hold spacebar to talk over {{name}}": "Щоб говорити одночасно з {{name}}, затисніть пробіл",
|
||||||
"full_screen_view_h1": "<0>Йой, щось пішло не за планом.</0>",
|
"Press and hold spacebar to talk": "Затисніть пробіл, щоб говорити",
|
||||||
"fullscreen_button_label": "Повноекранний режим",
|
"Passwords must match": "Паролі відрізняються",
|
||||||
"group_call_loader_failed_heading": "Виклик не знайдено",
|
"Password": "Пароль",
|
||||||
"group_call_loader_failed_text": "Відтепер виклики захищено наскрізним шифруванням, і їх потрібно створювати з домашньої сторінки. Це допомагає переконатися, що всі користувачі використовують один і той самий ключ шифрування.",
|
"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>",
|
||||||
"hangup_button_label": "Завершити виклик",
|
"Not registered yet? <2>Create an account</2>": "Ще не зареєстровані? <2>Створіть обліковий запис</2>",
|
||||||
"header_label": "Домівка Element Call",
|
"Not now, return to home screen": "Не зараз, повернутися на екран домівки",
|
||||||
"header_participants_label": "Учасники",
|
"No": "Ні",
|
||||||
"invite_modal": {
|
"Mute microphone": "Заглушити мікрофон",
|
||||||
"link_copied_toast": "Посилання скопійовано до буфера обміну",
|
"More menu": "Усе меню",
|
||||||
"title": "Запросити до цього виклику"
|
"More": "Докладніше",
|
||||||
},
|
"Microphone permissions needed to join the call.": "Для участі у виклику необхідний дозвіл на користування мікрофоном.",
|
||||||
"join_existing_call_modal": {
|
"Microphone {{n}}": "Мікрофон {{n}}",
|
||||||
"join_button": "Так, приєднатися до виклику",
|
"Microphone": "Мікрофон",
|
||||||
"text": "Цей виклик уже існує, бажаєте приєднатися?",
|
"Login to your account": "Увійдіть до свого облікового запису",
|
||||||
"title": "Приєднатися до наявного виклику?"
|
"Login": "Увійти",
|
||||||
},
|
"Logging in…": "Вхід…",
|
||||||
"layout_grid_label": "Сітка",
|
"Local volume": "Локальна гучність",
|
||||||
"layout_spotlight_label": "У центрі уваги",
|
"Loading room…": "Завантаження кімнати…",
|
||||||
"lobby": {
|
"Leave": "Вийти",
|
||||||
"join_button": "Приєднатися до виклику",
|
"Join existing call?": "Приєднатися до наявного виклику?",
|
||||||
"leave_button": "Повернутися до недавніх"
|
"Join call now": "Приєднатися до виклику зараз",
|
||||||
},
|
"Join call": "Приєднатися до виклику",
|
||||||
"local_volume_label": "Локальна гучність",
|
"Invite people": "Запросити людей",
|
||||||
"logging_in": "Вхід…",
|
"Invite": "Запросити",
|
||||||
"login_auth_links": "<0>Створити обліковий запис</0> або <2>Отримати доступ як гість</2>",
|
"Inspector": "Інспектор",
|
||||||
"login_title": "Увійти",
|
"Incompatible versions!": "Несумісні версії!",
|
||||||
"microphone_off": "Мікрофон вимкнено",
|
"Incompatible versions": "Несумісні версії",
|
||||||
"microphone_on": "Мікрофон увімкнено",
|
"Include debug logs": "Долучити журнали налагодження",
|
||||||
"mute_microphone_button_label": "Вимкнути мікрофон",
|
"Home": "Домівка",
|
||||||
"rageshake_button_error_caption": "Повторити надсилання журналів",
|
"Having trouble? Help us fix it.": "Проблеми? Допоможіть нам це виправити.",
|
||||||
"rageshake_request_modal": {
|
"Grid layout menu": "Меню у вигляді сітки",
|
||||||
"body": "Інший користувач у цьому виклику має проблему. Щоб краще визначити ці проблеми, ми хотіли б зібрати журнал налагодження.",
|
"Go": "Далі",
|
||||||
"title": "Запит журналу налагодження"
|
"Full screen": "Повноекранний режим",
|
||||||
},
|
"Freedom": "Свобода",
|
||||||
"rageshake_send_logs": "Надіслати журнал налагодження",
|
"Fetching group call timed out.": "Вичерпано час очікування групового виклику.",
|
||||||
"rageshake_sending": "Надсилання…",
|
"Exit full screen": "Вийти з повноекранного режиму",
|
||||||
"rageshake_sending_logs": "Надсилання журналу налагодження…",
|
"Download debug logs": "Завантажити журнали налагодження",
|
||||||
"rageshake_sent": "Дякуємо!",
|
"Display name": "Показуване ім'я",
|
||||||
"recaptcha_caption": "Цей сайт захищений ReCAPTCHA і до нього застосовується <2>Політика приватності</2> і <6>Умови надання послуг</6> Google.<9></9>Натискаючи \"Зареєструватися\", ви погоджуєтеся з нашою <12>Ліцензійною угодою з кінцевим користувачем (EULA)</12>",
|
"Developer": "Розробнику",
|
||||||
"recaptcha_dismissed": "Recaptcha не пройдено",
|
"Details": "Подробиці",
|
||||||
"recaptcha_not_loaded": "Recaptcha не завантажено",
|
"Description (optional)": "Опис (необов'язково)",
|
||||||
"register": {
|
"Debug log request": "Запит журналу налагодження",
|
||||||
"passwords_must_match": "Паролі відрізняються",
|
"Debug log": "Журнал налагодження",
|
||||||
"registering": "Реєстрація…"
|
"Create account": "Створити обліковий запис",
|
||||||
},
|
"Copy and share this call link": "Скопіювати та поділитися цим посиланням на виклик",
|
||||||
"register_auth_links": "<0>Уже маєте обліковий запис?</0><1><0>Увійти</0> Or <2>Отримати доступ як гість</2></1>",
|
"Copied!": "Скопійовано!",
|
||||||
"register_confirm_password_label": "Підтвердити пароль",
|
"Connection lost": "З'єднання розірвано",
|
||||||
"return_home_button": "Повернутися на екран домівки",
|
"Confirm password": "Підтвердити пароль",
|
||||||
"room_auth_view_eula_caption": "Натискаючи \"Приєднатися до виклику зараз\", ви погоджуєтеся з нашою <2>Ліцензійною угодою з кінцевим користувачем (EULA)</2>",
|
"Close": "Закрити",
|
||||||
"room_auth_view_join_button": "Приєднатися до виклику зараз",
|
"Change layout": "Змінити макет",
|
||||||
"screenshare_button_label": "Поділитися екраном",
|
"Camera/microphone permissions needed to join the call.": "Для приєднання до виклику необхідні дозволи камери/мікрофона.",
|
||||||
"select_input_unset_button": "Вибрати опцію",
|
"Camera {{n}}": "Камера {{n}}",
|
||||||
"settings": {
|
"Camera": "Камера",
|
||||||
"developer_settings_label": "Налаштування розробника",
|
"Call type menu": "Меню типу виклику",
|
||||||
"developer_settings_label_description": "Відкрийте налаштування розробника у вікні налаштувань.",
|
"Call link copied": "Посилання на виклик скопійовано",
|
||||||
"developer_tab_title": "Розробнику",
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "Натиснувши «Приєднатися до виклику зараз», ви погодитеся з нашими <2>Умовами та положеннями</2>",
|
||||||
"feedback_tab_body": "Якщо у вас виникли проблеми або ви просто хочете залишити відгук, надішліть нам короткий опис нижче.",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "Натиснувши «Далі», ви погодитеся з нашими <2>Умовами та положеннями</2>",
|
||||||
"feedback_tab_description_label": "Ваш відгук",
|
"Avatar": "Аватар",
|
||||||
"feedback_tab_h4": "Надіслати відгук",
|
"Audio": "Звук",
|
||||||
"feedback_tab_send_logs_label": "Долучити журнали налагодження",
|
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "Інший користувач у цьому виклику має проблему. Щоб краще визначити ці проблеми, ми хотіли б зібрати журнал налагодження.",
|
||||||
"feedback_tab_thank_you": "Дякуємо, ми отримали ваш відгук!",
|
"Accept microphone permissions to join the call.": "Надайте дозволи на використання мікрофонів для приєднання до виклику.",
|
||||||
"feedback_tab_title": "Відгук",
|
"Accept camera/microphone permissions to join the call.": "Надайте дозвіл на використання камери/мікрофона для приєднання до виклику.",
|
||||||
"more_tab_title": "Докладніше",
|
"<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>",
|
||||||
"opt_in_description": "<0></0><1></1>Ви можете відкликати згоду, прибравши цей прапорець. Якщо ви зараз розмовляєте, це налаштування застосується після завершення виклику.",
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>Створити обліковий запис</0> або <2>Отримати доступ як гість</2>",
|
||||||
"show_connection_stats_label": "Показати стан з'єднання",
|
"<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>",
|
||||||
"speaker_device_selection_label": "Динамік"
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - Виклик-рація",
|
||||||
},
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"star_rating_input_label_one": "{{count}} зірок",
|
"{{name}} is talking…": "{{name}} балакає…",
|
||||||
"star_rating_input_label_other": "{{count}} зірок",
|
"{{name}} is presenting": "{{name}} показує",
|
||||||
"start_new_call": "Розпочати новий виклик",
|
"{{displayName}}, your call is now ended": "{{displayName}}, ваш виклик завершено",
|
||||||
"start_video_button_label": "Розпочати відео",
|
"{{count}} people connected|other": "{{count}} під'єдналися",
|
||||||
"stop_screenshare_button_label": "Презентація екрана",
|
"{{count}} people connected|one": "{{count}} під'єднується",
|
||||||
"stop_video_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>",
|
||||||
"submitting": "Надсилання…",
|
"{{name}} (Connecting...)": "{{name}} (З'єднання...)",
|
||||||
"unauthenticated_view_body": "Ще не зареєстровані? <2>Створіть обліковий запис</2>",
|
"Element Call Home": "Домівка Element Call",
|
||||||
"unauthenticated_view_eula_caption": "Натискаючи \"Далі\", ви погоджуєтеся з нашою <2>Ліцензійною угодою з кінцевим користувачем (EULA)</2>",
|
"Copy": "Копіювати",
|
||||||
"unauthenticated_view_login_button": "Увійдіть до свого облікового запису",
|
"{{name}} (Waiting for video...)": "{{name}} (Очікування на відео...)",
|
||||||
"unmute_microphone_button_label": "Увімкнути мікрофон",
|
"This feature is only supported on Firefox.": "Ця функція підтримується лише в браузері Firefox.",
|
||||||
"version": "Версія: {{version}}",
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>Надсилання журналів налагодження допоможе нам виявити проблему.</0>",
|
||||||
"video_tile": {
|
"<0>Oops, something's gone wrong.</0>": "<0>Йой, щось пішло не за планом.</0>",
|
||||||
"presenter_label": "{{displayName}} представляє",
|
"Use the upcoming grid system": "Використовувати майбутню сіткову систему",
|
||||||
"sfu_participant_local": "Ви"
|
"Expose developer settings in the settings window.": "Відкрийте налаштування розробника у вікні налаштувань.",
|
||||||
},
|
"Developer Settings": "Налаштування розробника",
|
||||||
"waiting_for_participants": "Очікування на інших учасників…"
|
"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>.": "Користуючись дочасним доступом, ви даєте згоду на збір анонімних даних, які ми використовуємо для вдосконалення продукту. Ви можете знайти більше інформації про те, які дані ми відстежуємо в нашій <2>Політиці Приватності</2> і нашій <5>Політиці про куки</5>.",
|
||||||
|
"<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0></0><1></1>Ви можете відкликати згоду, прибравши цей прапорець. Якщо ви зараз розмовляєте, це налаштування застосується після завершення виклику."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,80 +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"
|
|
||||||
},
|
|
||||||
"exit_fullscreen_button_label": "Rời chế độ toàn mà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>",
|
|
||||||
"fullscreen_button_label": "Toàn màn hình",
|
|
||||||
"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}}",
|
|
||||||
"video_tile": {
|
|
||||||
"presenter_label": "{{displayName}} đang trình bày"
|
|
||||||
},
|
|
||||||
"waiting_for_participants": "Đang đợi những người khác…"
|
|
||||||
}
|
|
||||||
@@ -1,135 +1,135 @@
|
|||||||
{
|
{
|
||||||
"a11y": {
|
"Your recent calls": "最近通话",
|
||||||
"user_menu": "用户菜单"
|
"You can't talk at the same time": "你不能在同一时间发言",
|
||||||
},
|
"Yes, join call": "是,加入通话",
|
||||||
"action": {
|
"WebRTC is not supported or is being blocked in this browser.": "此浏览器不支持WebRTC或WebRTC被浏览器阻止。",
|
||||||
"close": "关闭",
|
"Walkie-talkie call name": "对讲机通话名称",
|
||||||
"copy": "复制",
|
"Walkie-talkie call": "对讲机通话",
|
||||||
"go": "开始",
|
"Waiting for other participants…": "等待其他参与者……",
|
||||||
"no": "否",
|
"Waiting for network": "正在等待网络",
|
||||||
"register": "注册",
|
"Video call name": "视频通话名称",
|
||||||
"remove": "移除",
|
"Video call": "视频通话",
|
||||||
"sign_in": "登录",
|
"Video": "视频",
|
||||||
"sign_out": "登出",
|
"Version: {{version}}": "版本:{{version}}",
|
||||||
"submit": "提交"
|
"Username": "用户名",
|
||||||
},
|
"User menu": "用户菜单",
|
||||||
"analytics_notice": "参与测试即表示您同意我们收集匿名数据,用于改进产品。您可以在我们的<2>隐私政策</2>和<5>Cookie政策</5>中找到有关我们跟踪哪些数据以及更多信息。",
|
"User ID": "用户ID",
|
||||||
"app_selection_modal": {
|
"Unmute microphone": "取消麦克风静音",
|
||||||
"continue_in_browser": "在浏览器中继续",
|
"Turn on camera": "开启摄像头",
|
||||||
"open_in_app": "在应用中打开",
|
"Turn off camera": "关闭摄像头",
|
||||||
"text": "准备好加入了吗?",
|
"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.)": "这将使发言人的音频看起来像是来自他们在屏幕上的位置。(实验性功能:这可能影响音频的稳定性)",
|
||||||
"title": "选择应用程序"
|
"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>",
|
||||||
},
|
"This call already exists, would you like to join?": "该通话已存在,你想加入吗?",
|
||||||
"browser_media_e2ee_unsupported": "您的浏览器不支持媒体端对端加密。支持的浏览器有 Chrome、Safari、Firefox >=117",
|
"Thanks! We'll get right on it.": "谢谢!我们会马上去做的。",
|
||||||
"call_ended_view": {
|
"Talking…": "正在发言……",
|
||||||
"body": "通话已中断",
|
"Talk over speaker": "通过扬声器发言",
|
||||||
"create_account_button": "创建账户",
|
"Take me Home": "返回主页",
|
||||||
"create_account_prompt": "<0>为何不设置密码来保留你的账户?</0><1>保留昵称并设置头像,以便在未来的通话中使用。</1>",
|
"Submitting feedback…": "正在提交反馈……",
|
||||||
"feedback_done": "<0>感谢反馈!</0>",
|
"Submit feedback": "提交反馈",
|
||||||
"feedback_prompt": "<0>我们需要您的反馈以提升用户体验。</0>",
|
"Stop sharing screen": "停止屏幕共享",
|
||||||
"headline": "{{displayName}},通话已结束。",
|
"Spotlight": "聚焦模式",
|
||||||
"not_now_button": "暂不,返回主页",
|
"Speaker {{n}}": "发言人 {{n}}",
|
||||||
"reconnect_button": "重新连接",
|
"Speaker": "发言人",
|
||||||
"survey_prompt": "进展如何?"
|
"Spatial audio": "空间音频",
|
||||||
},
|
"Sign out": "注销登录",
|
||||||
"call_name": "通话名称",
|
"Sign in": "登录",
|
||||||
"common": {
|
"Audio": "音频",
|
||||||
"audio": "音频",
|
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "这个通话中的另一个用户出现了问题。为了更好地诊断这些问题,我们想收集调试日志。",
|
||||||
"avatar": "头像",
|
"Accept microphone permissions to join the call.": "授予麦克风权限以加入通话。",
|
||||||
"camera": "摄像头",
|
"Accept camera/microphone permissions to join the call.": "授予摄像头/麦克风权限以加入通话。",
|
||||||
"copied": "已复制!",
|
"<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>",
|
||||||
"display_name": "显示名称",
|
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>现在加入通话</0><1>或</1><2>复制通话链接并稍后加入</2>",
|
||||||
"encrypted": "已加密",
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>创建账户</0> Or <2>以访客身份继续</2>",
|
||||||
"home": "主页",
|
"<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>",
|
||||||
"loading": "加载中……",
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - 对讲机通话",
|
||||||
"microphone": "麦克风",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"password": "密码",
|
"{{name}} is talking…": "{{name}}正在发言……",
|
||||||
"profile": "个人信息",
|
"{{name}} is presenting": "{{name}}正在展示",
|
||||||
"settings": "设置",
|
"{{name}} (Waiting for video...)": "{{name}}(等待视频……)",
|
||||||
"unencrypted": "未加密",
|
"{{name}} (Connecting...)": "{{name}} (正在连接……)",
|
||||||
"username": "用户名",
|
"{{displayName}}, your call is now ended": "{{displayName}},您的通话已结束",
|
||||||
"video": "视频"
|
"{{count}} people connected|other": "{{count}}人已连接",
|
||||||
},
|
"{{count}} people connected|one": "{{count}}人已连接",
|
||||||
"disconnected_banner": "与服务器的连接中断。",
|
"Inspector": "检查器",
|
||||||
"exit_fullscreen_button_label": "退出全屏",
|
"Show call inspector": "显示通话检查器",
|
||||||
"full_screen_view_description": "<0>提交日志以帮助我们修复问题。</0>",
|
"Share screen": "屏幕共享",
|
||||||
"full_screen_view_h1": "<0>哎哟,出问题了。</0>",
|
"Settings": "设置",
|
||||||
"fullscreen_button_label": "全屏",
|
"Sending…": "正在发送……",
|
||||||
"group_call_loader_failed_heading": "未找到通话",
|
"Sending debug logs…": "正在发送调试日志……",
|
||||||
"group_call_loader_failed_text": "现在,通话是端对端加密的,需要从主页创建。这有助于确保每个人都使用相同的加密密钥。",
|
"Send debug logs": "发送调试日志",
|
||||||
"hangup_button_label": "通话结束",
|
"Select an option": "选择一个选项",
|
||||||
"header_label": "Element Call主页",
|
"Saving…": "正在保存……",
|
||||||
"join_existing_call_modal": {
|
"Save": "保存",
|
||||||
"join_button": "是,加入通话",
|
"Return to home screen": "返回主页",
|
||||||
"text": "该通话已存在,你想加入吗?",
|
"Remove": "移除",
|
||||||
"title": "是否加入现有的通话?"
|
"Release to stop": "松开后停止",
|
||||||
},
|
"Release spacebar key to stop": "松开空格键停止",
|
||||||
"layout_grid_label": "网格",
|
"Registering…": "正在注册……",
|
||||||
"layout_spotlight_label": "聚焦模式",
|
"Register": "注册",
|
||||||
"lobby": {
|
"Recaptcha not loaded": "reCaptcha未加载",
|
||||||
"join_button": "加入通话",
|
"Recaptcha dismissed": "reCaptcha验证失败",
|
||||||
"leave_button": "返回最近通话"
|
"Profile": "个人信息",
|
||||||
},
|
"Press and hold to talk over {{name}}": "按住不放即可与 {{name}} 通话",
|
||||||
"local_volume_label": "本地音量",
|
"Press and hold to talk": "按住不放即可通话",
|
||||||
"logging_in": "登录中……",
|
"Press and hold spacebar to talk over {{name}}": "按住空格键,与 {{name}} 对话",
|
||||||
"login_auth_links": "<0>创建账户</0> Or <2>以访客身份继续</2>",
|
"Press and hold spacebar to talk": "按住空格键发言",
|
||||||
"login_title": "登录",
|
"Passwords must match": "密码必须匹配",
|
||||||
"microphone_off": "麦克风关闭",
|
"Password": "密码",
|
||||||
"microphone_on": "麦克风开启",
|
"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>",
|
||||||
"mute_microphone_button_label": "静音麦克风",
|
"Not registered yet? <2>Create an account</2>": "还没有注册? <2>创建账户<2>",
|
||||||
"rageshake_button_error_caption": "重传日志",
|
"Not now, return to home screen": "暂不,先返回主页",
|
||||||
"rageshake_request_modal": {
|
"No": "否",
|
||||||
"body": "这个通话中的另一个用户出现了问题。为了更好地诊断这些问题,我们想收集调试日志。",
|
"Mute microphone": "麦克风静音",
|
||||||
"title": "调试日志请求"
|
"More menu": "更多",
|
||||||
},
|
"More": "更多",
|
||||||
"rageshake_send_logs": "发送调试日志",
|
"Microphone permissions needed to join the call.": "加入通话需要麦克风权限。",
|
||||||
"rageshake_sending": "正在发送……",
|
"Microphone {{n}}": "麦克风 {{n}}",
|
||||||
"rageshake_sending_logs": "正在发送调试日志……",
|
"Microphone": "麦克风",
|
||||||
"rageshake_sent": "谢谢!",
|
"Login to your account": "登录你的账户",
|
||||||
"recaptcha_caption": "该站点受 ReCAPTCHA 保护,适用于Google的 <2>隐私政策</2>和 <6>服务条款</6>。 <9></9>点击 \"注册\",即表示您同意我们的 <12>最终用户许可协议 (EULA)</12>",
|
"Login": "登录",
|
||||||
"recaptcha_dismissed": "人机验证失败",
|
"Logging in…": "登录中……",
|
||||||
"recaptcha_not_loaded": "recaptcha未加载",
|
"Local volume": "本地音量",
|
||||||
"register": {
|
"Loading…": "加载中……",
|
||||||
"passwords_must_match": "密码必须匹配",
|
"Loading room…": "加载房间中……",
|
||||||
"registering": "正在注册……"
|
"Leave": "离开",
|
||||||
},
|
"Join existing call?": "加入现有的通话?",
|
||||||
"register_auth_links": "<0>已有账户?</0><1><0>登录</0> Or <2>以访客身份继续</2></1>",
|
"Join call now": "现在加入通话",
|
||||||
"register_confirm_password_label": "确认密码",
|
"Join call": "加入通话",
|
||||||
"return_home_button": "返回主页",
|
"Invite people": "邀请他人",
|
||||||
"room_auth_view_eula_caption": "点击 \"加入通话\",即表示您同意我们的<2>最终用户许可协议 (EULA)</2>",
|
"Invite": "邀请",
|
||||||
"room_auth_view_join_button": "现在加入通话",
|
"Incompatible versions!": "版本不兼容!",
|
||||||
"screenshare_button_label": "屏幕共享",
|
"Incompatible versions": "不兼容版本",
|
||||||
"select_input_unset_button": "选择一个选项",
|
"Include debug logs": "包含调试日志",
|
||||||
"settings": {
|
"Home": "主页",
|
||||||
"developer_settings_label": "开发者设置",
|
"Having trouble? Help us fix it.": "遇到麻烦?帮助我们解决问题。",
|
||||||
"developer_settings_label_description": "在设置中显示开发者设置。",
|
"Grid layout menu": "网格布局菜单",
|
||||||
"developer_tab_title": "开发者",
|
"Go": "开始",
|
||||||
"feedback_tab_body": "如果遇到问题或想提供一些反馈意见,请在下面向我们发送简短描述。",
|
"Full screen": "全屏",
|
||||||
"feedback_tab_description_label": "您的反馈",
|
"Freedom": "自由模式",
|
||||||
"feedback_tab_h4": "提交反馈",
|
"Fetching group call timed out.": "获取群组通话超时。",
|
||||||
"feedback_tab_send_logs_label": "包含调试日志",
|
"Exit full screen": "退出全屏",
|
||||||
"feedback_tab_thank_you": "谢谢,我们收到了反馈!",
|
"Element Call Home": "Element Call 主页",
|
||||||
"feedback_tab_title": "反馈",
|
"Download debug logs": "下载调试日志",
|
||||||
"more_tab_title": "更多",
|
"Display name": "显示名称",
|
||||||
"opt_in_description": "<0></0><1></1>您可以取消选中复选框来撤回同意。如果正在通话中,此设置将在通话结束时生效。",
|
"Developer": "开发者",
|
||||||
"show_connection_stats_label": "显示连接统计信息",
|
"Details": "详情",
|
||||||
"speaker_device_selection_label": "发言人"
|
"Description (optional)": "描述(可选)",
|
||||||
},
|
"Debug log request": "调试日志请求",
|
||||||
"star_rating_input_label_one": "{{count}} 个星",
|
"Debug log": "调试日志",
|
||||||
"star_rating_input_label_other": "{{count}} 个星",
|
"Create account": "创建账户",
|
||||||
"start_new_call": "开始新通话",
|
"Copy and share this call link": "复制并分享该链接",
|
||||||
"start_video_button_label": "开始视频",
|
"Copy": "复制",
|
||||||
"stop_screenshare_button_label": "屏幕共享",
|
"Copied!": "已复制!",
|
||||||
"stop_video_button_label": "停止视频",
|
"Connection lost": "连接丢失",
|
||||||
"submitting": "提交中…",
|
"Confirm password": "确认密码",
|
||||||
"unauthenticated_view_body": "还没有注册? <2>创建账户<2>",
|
"Close": "关闭",
|
||||||
"unauthenticated_view_eula_caption": "点击 \"开始\",即表示您同意我们的<2>最终用户许可协议 (EULA)</2>",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "点击开始则代表同意我们的<2>条款和条件<2>",
|
||||||
"unauthenticated_view_login_button": "登录你的账户",
|
"Change layout": "更改布局",
|
||||||
"unmute_microphone_button_label": "取消麦克风静音",
|
"Camera/microphone permissions needed to join the call.": "加入通话需要摄像头/麦克风权限。",
|
||||||
"version": "版本:{{version}}",
|
"Camera {{n}}": "摄像头 {{n}}",
|
||||||
"video_tile": {
|
"Camera": "摄像头",
|
||||||
"presenter_label": "{{displayName}}正在展示",
|
"Call type menu": "通话类型菜单",
|
||||||
"sfu_participant_local": "你"
|
"Call link copied": "链接已复制",
|
||||||
},
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "点击“现在加入”则表示同意我们的<2>条款与条件<2>",
|
||||||
"waiting_for_participants": "等待其他参与者……"
|
"Avatar": "头像"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,142 +1,143 @@
|
|||||||
{
|
{
|
||||||
"a11y": {
|
"<0>Join call now</0><1>Or</1><2>Copy call link and join later</2>": "<0>現在加入通話</0><1>或</1><2>複製通話連結,稍後再加入</2>",
|
||||||
"user_menu": "使用者選單"
|
"<0>Create an account</0> Or <2>Access as a guest</2>": "<0>建立帳號</0> 或<2>以訪客身份登入</2>",
|
||||||
},
|
"<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>",
|
||||||
"action": {
|
"{{roomName}} - Walkie-talkie call": "{{roomName}} - 對講機式通話",
|
||||||
"close": "關閉",
|
"{{names}}, {{name}}": "{{names}}, {{name}}",
|
||||||
"copy": "複製",
|
"{{name}} is talking…": "{{name}} 正在發言…",
|
||||||
"copy_link": "複製連結",
|
"{{name}} is presenting": "{{name}} 已上線",
|
||||||
"go": "前往",
|
"{{name}} (Waiting for video...)": "{{name}} (等候視訊中...)",
|
||||||
"invite": "邀請",
|
"{{name}} (Connecting...)": "{{name}} (連結中...)",
|
||||||
"no": "否",
|
"{{displayName}}, your call is now ended": "{{displayName}},您的通話已結束",
|
||||||
"register": "註冊",
|
"{{count}} people connected|other": "{{count}} 人已連結",
|
||||||
"remove": "移除",
|
"{{count}} people connected|one": "{{count}} 人已連結",
|
||||||
"sign_in": "登入",
|
"Use the upcoming grid system": "使用即將推出的網格系統",
|
||||||
"sign_out": "登出",
|
"Expose developer settings in the settings window.": "在設定視窗中顯示開發者設定。",
|
||||||
"submit": "遞交"
|
"Developer Settings": "開發者設定",
|
||||||
},
|
"<0>Submitting debug logs will help us track down the problem.</0>": "<0>送出除錯紀錄,可幫助我們修正問題。</0>",
|
||||||
"analytics_notice": "參與此測試版即表示您同意蒐集匿名資料,我們使用這些資料來改進產品。您可以在我們的<2>隱私政策</2>與我們的 <5>Cookie 政策</5> 中找到關於我們追蹤哪些資料的更多資訊。",
|
"<0>Oops, something's gone wrong.</0>": "<0>喔喔,有些地方怪怪的。</0>",
|
||||||
"app_selection_modal": {
|
"Your recent calls": "您最近的通話",
|
||||||
"continue_in_browser": "在瀏覽器中繼續",
|
"You can't talk at the same time": "您無法在同一時間發言",
|
||||||
"open_in_app": "在應用程式中開啟",
|
"Yes, join call": "是,加入對話",
|
||||||
"text": "準備好加入了?",
|
"WebRTC is not supported or is being blocked in this browser.": "此瀏覽器未支援 WebRTC 或 WebRTC 被瀏覽器封鎖。",
|
||||||
"title": "選取應用程式"
|
"Walkie-talkie call name": "對講機式通話名稱",
|
||||||
},
|
"Walkie-talkie call": "即時通話",
|
||||||
"browser_media_e2ee_unsupported": "您的網路瀏覽器不支援媒體端到端加密。支援的瀏覽器包含了 Chrome、Safari、Firefox >=117",
|
"Waiting for other participants…": "等待其他參加者…",
|
||||||
"call_ended_view": {
|
"Waiting for network": "等待網路連線",
|
||||||
"body": "您已從通話斷線",
|
"Video call name": "視訊通話姓名",
|
||||||
"create_account_button": "建立帳號",
|
"Video call": "視訊通話",
|
||||||
"create_account_prompt": "<0>何不設定密碼以保留此帳號?</0><1>您可以保留暱稱並設定頭像,以便未來通話時使用</1>",
|
"Video": "視訊",
|
||||||
"feedback_done": "<0>感謝您的回饋!</0>",
|
"Version: {{version}}": "版本: {{version}}",
|
||||||
"feedback_prompt": "<0>我們想要聽到您的回饋,如此我們才能改善您的體驗。</0>",
|
"Username": "使用者名稱",
|
||||||
"headline": "{{displayName}},您的通話已結束。",
|
"User menu": "使用者選單",
|
||||||
"not_now_button": "現在不行,回到首頁",
|
"User ID": "使用者 ID",
|
||||||
"reconnect_button": "重新連線",
|
"Unmute microphone": "取消麥克風靜音",
|
||||||
"survey_prompt": "進展如何?"
|
"Turn on camera": "開啟相機",
|
||||||
},
|
"Turn off camera": "關閉相機",
|
||||||
"call_name": "通話名稱",
|
"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.)": "這會使得發言者的聲音聽起來,像從他們在畫面中的位置傳來(實驗性功能:這可能會影響語音的穩定性。)",
|
||||||
"common": {
|
"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>": "此網站使用Google 驗證碼技術保護,適用<2>隱私條款</2> 與<6>條款與細則</6> 。<9></9>按下「註冊」,表示您同意我們的<12>條款與細則</12>",
|
||||||
"audio": "語音",
|
"This feature is only supported on Firefox.": "只有 Firefox 支援此功能。",
|
||||||
"avatar": "大頭照",
|
"This call already exists, would you like to join?": "通話已經開始,請問您要加入嗎?",
|
||||||
"camera": "相機",
|
"Thanks! We'll get right on it.": "謝謝您!我們會盡快處理。",
|
||||||
"copied": "已複製!",
|
"Talking…": "對話中…",
|
||||||
"display_name": "顯示名稱",
|
"Talk over speaker": "以擴音對話",
|
||||||
"encrypted": "已加密",
|
"Take me Home": "帶我回主畫面",
|
||||||
"home": "首頁",
|
"Submitting feedback…": "遞交回饋…",
|
||||||
"loading": "載入中…",
|
"Submit feedback": "遞交回覆",
|
||||||
"microphone": "麥克風",
|
"Stop sharing screen": "停止分享螢幕畫面",
|
||||||
"password": "密碼",
|
"Spotlight": "聚焦",
|
||||||
"profile": "個人檔案",
|
"Speaker {{n}}": "發言者{{n}}",
|
||||||
"settings": "設定",
|
"Speaker": "發言者",
|
||||||
"unencrypted": "未加密",
|
"Spatial audio": "空間音效",
|
||||||
"username": "使用者名稱",
|
"Sign out": "登出",
|
||||||
"video": "視訊"
|
"Sign in": "登入",
|
||||||
},
|
"Show call inspector": "顯示通話稽查員",
|
||||||
"disconnected_banner": "到伺服器的連線已遺失。",
|
"Share screen": "分享畫面",
|
||||||
"exit_fullscreen_button_label": "退出全螢幕",
|
"Settings": "設定",
|
||||||
"full_screen_view_description": "<0>送出除錯紀錄,可幫助我們修正問題。</0>",
|
"Sending…": "傳送中…",
|
||||||
"full_screen_view_h1": "<0>喔喔,有些地方怪怪的。</0>",
|
"Sending debug logs…": "傳送除錯記錄檔中…",
|
||||||
"fullscreen_button_label": "全螢幕",
|
"Send debug logs": "傳送除錯紀錄",
|
||||||
"group_call_loader_failed_heading": "找不到通話",
|
"Select an option": "選擇一個選項",
|
||||||
"group_call_loader_failed_text": "通話現在是端對端加密的,必須從首頁建立。這有助於確保每個人都使用相同的加密金鑰。",
|
"Saving…": "儲存中…",
|
||||||
"hangup_button_label": "結束通話",
|
"Save": "儲存",
|
||||||
"header_label": "Element Call 首頁",
|
"Return to home screen": "回到首頁",
|
||||||
"header_participants_label": "參與者",
|
"Remove": "移除",
|
||||||
"invite_modal": {
|
"Release to stop": "放開以停止",
|
||||||
"link_copied_toast": "連結已複製到剪貼簿",
|
"Release spacebar key to stop": "放開空白鍵以停止",
|
||||||
"title": "邀請到此通話"
|
"Registering…": "註冊中…",
|
||||||
},
|
"Register": "註冊",
|
||||||
"join_existing_call_modal": {
|
"Recaptcha not loaded": "驗證碼未載入",
|
||||||
"join_button": "是,加入對話",
|
"Recaptcha dismissed": "略過驗證碼",
|
||||||
"text": "通話已經開始,請問您要加入嗎?",
|
"Profile": "個人檔案",
|
||||||
"title": "加入已開始的通話嗎?"
|
"Press and hold to talk over {{name}}": "與{{name}}對話時,請按住按鍵",
|
||||||
},
|
"Press and hold to talk": "請按住按鍵來發言",
|
||||||
"layout_grid_label": "網格",
|
"Press and hold spacebar to talk over {{name}}": "與{{name}}對話時,請按住空白鍵",
|
||||||
"layout_spotlight_label": "聚焦",
|
"Press and hold spacebar to talk": "說話時請按住空白鍵",
|
||||||
"lobby": {
|
"Passwords must match": "密碼必須相符",
|
||||||
"join_button": "加入通話",
|
"Password": "密碼",
|
||||||
"leave_button": "回到最近的通話"
|
"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>",
|
||||||
"local_volume_label": "您的音量",
|
"Not now, return to home screen": "現在不行,回到首頁",
|
||||||
"logging_in": "登入中…",
|
"No": "否",
|
||||||
"login_auth_links": "<0>建立帳號</0> 或<2>以訪客身份登入</2>",
|
"Mute microphone": "麥克風靜音",
|
||||||
"login_title": "登入",
|
"More menu": "更多選單",
|
||||||
"microphone_off": "麥克風關閉",
|
"More": "更多",
|
||||||
"microphone_on": "麥克風開啟",
|
"Microphone permissions needed to join the call.": "加入通話前需要取得麥克風的權限。",
|
||||||
"mute_microphone_button_label": "將麥克風靜音",
|
"Microphone {{n}}": "麥克風 {{n}}",
|
||||||
"rageshake_button_error_caption": "重試傳送紀錄檔",
|
"Microphone": "麥克風",
|
||||||
"rageshake_request_modal": {
|
"Login to your account": "登入您的帳號",
|
||||||
"body": "這通對話中的另一位使用者遇到了某些問題。為了診斷問題,我們將會建立除錯紀錄。",
|
"Login": "登入",
|
||||||
"title": "請求偵錯報告"
|
"Logging in…": "登入中…",
|
||||||
},
|
"Local volume": "您的音量",
|
||||||
"rageshake_send_logs": "傳送除錯紀錄",
|
"Loading…": "載入中…",
|
||||||
"rageshake_sending": "傳送中…",
|
"Loading room…": "載入聊天室…",
|
||||||
"rageshake_sending_logs": "傳送除錯記錄檔中…",
|
"Leave": "離開",
|
||||||
"rageshake_sent": "感謝!",
|
"Join existing call?": "加入已開始的通話嗎?",
|
||||||
"recaptcha_caption": "此網站被 ReCAPTCHA 保護,並適用 Google 的<2>隱私權政策</2>與<6>服務條款</6>。<9></9>點擊「註冊」即表示您同意我們的<12>終端使用者授權協議 (EULA)</12>",
|
"Join call now": "現在加入通話",
|
||||||
"recaptcha_dismissed": "略過驗證碼",
|
"Join call": "加入通話",
|
||||||
"recaptcha_not_loaded": "驗證碼未載入",
|
"Invite people": "邀請夥伴",
|
||||||
"register": {
|
"Invite": "邀請",
|
||||||
"passwords_must_match": "密碼必須相符",
|
"Inspector": "稽查員",
|
||||||
"registering": "註冊中…"
|
"Incompatible versions!": "不相容版本!",
|
||||||
},
|
"Incompatible versions": "不相容版本",
|
||||||
"register_auth_links": "<0>已經有帳號?</0><1><0>登入</0> 或<2>以訪客身份登入</2></1>",
|
"Include debug logs": "包含除錯紀錄",
|
||||||
"register_confirm_password_label": "確認密碼",
|
"Home": "首頁",
|
||||||
"return_home_button": "回到首頁",
|
"Having trouble? Help us fix it.": "遇到問題嗎?請讓我們協助您。",
|
||||||
"room_auth_view_eula_caption": "點擊「立刻加入通話」即表示您同意我們的<2>終端使用者授權協議 (EULA)</2>",
|
"Grid layout menu": "格框式清單",
|
||||||
"room_auth_view_join_button": "現在加入通話",
|
"Go": "前往",
|
||||||
"screenshare_button_label": "分享畫面",
|
"Full screen": "全螢幕",
|
||||||
"select_input_unset_button": "選擇一個選項",
|
"Freedom": "自由",
|
||||||
"settings": {
|
"Fetching group call timed out.": "加入群組對話已逾時。",
|
||||||
"developer_settings_label": "開發者設定",
|
"Exit full screen": "退出全螢幕",
|
||||||
"developer_settings_label_description": "在設定視窗中顯示開發者設定。",
|
"Element Call Home": "Element Call 首頁",
|
||||||
"developer_tab_title": "開發者",
|
"Download debug logs": "下載偵錯報告",
|
||||||
"feedback_tab_body": "若您遇到問題或只是想提供一些回饋,請在下方傳送簡短說明給我們。",
|
"Display name": "顯示名稱",
|
||||||
"feedback_tab_description_label": "您的回饋",
|
"Developer": "開發者",
|
||||||
"feedback_tab_h4": "遞交回覆",
|
"Details": "詳細說明",
|
||||||
"feedback_tab_send_logs_label": "包含除錯紀錄",
|
"Description (optional)": "描述(選擇性)",
|
||||||
"feedback_tab_thank_you": "感謝,我們已經收到您的回饋了!",
|
"Debug log request": "請求偵錯報告",
|
||||||
"feedback_tab_title": "回饋",
|
"Debug log": "除錯紀錄",
|
||||||
"more_tab_title": "更多",
|
"Create account": "建立帳號",
|
||||||
"opt_in_description": "<0></0><1></1>您可以透過取消核取此方塊來撤回同意。若您目前正在通話中,此設定將在通話結束時生效。",
|
"Copy and share this call link": "複製並分享通話連結",
|
||||||
"show_connection_stats_label": "顯示連線統計資料",
|
"Copy": "複製",
|
||||||
"speaker_device_selection_label": "發言者"
|
"Copied!": "已複製!",
|
||||||
},
|
"Connection lost": "連線中斷",
|
||||||
"star_rating_input_label_one": "{{count}} 個星星",
|
"Confirm password": "確認密碼",
|
||||||
"star_rating_input_label_other": "{{count}} 個星星",
|
"Close": "關閉",
|
||||||
"start_new_call": "開始新通話",
|
"Change layout": "變更排列",
|
||||||
"start_video_button_label": "開始影片",
|
"Camera/microphone permissions needed to join the call.": "加入通話需要取得相機/麥克風的權限。",
|
||||||
"stop_screenshare_button_label": "分享畫面",
|
"Camera {{n}}": "相機 {{n}}",
|
||||||
"stop_video_button_label": "停止影片",
|
"Camera": "相機",
|
||||||
"submitting": "正在遞交……",
|
"Call type menu": "通話類型選單",
|
||||||
"unauthenticated_view_body": "還沒註冊嗎?<2>建立帳號</2>",
|
"Call link copied": "已複製通話連結",
|
||||||
"unauthenticated_view_eula_caption": "點擊「前往」即表示您同意我們的<2>終端使用者授權協議 (EULA)</2>",
|
"By clicking \"Join call now\", you agree to our <2>Terms and conditions</2>": "當您按下「加入通話」,您也同時同意了我們的條款與細則",
|
||||||
"unauthenticated_view_login_button": "登入您的帳號",
|
"By clicking \"Go\", you agree to our <2>Terms and conditions</2>": "當您按下「前往」,你也同意了我們的條款與細則",
|
||||||
"unmute_microphone_button_label": "將麥克風取消靜音",
|
"Avatar": "大頭照",
|
||||||
"version": "版本: {{version}}",
|
"Audio": "語音",
|
||||||
"video_tile": {
|
"Another user on this call is having an issue. In order to better diagnose these issues we'd like to collect a debug log.": "這通對話中的另一位使用者遇到了某些問題。為了診斷問題,我們將會建立除錯紀錄。",
|
||||||
"presenter_label": "{{displayName}} 正在展示",
|
"Accept microphone permissions to join the call.": "請授權使用您的麥克風以加入通話。",
|
||||||
"sfu_participant_local": "您"
|
"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>",
|
||||||
"waiting_for_participants": "等待其他參加者…"
|
"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>.": "參與此測試版即表示您同意蒐集匿名資料,我們使用這些資料來改進產品。您可以在我們的<2>隱私政策</2>與我們的 <5>Cookie 政策</5> 中找到關於我們追蹤哪些資料的更多資訊。",
|
||||||
|
"<0></0><1></1>You may withdraw consent by unchecking this box. If you are currently in a call, this setting will take effect at the end of the call.": "<0></0><1></1>您可以透過取消核取此方塊來撤回同意。若您目前正在通話中,此設定將在通話結束時生效。"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"extends": ["config:base"],
|
|
||||||
"packageRules": [
|
|
||||||
{
|
|
||||||
"description": "Disable renoavte for packages we want to monitor ourselves",
|
|
||||||
"matchPackagePatterns": ["matrix-js-sdk"],
|
|
||||||
"enabled": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"ignoreDeps": [
|
|
||||||
"@react-aria/button",
|
|
||||||
"@react-aria/focus",
|
|
||||||
"@react-aria/menu",
|
|
||||||
"@react-aria/overlays",
|
|
||||||
"@react-aria/select",
|
|
||||||
"@react-aria/tabs",
|
|
||||||
"@react-aria/tooltip",
|
|
||||||
"@react-aria/utils",
|
|
||||||
"@react-stately/collections",
|
|
||||||
"@react-stately/select",
|
|
||||||
"@react-stately/tooltip",
|
|
||||||
"@react-stately/tree"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
29
src/@types/i18next.d.ts
vendored
29
src/@types/i18next.d.ts
vendored
@@ -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;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
114
src/App.tsx
114
src/App.tsx
@@ -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,55 +14,30 @@ 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, useEffect, useState } 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 { OverlayProvider } from "@react-aria/overlays";
|
import { OverlayProvider } from "@react-aria/overlays";
|
||||||
import { History } from "history";
|
|
||||||
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 { usePageFocusStyle } from "./usePageFocusStyle";
|
||||||
|
import { SequenceDiagramViewerPage } from "./SequenceDiagramViewerPage";
|
||||||
|
import { InspectorContextProvider } from "./room/GroupCallInspector";
|
||||||
import { CrashView, LoadingView } from "./FullScreenView";
|
import { CrashView, LoadingView } from "./FullScreenView";
|
||||||
import { DisconnectedBanner } from "./DisconnectedBanner";
|
|
||||||
import { Initializer } from "./initializer";
|
import { Initializer } from "./initializer";
|
||||||
import { MediaDevicesProvider } from "./livekit/MediaDevicesContext";
|
|
||||||
|
|
||||||
const SentryRoute = Sentry.withSentryRouting(Route);
|
const SentryRoute = Sentry.withSentryRouting(Route);
|
||||||
|
|
||||||
interface BackgroundProviderProps {
|
|
||||||
children: JSX.Element;
|
|
||||||
}
|
|
||||||
|
|
||||||
const BackgroundProvider: FC<BackgroundProviderProps> = ({ children }) => {
|
|
||||||
const { pathname } = useLocation();
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
let backgroundImage = "";
|
|
||||||
if (!["/login", "/register"].includes(pathname)) {
|
|
||||||
backgroundImage = "var(--background-gradient)";
|
|
||||||
}
|
|
||||||
|
|
||||||
document.getElementsByTagName("body")[0].style.backgroundImage =
|
|
||||||
backgroundImage;
|
|
||||||
}, [pathname]);
|
|
||||||
|
|
||||||
return <>{children}</>;
|
|
||||||
};
|
|
||||||
|
|
||||||
interface AppProps {
|
interface AppProps {
|
||||||
history: History;
|
history: History;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const App: FC<AppProps> = ({ history }) => {
|
export default function App({ history }: AppProps) {
|
||||||
const [loaded, setLoaded] = useState(false);
|
const [loaded, setLoaded] = useState(false);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -71,45 +46,46 @@ export const App: FC<AppProps> = ({ history }) => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
usePageFocusStyle();
|
||||||
|
|
||||||
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>
|
{loaded ? (
|
||||||
<TooltipProvider>
|
<Suspense fallback={null}>
|
||||||
{loaded ? (
|
<ClientProvider>
|
||||||
<Suspense fallback={null}>
|
<InspectorContextProvider>
|
||||||
<ClientProvider>
|
<Sentry.ErrorBoundary fallback={errorPage}>
|
||||||
<MediaDevicesProvider>
|
<OverlayProvider>
|
||||||
<Sentry.ErrorBoundary fallback={errorPage}>
|
<Switch>
|
||||||
<OverlayProvider>
|
<SentryRoute exact path="/">
|
||||||
<DisconnectedBanner />
|
<HomePage />
|
||||||
<Switch>
|
</SentryRoute>
|
||||||
<SentryRoute exact path="/">
|
<SentryRoute exact path="/login">
|
||||||
<HomePage />
|
<LoginPage />
|
||||||
</SentryRoute>
|
</SentryRoute>
|
||||||
<SentryRoute exact path="/login">
|
<SentryRoute exact path="/register">
|
||||||
<LoginPage />
|
<RegisterPage />
|
||||||
</SentryRoute>
|
</SentryRoute>
|
||||||
<SentryRoute exact path="/register">
|
<SentryRoute path="/room/:roomId?">
|
||||||
<RegisterPage />
|
<RoomPage />
|
||||||
</SentryRoute>
|
</SentryRoute>
|
||||||
<SentryRoute path="*">
|
<SentryRoute path="/inspector">
|
||||||
<RoomPage />
|
<SequenceDiagramViewerPage />
|
||||||
</SentryRoute>
|
</SentryRoute>
|
||||||
</Switch>
|
<SentryRoute path="*">
|
||||||
</OverlayProvider>
|
<RoomRedirect />
|
||||||
</Sentry.ErrorBoundary>
|
</SentryRoute>
|
||||||
</MediaDevicesProvider>
|
</Switch>
|
||||||
</ClientProvider>
|
</OverlayProvider>
|
||||||
</Suspense>
|
</Sentry.ErrorBoundary>
|
||||||
) : (
|
</InspectorContextProvider>
|
||||||
<LoadingView />
|
</ClientProvider>
|
||||||
)}
|
</Suspense>
|
||||||
</TooltipProvider>
|
) : (
|
||||||
</BackgroundProvider>
|
<LoadingView />
|
||||||
|
)}
|
||||||
</Router>
|
</Router>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
|||||||
76
src/Avatar.module.css
Normal file
76
src/Avatar.module.css
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
/*
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
.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;
|
||||||
|
}
|
||||||
107
src/Avatar.tsx
107
src/Avatar.tsx
@@ -14,11 +14,24 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { useMemo, FC } from "react";
|
import React, { useMemo, CSSProperties } from "react";
|
||||||
import { Avatar as CompoundAvatar } from "@vector-im/compound-web";
|
import classNames from "classnames";
|
||||||
|
import { MatrixClient } from "matrix-js-sdk/src/client";
|
||||||
|
|
||||||
import { getAvatarUrl } from "./matrix-utils";
|
import { getAvatarUrl } from "./matrix-utils";
|
||||||
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 +49,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>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -14,27 +14,26 @@ 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 { ClientEvent, MatrixClient } from "matrix-js-sdk/src/client";
|
import { 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 { ErrorView } from "./FullScreenView";
|
import { ErrorView } from "./FullScreenView";
|
||||||
import {
|
import {
|
||||||
|
initClient,
|
||||||
CryptoStoreIntegrityError,
|
CryptoStoreIntegrityError,
|
||||||
fallbackICEServerAllowed,
|
fallbackICEServerAllowed,
|
||||||
initClient,
|
|
||||||
} from "./matrix-utils";
|
} from "./matrix-utils";
|
||||||
import { widget } from "./widget";
|
import { widget } from "./widget";
|
||||||
import {
|
import {
|
||||||
@@ -48,354 +47,7 @@ import { Config } from "./config/Config";
|
|||||||
declare global {
|
declare global {
|
||||||
interface Window {
|
interface Window {
|
||||||
matrixclient: MatrixClient;
|
matrixclient: MatrixClient;
|
||||||
passwordlessUser: boolean;
|
isPasswordlessUser: 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 () => {
|
|
||||||
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 = {
|
|
||||||
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 CryptoStoreIntegrityError) {
|
|
||||||
// We can't use this session anymore, so let's log it out
|
|
||||||
try {
|
|
||||||
const client = await initClient(initClientParams, 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, " +
|
|
||||||
err +
|
|
||||||
"either",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
/* eslint-enable camelcase */
|
|
||||||
} catch (err) {
|
|
||||||
clearSession();
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -407,20 +59,301 @@ export interface Session {
|
|||||||
tempPassword?: string;
|
tempPassword?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const clearSession = (): void => localStorage.removeItem("matrix-auth-store");
|
const loadChannel =
|
||||||
const saveSession = (s: Session): void =>
|
"BroadcastChannel" in window ? new BroadcastChannel("load") : null;
|
||||||
localStorage.setItem("matrix-auth-store", JSON.stringify(s));
|
|
||||||
const loadSession = (): Session | undefined => {
|
const loadSession = (): Session => {
|
||||||
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: Config.defaultHomeserverUrl(),
|
||||||
|
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: Config.defaultHomeserverUrl(),
|
||||||
|
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("/");
|
||||||
|
PosthogAnalytics.instance.setRegistrationType(RegistrationType.Guest);
|
||||||
|
}, [history, 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({});
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEventTarget(
|
||||||
|
loadChannel,
|
||||||
|
"message",
|
||||||
|
useCallback(() => {
|
||||||
|
client?.stopClient();
|
||||||
|
|
||||||
|
setState((prev) => ({
|
||||||
|
...prev,
|
||||||
|
error: translatedError(
|
||||||
|
"This application has been opened in another tab.",
|
||||||
|
t
|
||||||
|
),
|
||||||
|
}));
|
||||||
|
}, [client, setState, 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;
|
||||||
|
window.isPasswordlessUser = isPasswordlessUser;
|
||||||
|
|
||||||
|
if (PosthogAnalytics.hasInstance())
|
||||||
|
PosthogAnalytics.instance.onLoginStatusChanged();
|
||||||
|
}, [client, isPasswordlessUser]);
|
||||||
|
|
||||||
|
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";
|
|
||||||
|
|||||||
@@ -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>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2023 New Vector Ltd
|
Copyright 2022 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,14 +14,29 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.banner {
|
.facepile {
|
||||||
position: absolute;
|
width: 100%;
|
||||||
padding: 29px;
|
position: relative;
|
||||||
background-color: var(--cpd-color-bg-subtle-primary);
|
}
|
||||||
vertical-align: middle;
|
|
||||||
font-size: var(--font-size-body);
|
.facepile.xs {
|
||||||
text-align: center;
|
height: 24px;
|
||||||
z-index: 1;
|
}
|
||||||
top: 76px;
|
|
||||||
width: calc(100% - 58px);
|
.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;
|
||||||
}
|
}
|
||||||
97
src/Facepile.tsx
Normal file
97
src/Facepile.tsx
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
/*
|
||||||
|
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;
|
||||||
|
members: RoomMember[];
|
||||||
|
max?: number;
|
||||||
|
size?: Size;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function Facepile({
|
||||||
|
className,
|
||||||
|
client,
|
||||||
|
members,
|
||||||
|
max = 3,
|
||||||
|
size = Size.XS,
|
||||||
|
...rest
|
||||||
|
}: Props) {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
|
||||||
|
const _size = sizes.get(size);
|
||||||
|
const _overlap = overlapMap[size];
|
||||||
|
|
||||||
|
const title = useMemo(() => {
|
||||||
|
return members.reduce<string | null>(
|
||||||
|
(prev, curr) =>
|
||||||
|
prev === null
|
||||||
|
? curr.name
|
||||||
|
: t("{{names}}, {{name}}", { names: prev, name: curr.name }),
|
||||||
|
null
|
||||||
|
) as string;
|
||||||
|
}, [members, t]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className={classNames(styles.facepile, styles[size], className)}
|
||||||
|
title={title}
|
||||||
|
style={{
|
||||||
|
width:
|
||||||
|
Math.min(members.length, max + 1) * (_size - _overlap) + _overlap,
|
||||||
|
}}
|
||||||
|
{...rest}
|
||||||
|
>
|
||||||
|
{members.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) }}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
{members.length > max && (
|
||||||
|
<Avatar
|
||||||
|
key="additional"
|
||||||
|
size={size}
|
||||||
|
fallback={`+${members.length - max}`}
|
||||||
|
className={styles.avatar}
|
||||||
|
style={{ left: max * (_size - _overlap) }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -14,29 +14,25 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { FC, ReactNode, useCallback, useEffect } from "react";
|
import React, { 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 { Header, HeaderLogo, LeftNav, RightNav } from "./Header";
|
import { Header, HeaderLogo, LeftNav, RightNav } from "./Header";
|
||||||
import { LinkButton, Button } 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 { Config } from "./config/Config";
|
||||||
import { RageshakeButton } from "./settings/RageshakeButton";
|
|
||||||
|
|
||||||
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,
|
|
||||||
}) => {
|
|
||||||
return (
|
return (
|
||||||
<div className={classNames(styles.page, className)}>
|
<div className={classNames(styles.page, className)}>
|
||||||
<Header>
|
<Header>
|
||||||
@@ -50,19 +46,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 { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
logger.error(error);
|
console.error(error);
|
||||||
Sentry.captureException(error);
|
|
||||||
}, [error]);
|
}, [error]);
|
||||||
|
|
||||||
const onReload = useCallback(() => {
|
const onReload = useCallback(() => {
|
||||||
@@ -71,13 +66,12 @@ 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 === "/" ? (
|
{location.pathname === "/" ? (
|
||||||
<Button
|
<Button
|
||||||
size="lg"
|
size="lg"
|
||||||
@@ -85,7 +79,7 @@ export const ErrorView: FC<ErrorViewProps> = ({ error }) => {
|
|||||||
className={styles.homeLink}
|
className={styles.homeLink}
|
||||||
onPress={onReload}
|
onPress={onReload}
|
||||||
>
|
>
|
||||||
{t("return_home_button")}
|
{t("Return to home screen")}
|
||||||
</Button>
|
</Button>
|
||||||
) : (
|
) : (
|
||||||
<LinkButton
|
<LinkButton
|
||||||
@@ -94,50 +88,79 @@ export const ErrorView: FC<ErrorViewProps> = ({ error }) => {
|
|||||||
className={styles.homeLink}
|
className={styles.homeLink}
|
||||||
to="/"
|
to="/"
|
||||||
>
|
>
|
||||||
{t("return_home_button")}
|
{t("Return to home screen")}
|
||||||
</LinkButton>
|
</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 if (Config.get().rageshake?.submit_url) {
|
||||||
|
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>
|
||||||
</Trans>
|
</Trans>
|
||||||
{Config.get().rageshake?.submit_url && (
|
{Config.get().rageshake?.submit_url && (
|
||||||
<Trans i18nKey="full_screen_view_description">
|
<Trans>
|
||||||
<p>Submitting debug logs will help us track down the problem.</p>
|
<p>Submitting debug logs will help us track down the problem.</p>
|
||||||
</Trans>
|
</Trans>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<RageshakeButton description="***Soft Crash***" />
|
<div className={styles.sendLogsSection}>{logsComponent}</div>
|
||||||
|
{error && (
|
||||||
|
<ErrorMessage error={translatedError("Couldn't send debug logs!", t)} />
|
||||||
|
)}
|
||||||
<Button
|
<Button
|
||||||
size="lg"
|
size="lg"
|
||||||
variant="default"
|
variant="default"
|
||||||
className={styles.wideButton}
|
className={styles.wideButton}
|
||||||
onPress={onReload}
|
onPress={onReload}
|
||||||
>
|
>
|
||||||
{t("return_home_button")}
|
{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>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
|||||||
@@ -21,7 +21,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,7 +28,8 @@ 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 {
|
||||||
@@ -66,55 +66,81 @@ 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;
|
|
||||||
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;
|
||||||
/* XXX I can't actually get this ellipsis overflow to trigger, because
|
|
||||||
constraint propagation in a nested flexbox layout is a massive pain */
|
|
||||||
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;
|
||||||
display: flex;
|
}
|
||||||
align-items: center;
|
|
||||||
gap: var(--cpd-space-1-5x);
|
.versionMismatchWarning::before {
|
||||||
|
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;
|
||||||
@@ -123,4 +149,8 @@ limitations under the License.
|
|||||||
.leftNav h3 {
|
.leftNav h3 {
|
||||||
font-size: var(--font-size-subtitle);
|
font-size: var(--font-size-subtitle);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav {
|
||||||
|
height: 76px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
106
src/Header.stories.jsx
Normal file
106
src/Header.stories.jsx
Normal 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>
|
||||||
|
);
|
||||||
169
src/Header.tsx
169
src/Header.tsx
@@ -15,30 +15,35 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import classNames from "classnames";
|
import classNames from "classnames";
|
||||||
import { FC, HTMLAttributes, ReactNode } 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/icons/user-profile.svg?react";
|
|
||||||
|
|
||||||
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: FC<HeaderProps> = ({ children, className, ...rest }) => {
|
export function Header({ children, className, ...rest }: HeaderProps) {
|
||||||
return (
|
return (
|
||||||
<header className={classNames(styles.header, className)} {...rest}>
|
<header className={classNames(styles.header, className)} {...rest}>
|
||||||
{children}
|
{children}
|
||||||
</header>
|
</header>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
|
||||||
interface LeftNavProps extends HTMLAttributes<HTMLElement> {
|
interface LeftNavProps extends HTMLAttributes<HTMLElement> {
|
||||||
children: ReactNode;
|
children: ReactNode;
|
||||||
@@ -46,26 +51,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;
|
||||||
@@ -73,95 +78,125 @@ 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();
|
const { t } = useTranslation();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
className={classNames(styles.headerLogo, className)}
|
className={classNames(styles.headerLogo, className)}
|
||||||
to="/"
|
to="/"
|
||||||
aria-label={t("header_label")}
|
aria-label={t("Element Call Home")}
|
||||||
>
|
>
|
||||||
<Logo />
|
<Logo />
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
};
|
|
||||||
|
|
||||||
interface RoomHeaderInfoProps {
|
|
||||||
id: string;
|
|
||||||
name: string;
|
|
||||||
avatarUrl: string | null;
|
|
||||||
encrypted: boolean;
|
|
||||||
participantCount: number;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
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 && (
|
|
||||||
<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 })}
|
|
||||||
</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>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|||||||
60
src/IncompatibleVersionModal.tsx
Normal file
60
src/IncompatibleVersionModal.tsx
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
/*
|
||||||
|
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;
|
||||||
|
onClose: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const IncompatibleVersionModal: React.FC<Props> = ({
|
||||||
|
userIds,
|
||||||
|
room,
|
||||||
|
onClose,
|
||||||
|
...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
|
||||||
|
onClose={onClose}
|
||||||
|
{...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>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,8 +21,8 @@ limitations under the License.
|
|||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: 1px solid var(--cpd-color-border-interactive-secondary);
|
border: 1px solid var(--quinary-content);
|
||||||
background-color: var(--cpd-color-bg-canvas-default);
|
background-color: var(--background);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ limitations under the License.
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: var(--cpd-color-text-primary);
|
color: var(--primary-content);
|
||||||
padding: 8px 16px;
|
padding: 8px 16px;
|
||||||
outline: none;
|
outline: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -44,6 +44,6 @@ limitations under the License.
|
|||||||
}
|
}
|
||||||
|
|
||||||
.option.disabled {
|
.option.disabled {
|
||||||
color: var(--cpd-color-text-disabled);
|
color: var(--quaternary-content);
|
||||||
background-color: var(--stopgap-bgColor3);
|
background-color: var(--bgColor3);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,13 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import {
|
import React, { useCallback, useRef } from "react";
|
||||||
MutableRefObject,
|
|
||||||
PointerEvent,
|
|
||||||
ReactNode,
|
|
||||||
useCallback,
|
|
||||||
useRef,
|
|
||||||
} from "react";
|
|
||||||
import { useListBox, useOption, AriaListBoxOptions } from "@react-aria/listbox";
|
import { useListBox, useOption, AriaListBoxOptions } from "@react-aria/listbox";
|
||||||
import { ListState } from "@react-stately/list";
|
import { ListState } from "@react-stately/list";
|
||||||
import { Node } from "@react-types/shared";
|
import { Node } from "@react-types/shared";
|
||||||
@@ -32,7 +26,7 @@ interface ListBoxProps<T> extends AriaListBoxOptions<T> {
|
|||||||
optionClassName: string;
|
optionClassName: string;
|
||||||
state: ListState<T>;
|
state: ListState<T>;
|
||||||
className?: string;
|
className?: string;
|
||||||
listBoxRef?: MutableRefObject<HTMLUListElement>;
|
listBoxRef?: React.MutableRefObject<HTMLUListElement>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function ListBox<T>({
|
export function ListBox<T>({
|
||||||
@@ -41,17 +35,16 @@ export function ListBox<T>({
|
|||||||
className,
|
className,
|
||||||
listBoxRef,
|
listBoxRef,
|
||||||
...rest
|
...rest
|
||||||
}: ListBoxProps<T>): ReactNode {
|
}: ListBoxProps<T>) {
|
||||||
const ref = useRef<HTMLUListElement>(null);
|
const ref = useRef<HTMLUListElement>();
|
||||||
|
if (!listBoxRef) listBoxRef = ref;
|
||||||
|
|
||||||
const listRef = listBoxRef ?? ref;
|
const { listBoxProps } = useListBox(rest, state, listBoxRef);
|
||||||
|
|
||||||
const { listBoxProps } = useListBox(rest, state, listRef);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ul
|
<ul
|
||||||
{...listBoxProps}
|
{...listBoxProps}
|
||||||
ref={listRef}
|
ref={listBoxRef}
|
||||||
className={classNames(styles.listBox, className)}
|
className={classNames(styles.listBox, className)}
|
||||||
>
|
>
|
||||||
{[...state.collection].map((item) => (
|
{[...state.collection].map((item) => (
|
||||||
@@ -72,12 +65,12 @@ interface OptionProps<T> {
|
|||||||
item: Node<T>;
|
item: Node<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
function Option<T>({ item, state, className }: OptionProps<T>): ReactNode {
|
function Option<T>({ item, state, className }: OptionProps<T>) {
|
||||||
const ref = useRef(null);
|
const ref = useRef();
|
||||||
const { optionProps, isSelected, isFocused, isDisabled } = useOption(
|
const { optionProps, isSelected, isFocused, isDisabled } = useOption(
|
||||||
{ key: item.key },
|
{ key: item.key },
|
||||||
state,
|
state,
|
||||||
ref,
|
ref
|
||||||
);
|
);
|
||||||
|
|
||||||
// Hack: remove the onPointerUp event handler and re-wire it to
|
// Hack: remove the onPointerUp event handler and re-wire it to
|
||||||
@@ -90,14 +83,10 @@ function Option<T>({ item, state, className }: OptionProps<T>): ReactNode {
|
|||||||
const origPointerUp = optionProps.onPointerUp;
|
const origPointerUp = optionProps.onPointerUp;
|
||||||
delete optionProps.onPointerUp;
|
delete optionProps.onPointerUp;
|
||||||
optionProps.onClick = useCallback(
|
optionProps.onClick = useCallback(
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
||||||
// @ts-ignore
|
|
||||||
(e) => {
|
(e) => {
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
origPointerUp(e as unknown as React.PointerEvent<HTMLElement>);
|
||||||
// @ts-ignore
|
|
||||||
origPointerUp(e as unknown as PointerEvent<HTMLElement>);
|
|
||||||
},
|
},
|
||||||
[origPointerUp],
|
[origPointerUp]
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ limitations under the License.
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0 12px;
|
padding: 0 12px;
|
||||||
color: var(--cpd-color-text-primary);
|
color: var(--primary-content);
|
||||||
font-size: var(--font-size-body);
|
font-size: var(--font-size-body);
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@@ -44,11 +44,7 @@ limitations under the License.
|
|||||||
|
|
||||||
.menuItem.focused,
|
.menuItem.focused,
|
||||||
.menuItem:hover {
|
.menuItem:hover {
|
||||||
background-color: var(--cpd-color-bg-action-secondary-hovered);
|
background-color: var(--quinary-content);
|
||||||
}
|
|
||||||
|
|
||||||
.menuItem:active {
|
|
||||||
background-color: var(--cpd-color-bg-action-secondary-pressed);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.menuItem.focused:first-child,
|
.menuItem.focused:first-child,
|
||||||
@@ -69,5 +65,5 @@ limitations under the License.
|
|||||||
}
|
}
|
||||||
|
|
||||||
.checkIcon * {
|
.checkIcon * {
|
||||||
stroke: var(--cpd-color-text-primary);
|
stroke: var(--primary-content);
|
||||||
}
|
}
|
||||||
|
|||||||
21
src/Menu.tsx
21
src/Menu.tsx
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { Key, ReactNode, useRef, useState } from "react";
|
import React, { Key, useRef, useState } from "react";
|
||||||
import { AriaMenuOptions, useMenu, useMenuItem } from "@react-aria/menu";
|
import { AriaMenuOptions, useMenu, useMenuItem } from "@react-aria/menu";
|
||||||
import { TreeState, useTreeState } from "@react-stately/tree";
|
import { TreeState, useTreeState } from "@react-stately/tree";
|
||||||
import { mergeProps } from "@react-aria/utils";
|
import { mergeProps } from "@react-aria/utils";
|
||||||
@@ -25,8 +25,8 @@ import { Node } from "@react-types/shared";
|
|||||||
import styles from "./Menu.module.css";
|
import styles from "./Menu.module.css";
|
||||||
|
|
||||||
interface MenuProps<T> extends AriaMenuOptions<T> {
|
interface MenuProps<T> extends AriaMenuOptions<T> {
|
||||||
className?: string;
|
className?: String;
|
||||||
onClose: () => void;
|
onClose?: () => void;
|
||||||
onAction: (value: Key) => void;
|
onAction: (value: Key) => void;
|
||||||
label?: string;
|
label?: string;
|
||||||
}
|
}
|
||||||
@@ -37,9 +37,9 @@ export function Menu<T extends object>({
|
|||||||
onClose,
|
onClose,
|
||||||
label,
|
label,
|
||||||
...rest
|
...rest
|
||||||
}: MenuProps<T>): ReactNode {
|
}: MenuProps<T>) {
|
||||||
const state = useTreeState<T>({ ...rest, selectionMode: "none" });
|
const state = useTreeState<T>({ ...rest, selectionMode: "none" });
|
||||||
const menuRef = useRef(null);
|
const menuRef = useRef();
|
||||||
const { menuProps } = useMenu<T>(rest, state, menuRef);
|
const { menuProps } = useMenu<T>(rest, state, menuRef);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -68,13 +68,8 @@ interface MenuItemProps<T> {
|
|||||||
onClose: () => void;
|
onClose: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
function MenuItem<T>({
|
function MenuItem<T>({ item, state, onAction, onClose }: MenuItemProps<T>) {
|
||||||
item,
|
const ref = useRef();
|
||||||
state,
|
|
||||||
onAction,
|
|
||||||
onClose,
|
|
||||||
}: MenuItemProps<T>): ReactNode {
|
|
||||||
const ref = useRef(null);
|
|
||||||
const { menuItemProps } = useMenuItem(
|
const { menuItemProps } = useMenuItem(
|
||||||
{
|
{
|
||||||
key: item.key,
|
key: item.key,
|
||||||
@@ -82,7 +77,7 @@ function MenuItem<T>({
|
|||||||
onClose,
|
onClose,
|
||||||
},
|
},
|
||||||
state,
|
state,
|
||||||
ref,
|
ref
|
||||||
);
|
);
|
||||||
|
|
||||||
const [isFocused, setFocused] = useState(false);
|
const [isFocused, setFocused] = useState(false);
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2022 - 2023 New Vector Ltd
|
Copyright 2022 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,132 +14,77 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.modal {
|
.modalOverlay {
|
||||||
|
position: fixed;
|
||||||
|
z-index: 100;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
background: rgba(23, 25, 28, 0.5);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dialog {
|
|
||||||
box-sizing: border-box;
|
|
||||||
inline-size: 520px;
|
|
||||||
max-inline-size: 90%;
|
|
||||||
max-block-size: 600px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
overflow: hidden;
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dialog .content {
|
|
||||||
background: var(--cpd-color-bg-canvas-default);
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer .content {
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer {
|
|
||||||
background: var(--cpd-color-bg-canvas-default);
|
|
||||||
inset-block-end: 0;
|
|
||||||
inset-inline: max(0px, calc((100% - 520px) / 2));
|
|
||||||
max-block-size: 90%;
|
|
||||||
border-start-start-radius: var(--border-radius);
|
|
||||||
border-start-end-radius: var(--border-radius);
|
|
||||||
/* Drawer comes in the Android style by default */
|
|
||||||
--border-radius: 28px;
|
|
||||||
--handle-block-size: 4px;
|
|
||||||
--handle-inline-size: 32px;
|
|
||||||
--handle-inset-block-start: var(--cpd-space-4x);
|
|
||||||
--handle-inset-block-end: var(--cpd-space-4x);
|
|
||||||
}
|
|
||||||
|
|
||||||
body[data-platform="ios"] .drawer {
|
|
||||||
--border-radius: 10px;
|
|
||||||
--handle-block-size: 5px;
|
|
||||||
--handle-inline-size: 36px;
|
|
||||||
--handle-inset-block-start: var(--cpd-space-1-5x);
|
|
||||||
--handle-inset-block-end: calc(var(--cpd-space-1x) / 4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.close {
|
|
||||||
cursor: pointer;
|
|
||||||
color: var(--cpd-color-icon-secondary);
|
|
||||||
border-radius: var(--cpd-radius-pill-effect);
|
|
||||||
padding: var(--cpd-space-1x);
|
|
||||||
background: var(--cpd-color-bg-subtle-secondary);
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.close svg {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (hover: hover) {
|
|
||||||
.close:hover {
|
|
||||||
background: var(--cpd-color-bg-subtle-primary);
|
|
||||||
color: var(--cpd-color-icon-primary);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.close:active {
|
|
||||||
background: var(--cpd-color-bg-subtle-primary);
|
|
||||||
color: var(--cpd-color-icon-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.header {
|
|
||||||
background: var(--cpd-color-bg-subtle-secondary);
|
|
||||||
display: grid;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dialog .header {
|
|
||||||
padding-block-start: var(--cpd-space-4x);
|
|
||||||
grid-template-columns:
|
|
||||||
var(--cpd-space-10x) 1fr minmax(var(--cpd-space-6x), auto)
|
|
||||||
var(--cpd-space-4x);
|
|
||||||
grid-template-rows: auto minmax(var(--cpd-space-4x), auto);
|
|
||||||
/* TODO: Support tabs */
|
|
||||||
grid-template-areas: ". title close ." "tabs tabs tabs tabs";
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dialog .header h2 {
|
.modal {
|
||||||
grid-area: title;
|
background: #21262c;
|
||||||
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
||||||
|
border-radius: 8px;
|
||||||
|
max-width: 90vw;
|
||||||
|
width: 600px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modalHeader {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 34px 34px 0 34px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modalHeader h3 {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: var(--font-size-title);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drawer .header {
|
.closeButton {
|
||||||
grid-template-areas: "tabs";
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
background-color: transparent;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.close {
|
.content {
|
||||||
grid-area: close;
|
padding: 24px 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.body {
|
.content p {
|
||||||
flex-grow: 1;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dialog .body {
|
@media (max-width: 799px) {
|
||||||
padding-inline: var(--cpd-space-10x);
|
.modalHeader {
|
||||||
padding-block: var(--cpd-space-10x) var(--cpd-space-12x);
|
display: flex;
|
||||||
overflow: auto;
|
justify-content: space-between;
|
||||||
}
|
padding: 24px 24px 0 24px;
|
||||||
|
}
|
||||||
|
|
||||||
.drawer .body {
|
.modal.mobileFullScreen {
|
||||||
padding-inline: var(--cpd-space-4x);
|
position: fixed;
|
||||||
padding-block: var(--cpd-space-9x) var(--cpd-space-10x);
|
left: 0;
|
||||||
}
|
right: 0;
|
||||||
|
top: 0;
|
||||||
.handle {
|
bottom: 0;
|
||||||
content: "";
|
width: 100%;
|
||||||
position: absolute;
|
height: 100%;
|
||||||
block-size: var(--handle-block-size);
|
max-width: none;
|
||||||
inset-inline: calc((100% - var(--handle-inline-size)) / 2);
|
max-height: none;
|
||||||
inset-block-start: var(--handle-inset-block-start);
|
border-radius: 0;
|
||||||
background: var(--cpd-color-icon-secondary);
|
}
|
||||||
border-radius: var(--cpd-radius-pill-effect);
|
|
||||||
}
|
}
|
||||||
|
|||||||
277
src/Modal.tsx
277
src/Modal.tsx
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2023 New Vector Ltd
|
Copyright 2022 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,140 +14,191 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { FC, ReactNode, useCallback } from "react";
|
/* eslint-disable jsx-a11y/no-autofocus */
|
||||||
|
|
||||||
|
import React, { useRef, useMemo, ReactNode } from "react";
|
||||||
|
import {
|
||||||
|
useOverlay,
|
||||||
|
usePreventScroll,
|
||||||
|
useModal,
|
||||||
|
OverlayContainer,
|
||||||
|
OverlayProps,
|
||||||
|
} from "@react-aria/overlays";
|
||||||
|
import {
|
||||||
|
OverlayTriggerState,
|
||||||
|
useOverlayTriggerState,
|
||||||
|
} from "@react-stately/overlays";
|
||||||
|
import { useDialog } from "@react-aria/dialog";
|
||||||
|
import { FocusScope } from "@react-aria/focus";
|
||||||
|
import { ButtonAria, useButton } from "@react-aria/button";
|
||||||
|
import classNames from "classnames";
|
||||||
import { AriaDialogProps } from "@react-types/dialog";
|
import { AriaDialogProps } from "@react-types/dialog";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import {
|
|
||||||
Root as DialogRoot,
|
|
||||||
Portal as DialogPortal,
|
|
||||||
Overlay as DialogOverlay,
|
|
||||||
Content as DialogContent,
|
|
||||||
Title as DialogTitle,
|
|
||||||
Close as DialogClose,
|
|
||||||
} from "@radix-ui/react-dialog";
|
|
||||||
import { Drawer } from "vaul";
|
|
||||||
import { VisuallyHidden } from "@radix-ui/react-visually-hidden";
|
|
||||||
import CloseIcon from "@vector-im/compound-design-tokens/icons/close.svg?react";
|
|
||||||
import classNames from "classnames";
|
|
||||||
import { Heading, Glass } from "@vector-im/compound-web";
|
|
||||||
|
|
||||||
|
import { ReactComponent as CloseIcon } from "./icons/Close.svg";
|
||||||
import styles from "./Modal.module.css";
|
import styles from "./Modal.module.css";
|
||||||
import overlayStyles from "./Overlay.module.css";
|
|
||||||
import { useMediaQuery } from "./useMediaQuery";
|
|
||||||
|
|
||||||
// TODO: Support tabs
|
export interface ModalProps extends OverlayProps, AriaDialogProps {
|
||||||
export interface Props extends AriaDialogProps {
|
|
||||||
title: string;
|
title: string;
|
||||||
children: ReactNode;
|
children: ReactNode;
|
||||||
className?: string;
|
className?: string;
|
||||||
/**
|
mobileFullScreen?: boolean;
|
||||||
* The controlled open state of the modal.
|
onClose: () => void;
|
||||||
*/
|
|
||||||
// An option to leave the open state uncontrolled is intentionally not
|
|
||||||
// provided, since modals are always opened due to external triggers, and it
|
|
||||||
// is the author's belief that controlled components lead to more obvious code.
|
|
||||||
open: boolean;
|
|
||||||
/**
|
|
||||||
* Callback for when the user dismisses the modal. If undefined, the modal
|
|
||||||
* will be non-dismissable.
|
|
||||||
*/
|
|
||||||
onDismiss?: () => void;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export function Modal({
|
||||||
* A modal, taking the form of a drawer / bottom sheet on touchscreen devices,
|
|
||||||
* and a dialog box on desktop.
|
|
||||||
*/
|
|
||||||
export const Modal: FC<Props> = ({
|
|
||||||
title,
|
title,
|
||||||
children,
|
children,
|
||||||
className,
|
className,
|
||||||
open,
|
mobileFullScreen,
|
||||||
onDismiss,
|
onClose,
|
||||||
...rest
|
...rest
|
||||||
}) => {
|
}: ModalProps) {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
// Empirically, Chrome on Android can end up not matching (hover: none), but
|
const modalRef = useRef();
|
||||||
// still matching (pointer: coarse) :/
|
const { overlayProps, underlayProps } = useOverlay(
|
||||||
const touchscreen = useMediaQuery("(hover: none) or (pointer: coarse)");
|
{ ...rest, onClose },
|
||||||
const onOpenChange = useCallback(
|
modalRef
|
||||||
(open: boolean) => {
|
);
|
||||||
if (!open) onDismiss?.();
|
usePreventScroll();
|
||||||
|
const { modalProps } = useModal();
|
||||||
|
const { dialogProps, titleProps } = useDialog(rest, modalRef);
|
||||||
|
const closeButtonRef = useRef();
|
||||||
|
const { buttonProps: closeButtonProps } = useButton(
|
||||||
|
{
|
||||||
|
onPress: () => onClose(),
|
||||||
},
|
},
|
||||||
[onDismiss],
|
closeButtonRef
|
||||||
);
|
);
|
||||||
|
|
||||||
if (touchscreen) {
|
return (
|
||||||
return (
|
<OverlayContainer>
|
||||||
<Drawer.Root
|
<div className={styles.modalOverlay} {...underlayProps}>
|
||||||
open={open}
|
<FocusScope contain restoreFocus autoFocus>
|
||||||
onOpenChange={onOpenChange}
|
<div
|
||||||
dismissible={onDismiss !== undefined}
|
{...overlayProps}
|
||||||
>
|
{...dialogProps}
|
||||||
<Drawer.Portal>
|
{...modalProps}
|
||||||
<Drawer.Overlay className={classNames(overlayStyles.bg)} />
|
ref={modalRef}
|
||||||
<Drawer.Content
|
|
||||||
className={classNames(
|
className={classNames(
|
||||||
className,
|
|
||||||
overlayStyles.overlay,
|
|
||||||
styles.modal,
|
styles.modal,
|
||||||
styles.drawer,
|
{ [styles.mobileFullScreen]: mobileFullScreen },
|
||||||
|
className
|
||||||
)}
|
)}
|
||||||
{...rest}
|
|
||||||
>
|
>
|
||||||
<div className={styles.content}>
|
<div className={styles.modalHeader}>
|
||||||
<div className={styles.header}>
|
<h3 {...titleProps}>{title}</h3>
|
||||||
<div className={styles.handle} />
|
<button
|
||||||
<VisuallyHidden asChild>
|
{...closeButtonProps}
|
||||||
<Drawer.Title>{title}</Drawer.Title>
|
ref={closeButtonRef}
|
||||||
</VisuallyHidden>
|
className={styles.closeButton}
|
||||||
</div>
|
title={t("Close")}
|
||||||
<div className={styles.body}>{children}</div>
|
>
|
||||||
|
<CloseIcon />
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</Drawer.Content>
|
{children}
|
||||||
</Drawer.Portal>
|
</div>
|
||||||
</Drawer.Root>
|
</FocusScope>
|
||||||
);
|
</div>
|
||||||
} else {
|
</OverlayContainer>
|
||||||
return (
|
);
|
||||||
<DialogRoot open={open} onOpenChange={onOpenChange}>
|
}
|
||||||
<DialogPortal>
|
|
||||||
<DialogOverlay
|
interface ModalContentProps {
|
||||||
className={classNames(overlayStyles.bg, overlayStyles.animate)}
|
children: ReactNode;
|
||||||
/>
|
className?: string;
|
||||||
<DialogContent asChild {...rest}>
|
}
|
||||||
<Glass
|
|
||||||
className={classNames(
|
export function ModalContent({
|
||||||
className,
|
children,
|
||||||
overlayStyles.overlay,
|
className,
|
||||||
overlayStyles.animate,
|
...rest
|
||||||
styles.modal,
|
}: ModalContentProps) {
|
||||||
styles.dialog,
|
return (
|
||||||
)}
|
<div className={classNames(styles.content, className)} {...rest}>
|
||||||
>
|
{children}
|
||||||
<div className={styles.content}>
|
</div>
|
||||||
<div className={styles.header}>
|
);
|
||||||
<DialogTitle asChild>
|
}
|
||||||
<Heading as="h2" weight="semibold" size="md">
|
|
||||||
{title}
|
export function useModalTriggerState(): {
|
||||||
</Heading>
|
modalState: OverlayTriggerState;
|
||||||
</DialogTitle>
|
modalProps: { isOpen: boolean; onClose: () => void };
|
||||||
{onDismiss !== undefined && (
|
} {
|
||||||
<DialogClose
|
const modalState = useOverlayTriggerState({});
|
||||||
className={styles.close}
|
const modalProps = useMemo(
|
||||||
data-testid="modal_close"
|
() => ({ isOpen: modalState.isOpen, onClose: modalState.close }),
|
||||||
aria-label={t("action.close")}
|
[modalState]
|
||||||
>
|
);
|
||||||
<CloseIcon width={20} height={20} />
|
return { modalState, modalProps };
|
||||||
</DialogClose>
|
}
|
||||||
)}
|
|
||||||
</div>
|
export function useToggleModalButton(
|
||||||
<div className={styles.body}>{children}</div>
|
modalState: OverlayTriggerState,
|
||||||
</div>
|
ref: React.RefObject<HTMLButtonElement>
|
||||||
</Glass>
|
): ButtonAria<React.ButtonHTMLAttributes<HTMLButtonElement>> {
|
||||||
</DialogContent>
|
return useButton(
|
||||||
</DialogPortal>
|
{
|
||||||
</DialogRoot>
|
onPress: () => modalState.toggle(),
|
||||||
|
},
|
||||||
|
ref
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useOpenModalButton(
|
||||||
|
modalState: OverlayTriggerState,
|
||||||
|
ref: React.RefObject<HTMLButtonElement>
|
||||||
|
): ButtonAria<React.ButtonHTMLAttributes<HTMLButtonElement>> {
|
||||||
|
return useButton(
|
||||||
|
{
|
||||||
|
onPress: () => modalState.open(),
|
||||||
|
},
|
||||||
|
ref
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useCloseModalButton(
|
||||||
|
modalState: OverlayTriggerState,
|
||||||
|
ref: React.RefObject<HTMLButtonElement>
|
||||||
|
): ButtonAria<React.ButtonHTMLAttributes<HTMLButtonElement>> {
|
||||||
|
return useButton(
|
||||||
|
{
|
||||||
|
onPress: () => modalState.close(),
|
||||||
|
},
|
||||||
|
ref
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ModalTriggerProps {
|
||||||
|
children: ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ModalTrigger({ children }: ModalTriggerProps) {
|
||||||
|
const { modalState, modalProps } = useModalTriggerState();
|
||||||
|
const buttonRef = useRef();
|
||||||
|
const { buttonProps } = useToggleModalButton(modalState, buttonRef);
|
||||||
|
|
||||||
|
if (
|
||||||
|
!Array.isArray(children) ||
|
||||||
|
children.length > 2 ||
|
||||||
|
typeof children[1] !== "function"
|
||||||
|
) {
|
||||||
|
throw new Error(
|
||||||
|
"ModalTrigger must have two props. The first being a button and the second being a render prop."
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
const [modalTrigger, modal] = children;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<modalTrigger.type
|
||||||
|
{...modalTrigger.props}
|
||||||
|
{...buttonProps}
|
||||||
|
ref={buttonRef}
|
||||||
|
/>
|
||||||
|
{modalState.isOpen && modal(modalProps)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,97 +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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
.bg {
|
|
||||||
position: fixed;
|
|
||||||
inset: 0;
|
|
||||||
background: rgba(3, 12, 27, 0.528);
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fade-in {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg.animate[data-state="open"] {
|
|
||||||
animation: fade-in 200ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fade-out {
|
|
||||||
from {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg.animate[data-state="closed"] {
|
|
||||||
animation: fade-out 130ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
.overlay {
|
|
||||||
position: fixed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.overlay.animate {
|
|
||||||
left: 50%;
|
|
||||||
top: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes zoom-in {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translate(-50%, -50%) scale(80%);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translate(-50%, -50%) scale(100%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes zoom-out {
|
|
||||||
from {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translate(-50%, -50%) scale(100%);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translate(-50%, -50%) scale(80%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.overlay.animate[data-state="open"] {
|
|
||||||
animation: zoom-in 200ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
.overlay.animate[data-state="closed"] {
|
|
||||||
animation: zoom-out 130ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-reduced-motion) {
|
|
||||||
.overlay.animate[data-state="open"] {
|
|
||||||
animation-name: fade-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
.overlay.animate[data-state="closed"] {
|
|
||||||
animation-name: fade-out;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,38 +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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The platform on which the application is running.
|
|
||||||
*/
|
|
||||||
// The granularity of this value is kind of arbitrary: it distinguishes exactly
|
|
||||||
// the platforms that the app needs to know about in order to correctly
|
|
||||||
// implement the designs and work around platform-specific browser weirdness.
|
|
||||||
// Feel free to increase or decrease that granularity in the future as project
|
|
||||||
// requirements change.
|
|
||||||
export let platform: "android" | "ios" | "desktop";
|
|
||||||
|
|
||||||
if (/android/i.test(navigator.userAgent)) {
|
|
||||||
platform = "android";
|
|
||||||
// We include 'Mac' here and double-check for touch support because iPads on
|
|
||||||
// iOS 13 pretend to be a MacOS desktop
|
|
||||||
} else if (
|
|
||||||
/iPad|iPhone|iPod|Mac/.test(navigator.userAgent) &&
|
|
||||||
"ontouchend" in document
|
|
||||||
) {
|
|
||||||
platform = "ios";
|
|
||||||
} else {
|
|
||||||
platform = "desktop";
|
|
||||||
}
|
|
||||||
69
src/SequenceDiagramViewerPage.tsx
Normal file
69
src/SequenceDiagramViewerPage.tsx
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
/*
|
||||||
|
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, { useCallback, useState } from "react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
|
import {
|
||||||
|
SequenceDiagramViewer,
|
||||||
|
SequenceDiagramMatrixEvent,
|
||||||
|
} from "./room/GroupCallInspector";
|
||||||
|
import { FieldRow, InputField } from "./input/Input";
|
||||||
|
import { usePageTitle } from "./usePageTitle";
|
||||||
|
|
||||||
|
interface DebugLog {
|
||||||
|
localUserId: string;
|
||||||
|
eventsByUserId: { [userId: string]: SequenceDiagramMatrixEvent[] };
|
||||||
|
remoteUserIds: string[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export function SequenceDiagramViewerPage() {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
usePageTitle(t("Inspector"));
|
||||||
|
|
||||||
|
const [debugLog, setDebugLog] = useState<DebugLog>();
|
||||||
|
const [selectedUserId, setSelectedUserId] = useState<string>();
|
||||||
|
const onChangeDebugLog = useCallback((e) => {
|
||||||
|
if (e.target.files && e.target.files.length > 0) {
|
||||||
|
e.target.files[0].text().then((text: string) => {
|
||||||
|
setDebugLog(JSON.parse(text));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{ marginTop: 20 }}>
|
||||||
|
<FieldRow>
|
||||||
|
<InputField
|
||||||
|
type="file"
|
||||||
|
id="debugLog"
|
||||||
|
name="debugLog"
|
||||||
|
label={t("Debug log")}
|
||||||
|
onChange={onChangeDebugLog}
|
||||||
|
/>
|
||||||
|
</FieldRow>
|
||||||
|
{debugLog && (
|
||||||
|
<SequenceDiagramViewer
|
||||||
|
localUserId={debugLog.localUserId}
|
||||||
|
selectedUserId={selectedUserId}
|
||||||
|
onSelectUserId={setSelectedUserId}
|
||||||
|
remoteUserIds={debugLog.remoteUserIds}
|
||||||
|
events={debugLog.eventsByUserId[selectedUserId]}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,66 +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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
.slider {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.track {
|
|
||||||
flex-grow: 1;
|
|
||||||
border-radius: var(--cpd-radius-pill-effect);
|
|
||||||
background: var(--cpd-color-bg-subtle-primary);
|
|
||||||
height: var(--cpd-space-2x);
|
|
||||||
outline: var(--cpd-border-width-1) solid
|
|
||||||
var(--cpd-color-border-interactive-primary);
|
|
||||||
outline-offset: calc(-1 * var(--cpd-border-width-1));
|
|
||||||
cursor: pointer;
|
|
||||||
transition: outline-color ease 0.15s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.track[data-disabled] {
|
|
||||||
cursor: initial;
|
|
||||||
outline-color: var(--cpd-color-border-disabled);
|
|
||||||
}
|
|
||||||
|
|
||||||
.highlight {
|
|
||||||
background: var(--cpd-color-bg-action-primary-rest);
|
|
||||||
position: absolute;
|
|
||||||
block-size: 100%;
|
|
||||||
border-radius: var(--cpd-radius-pill-effect);
|
|
||||||
transition: background-color ease 0.15s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.highlight[data-disabled] {
|
|
||||||
background: var(--cpd-color-bg-action-primary-disabled);
|
|
||||||
}
|
|
||||||
|
|
||||||
.handle {
|
|
||||||
display: block;
|
|
||||||
block-size: var(--cpd-space-4x);
|
|
||||||
inline-size: var(--cpd-space-4x);
|
|
||||||
border-radius: var(--cpd-radius-pill-effect);
|
|
||||||
background: var(--cpd-color-bg-action-primary-rest);
|
|
||||||
box-shadow: 0 0 0 2px var(--cpd-color-bg-canvas-default);
|
|
||||||
cursor: pointer;
|
|
||||||
transition: background-color ease 0.15s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.handle[data-disabled] {
|
|
||||||
cursor: initial;
|
|
||||||
background: var(--cpd-color-bg-action-primary-disabled);
|
|
||||||
}
|
|
||||||
@@ -1,68 +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 { FC, useCallback } from "react";
|
|
||||||
import { Root, Track, Range, Thumb } from "@radix-ui/react-slider";
|
|
||||||
import classNames from "classnames";
|
|
||||||
|
|
||||||
import styles from "./Slider.module.css";
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
className?: string;
|
|
||||||
label: string;
|
|
||||||
value: number;
|
|
||||||
onValueChange: (value: number) => void;
|
|
||||||
min: number;
|
|
||||||
max: number;
|
|
||||||
step: number;
|
|
||||||
disabled?: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A slider control allowing a value to be selected from a range.
|
|
||||||
*/
|
|
||||||
export const Slider: FC<Props> = ({
|
|
||||||
className,
|
|
||||||
label,
|
|
||||||
value,
|
|
||||||
onValueChange: onValueChangeProp,
|
|
||||||
min,
|
|
||||||
max,
|
|
||||||
step,
|
|
||||||
disabled,
|
|
||||||
}) => {
|
|
||||||
const onValueChange = useCallback(
|
|
||||||
([v]: number[]) => onValueChangeProp(v),
|
|
||||||
[onValueChangeProp],
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Root
|
|
||||||
className={classNames(className, styles.slider)}
|
|
||||||
value={[value]}
|
|
||||||
onValueChange={onValueChange}
|
|
||||||
min={min}
|
|
||||||
max={max}
|
|
||||||
step={step}
|
|
||||||
disabled={disabled}
|
|
||||||
>
|
|
||||||
<Track className={styles.track}>
|
|
||||||
<Range className={styles.highlight} />
|
|
||||||
</Track>
|
|
||||||
<Thumb className={styles.handle} aria-label={label} />
|
|
||||||
</Root>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
@@ -1,38 +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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
.toast {
|
|
||||||
color: var(--cpd-color-text-on-solid-primary);
|
|
||||||
background: var(--cpd-color-alpha-gray-1200);
|
|
||||||
padding-inline: var(--cpd-space-3x);
|
|
||||||
padding-block: var(--cpd-space-1x);
|
|
||||||
border: none;
|
|
||||||
border-radius: var(--cpd-radius-pill-effect);
|
|
||||||
box-shadow: var(--small-drop-shadow);
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: var(--cpd-space-1x);
|
|
||||||
}
|
|
||||||
|
|
||||||
.toast > h3 {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toast > svg {
|
|
||||||
color: var(--cpd-color-icon-on-solid-primary);
|
|
||||||
flex-shrink: 0;
|
|
||||||
margin-inline-end: calc(-1 * var(--cpd-space-1x));
|
|
||||||
}
|
|
||||||
108
src/Toast.tsx
108
src/Toast.tsx
@@ -1,108 +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 {
|
|
||||||
ComponentType,
|
|
||||||
FC,
|
|
||||||
SVGAttributes,
|
|
||||||
useCallback,
|
|
||||||
useEffect,
|
|
||||||
} from "react";
|
|
||||||
import {
|
|
||||||
Root as DialogRoot,
|
|
||||||
Portal as DialogPortal,
|
|
||||||
Overlay as DialogOverlay,
|
|
||||||
Content as DialogContent,
|
|
||||||
Close as DialogClose,
|
|
||||||
Title as DialogTitle,
|
|
||||||
} from "@radix-ui/react-dialog";
|
|
||||||
import classNames from "classnames";
|
|
||||||
import { Text } from "@vector-im/compound-web";
|
|
||||||
|
|
||||||
import styles from "./Toast.module.css";
|
|
||||||
import overlayStyles from "./Overlay.module.css";
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
/**
|
|
||||||
* The controlled open state of the toast.
|
|
||||||
*/
|
|
||||||
open: boolean;
|
|
||||||
/**
|
|
||||||
* Callback for when the user dismisses the toast.
|
|
||||||
*/
|
|
||||||
onDismiss: () => void;
|
|
||||||
/**
|
|
||||||
* A number of milliseconds after which the toast should be automatically
|
|
||||||
* dismissed.
|
|
||||||
*/
|
|
||||||
autoDismiss?: number;
|
|
||||||
children: string;
|
|
||||||
/**
|
|
||||||
* A supporting icon to display within the toast.
|
|
||||||
*/
|
|
||||||
Icon?: ComponentType<SVGAttributes<SVGElement>>;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A temporary message shown in an overlay in the center of the screen.
|
|
||||||
*/
|
|
||||||
export const Toast: FC<Props> = ({
|
|
||||||
open,
|
|
||||||
onDismiss,
|
|
||||||
autoDismiss,
|
|
||||||
children,
|
|
||||||
Icon,
|
|
||||||
}) => {
|
|
||||||
const onOpenChange = useCallback(
|
|
||||||
(open: boolean) => {
|
|
||||||
if (!open) onDismiss();
|
|
||||||
},
|
|
||||||
[onDismiss],
|
|
||||||
);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (open && autoDismiss !== undefined) {
|
|
||||||
const timeout = setTimeout(onDismiss, autoDismiss);
|
|
||||||
return () => clearTimeout(timeout);
|
|
||||||
}
|
|
||||||
}, [open, autoDismiss, onDismiss]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<DialogRoot open={open} onOpenChange={onOpenChange}>
|
|
||||||
<DialogPortal>
|
|
||||||
<DialogOverlay
|
|
||||||
className={classNames(overlayStyles.bg, overlayStyles.animate)}
|
|
||||||
/>
|
|
||||||
<DialogContent asChild>
|
|
||||||
<DialogClose
|
|
||||||
className={classNames(
|
|
||||||
overlayStyles.overlay,
|
|
||||||
overlayStyles.animate,
|
|
||||||
styles.toast,
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<DialogTitle asChild>
|
|
||||||
<Text as="h3" size="sm" weight="semibold">
|
|
||||||
{children}
|
|
||||||
</Text>
|
|
||||||
</DialogTitle>
|
|
||||||
{Icon && <Icon width={20} height={20} aria-hidden />}
|
|
||||||
</DialogClose>
|
|
||||||
</DialogContent>
|
|
||||||
</DialogPortal>
|
|
||||||
</DialogRoot>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
@@ -15,12 +15,12 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
.tooltip {
|
.tooltip {
|
||||||
background-color: var(--cpd-color-bg-subtle-secondary);
|
background-color: var(--system);
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
color: var(--cpd-color-text-primary);
|
color: var(--primary-content);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
max-width: 135px;
|
max-width: 135px;
|
||||||
width: max-content;
|
width: max-content;
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import {
|
import React, {
|
||||||
ForwardedRef,
|
ForwardedRef,
|
||||||
forwardRef,
|
forwardRef,
|
||||||
ReactElement,
|
ReactElement,
|
||||||
@@ -40,10 +40,10 @@ interface TooltipProps {
|
|||||||
children: ReactNode;
|
children: ReactNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Tooltip = forwardRef<HTMLDivElement, TooltipProps>(
|
export const Tooltip = forwardRef<HTMLDivElement, TooltipProps>(
|
||||||
(
|
(
|
||||||
{ state, className, children, ...rest }: TooltipProps,
|
{ state, className, children, ...rest }: TooltipProps,
|
||||||
ref: ForwardedRef<HTMLDivElement>,
|
ref: ForwardedRef<HTMLDivElement>
|
||||||
) => {
|
) => {
|
||||||
const { tooltipProps } = useTooltip(rest, state);
|
const { tooltipProps } = useTooltip(rest, state);
|
||||||
|
|
||||||
@@ -56,11 +56,9 @@ const Tooltip = forwardRef<HTMLDivElement, TooltipProps>(
|
|||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
Tooltip.displayName = "Tooltip";
|
|
||||||
|
|
||||||
interface TooltipTriggerProps {
|
interface TooltipTriggerProps {
|
||||||
children: ReactElement;
|
children: ReactElement;
|
||||||
placement?: Placement;
|
placement?: Placement;
|
||||||
@@ -71,16 +69,16 @@ interface TooltipTriggerProps {
|
|||||||
export const TooltipTrigger = forwardRef<HTMLElement, TooltipTriggerProps>(
|
export const TooltipTrigger = forwardRef<HTMLElement, TooltipTriggerProps>(
|
||||||
(
|
(
|
||||||
{ children, placement, tooltip, ...rest }: TooltipTriggerProps,
|
{ children, placement, tooltip, ...rest }: TooltipTriggerProps,
|
||||||
ref: ForwardedRef<HTMLElement>,
|
ref: ForwardedRef<HTMLElement>
|
||||||
) => {
|
) => {
|
||||||
const tooltipTriggerProps = { delay: 250, ...rest };
|
const tooltipTriggerProps = { delay: 250, ...rest };
|
||||||
const tooltipState = useTooltipTriggerState(tooltipTriggerProps);
|
const tooltipState = useTooltipTriggerState(tooltipTriggerProps);
|
||||||
const triggerRef = useObjectRef<HTMLElement>(ref);
|
const triggerRef = useObjectRef<HTMLElement>(ref);
|
||||||
const overlayRef = useRef<HTMLDivElement>(null);
|
const overlayRef = useRef();
|
||||||
const { triggerProps, tooltipProps } = useTooltipTrigger(
|
const { triggerProps, tooltipProps } = useTooltipTrigger(
|
||||||
tooltipTriggerProps,
|
tooltipTriggerProps,
|
||||||
tooltipState,
|
tooltipState,
|
||||||
triggerRef,
|
triggerRef
|
||||||
);
|
);
|
||||||
|
|
||||||
const { overlayProps } = useOverlayPosition({
|
const { overlayProps } = useOverlayPosition({
|
||||||
@@ -96,7 +94,7 @@ export const TooltipTrigger = forwardRef<HTMLElement, TooltipTriggerProps>(
|
|||||||
<children.type
|
<children.type
|
||||||
{...mergeProps<typeof children.props | typeof rest>(
|
{...mergeProps<typeof children.props | typeof rest>(
|
||||||
children.props,
|
children.props,
|
||||||
rest,
|
rest
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
{tooltipState.isOpen && (
|
{tooltipState.isOpen && (
|
||||||
@@ -112,7 +110,5 @@ export const TooltipTrigger = forwardRef<HTMLElement, TooltipTriggerProps>(
|
|||||||
)}
|
)}
|
||||||
</FocusableProvider>
|
</FocusableProvider>
|
||||||
);
|
);
|
||||||
},
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
TooltipTrigger.displayName = "TooltipTrigger";
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { DefaultNamespace, ParseKeys, TFunction, TOptions } from "i18next";
|
import i18n from "i18next";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An error with messages in both English and the user's preferred language.
|
* An error with messages in both English and the user's preferred language.
|
||||||
@@ -27,11 +27,8 @@ export abstract class TranslatedError extends Error {
|
|||||||
*/
|
*/
|
||||||
public readonly translatedMessage: string;
|
public readonly translatedMessage: string;
|
||||||
|
|
||||||
public constructor(
|
public constructor(messageKey: string, translationFn: typeof i18n.t) {
|
||||||
messageKey: ParseKeys<DefaultNamespace, TOptions>,
|
super(translationFn(messageKey, { lng: "en-GB" }));
|
||||||
translationFn: TFunction<DefaultNamespace>,
|
|
||||||
) {
|
|
||||||
super(translationFn(messageKey, { lng: "en-GB" } as TOptions));
|
|
||||||
this.translatedMessage = translationFn(messageKey);
|
this.translatedMessage = translationFn(messageKey);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -40,7 +37,5 @@ class TranslatedErrorImpl extends TranslatedError {}
|
|||||||
|
|
||||||
// i18next-parser can't detect calls to a constructor, so we expose a bare
|
// i18next-parser can't detect calls to a constructor, so we expose a bare
|
||||||
// function instead
|
// function instead
|
||||||
export const translatedError = (
|
export const translatedError = (messageKey: string, t: typeof i18n.t) =>
|
||||||
messageKey: ParseKeys<DefaultNamespace, TOptions>,
|
new TranslatedErrorImpl(messageKey, t);
|
||||||
t: TFunction<"app", undefined>,
|
|
||||||
): TranslatedError => new TranslatedErrorImpl(messageKey, t);
|
|
||||||
|
|||||||
263
src/UrlParams.ts
263
src/UrlParams.ts
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2022 - 2023 New Vector Ltd
|
Copyright 2022 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.
|
||||||
@@ -17,42 +17,15 @@ limitations under the License.
|
|||||||
import { useMemo } from "react";
|
import { useMemo } from "react";
|
||||||
import { useLocation } from "react-router-dom";
|
import { useLocation } from "react-router-dom";
|
||||||
|
|
||||||
import { Config } from "./config/Config";
|
export interface UrlParams {
|
||||||
|
|
||||||
export const PASSWORD_STRING = "password=";
|
|
||||||
|
|
||||||
interface RoomIdentifier {
|
|
||||||
roomAlias: string | null;
|
roomAlias: string | null;
|
||||||
roomId: string | null;
|
roomId: string | null;
|
||||||
viaServers: string[];
|
viaServers: string[];
|
||||||
}
|
|
||||||
|
|
||||||
// If you need to add a new flag to this interface, prefer a name that describes
|
|
||||||
// a specific behavior (such as 'confineToRoom'), rather than one that describes
|
|
||||||
// the situations that call for this behavior ('isEmbedded'). This makes it
|
|
||||||
// clearer what each flag means, and helps us avoid coupling Element Call's
|
|
||||||
// behavior to the needs of specific consumers.
|
|
||||||
export interface UrlParams {
|
|
||||||
// Widget api related params
|
|
||||||
widgetId: string | null;
|
|
||||||
parentUrl: string | null;
|
|
||||||
/**
|
/**
|
||||||
* Anything about what room we're pointed to should be from useRoomIdentifier which
|
* Whether the app is running in embedded mode, and should keep the user
|
||||||
* parses the path and resolves alias with respect to the default server name, however
|
* confined to the current room.
|
||||||
* 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().
|
|
||||||
*/
|
*/
|
||||||
roomId: string | null;
|
isEmbedded: boolean;
|
||||||
/**
|
|
||||||
* Whether the app should keep the user confined to the current call/room.
|
|
||||||
*/
|
|
||||||
confineToRoom: boolean;
|
|
||||||
/**
|
|
||||||
* Whether upon entering a room, the user should be prompted to launch the
|
|
||||||
* native mobile app. (Affects only Android and iOS.)
|
|
||||||
*/
|
|
||||||
appPrompt: boolean;
|
|
||||||
/**
|
/**
|
||||||
* Whether the app should pause before joining the call until it sees an
|
* Whether the app should pause before joining the call until it sees an
|
||||||
* io.element.join widget action, allowing it to be preloaded.
|
* io.element.join widget action, allowing it to be preloaded.
|
||||||
@@ -62,14 +35,14 @@ export interface UrlParams {
|
|||||||
* Whether to hide the room header when in a call.
|
* Whether to hide the room header when in a call.
|
||||||
*/
|
*/
|
||||||
hideHeader: boolean;
|
hideHeader: boolean;
|
||||||
/**
|
|
||||||
* Whether the controls should be shown. For screen recording no controls can be desired.
|
|
||||||
*/
|
|
||||||
showControls: boolean;
|
|
||||||
/**
|
/**
|
||||||
* Whether to hide the screen-sharing button.
|
* Whether to hide the screen-sharing button.
|
||||||
*/
|
*/
|
||||||
hideScreensharing: boolean;
|
hideScreensharing: boolean;
|
||||||
|
/**
|
||||||
|
* Whether to start a walkie-talkie call instead of a video call.
|
||||||
|
*/
|
||||||
|
isPtt: boolean;
|
||||||
/**
|
/**
|
||||||
* Whether to use end-to-end encryption.
|
* Whether to use end-to-end encryption.
|
||||||
*/
|
*/
|
||||||
@@ -106,123 +79,62 @@ export interface UrlParams {
|
|||||||
* The Posthog analytics ID. It is only available if the user has given consent for sharing telemetry in element web.
|
* The Posthog analytics ID. It is only available if the user has given consent for sharing telemetry in element web.
|
||||||
*/
|
*/
|
||||||
analyticsID: string | null;
|
analyticsID: string | null;
|
||||||
/**
|
|
||||||
* Whether the app is allowed to use fallback STUN servers for ICE in case the
|
|
||||||
* user's homeserver doesn't provide any.
|
|
||||||
*/
|
|
||||||
allowIceFallback: boolean;
|
|
||||||
/**
|
|
||||||
* E2EE password
|
|
||||||
*/
|
|
||||||
password: string | null;
|
|
||||||
/**
|
|
||||||
* Whether we the app should use per participant keys for E2EE.
|
|
||||||
*/
|
|
||||||
perParticipantE2EE: boolean;
|
|
||||||
/**
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
skipLobby: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is here as a stopgap, but what would be far nicer is a function that
|
|
||||||
// takes a UrlParams and returns a query string. That would enable us to
|
|
||||||
// consolidate all the data about URL parameters and their meanings to this one
|
|
||||||
// file.
|
|
||||||
export function editFragmentQuery(
|
|
||||||
hash: string,
|
|
||||||
edit: (params: URLSearchParams) => URLSearchParams,
|
|
||||||
): string {
|
|
||||||
const fragmentQueryStart = hash.indexOf("?");
|
|
||||||
const fragmentParams = edit(
|
|
||||||
new URLSearchParams(
|
|
||||||
fragmentQueryStart === -1 ? "" : hash.substring(fragmentQueryStart),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
return `${hash.substring(
|
|
||||||
0,
|
|
||||||
fragmentQueryStart,
|
|
||||||
)}?${fragmentParams.toString()}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
class ParamParser {
|
|
||||||
private fragmentParams: URLSearchParams;
|
|
||||||
private queryParams: URLSearchParams;
|
|
||||||
|
|
||||||
public constructor(search: string, hash: string) {
|
|
||||||
this.queryParams = new URLSearchParams(search);
|
|
||||||
|
|
||||||
const fragmentQueryStart = hash.indexOf("?");
|
|
||||||
this.fragmentParams = new URLSearchParams(
|
|
||||||
fragmentQueryStart === -1 ? "" : hash.substring(fragmentQueryStart),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Normally, URL params should be encoded in the fragment so as to avoid
|
|
||||||
// leaking them to the server. However, we also check the normal query
|
|
||||||
// string for backwards compatibility with versions that only used that.
|
|
||||||
public getParam(name: string): string | null {
|
|
||||||
return this.fragmentParams.get(name) ?? this.queryParams.get(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
public getAllParams(name: string): string[] {
|
|
||||||
return [
|
|
||||||
...this.fragmentParams.getAll(name),
|
|
||||||
...this.queryParams.getAll(name),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public getFlagParam(name: string, defaultValue = false): boolean {
|
|
||||||
const param = this.getParam(name);
|
|
||||||
return param === null ? defaultValue : param !== "false";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the app parameters for the current URL.
|
* Gets the app parameters for the current URL.
|
||||||
* @param search The URL search string
|
* @param query The URL query string
|
||||||
* @param hash The URL hash
|
* @param fragment The URL fragment string
|
||||||
* @returns The app parameters encoded in the URL
|
* @returns The app parameters encoded in the URL
|
||||||
*/
|
*/
|
||||||
export const getUrlParams = (
|
export const getUrlParams = (
|
||||||
search = window.location.search,
|
query: string = window.location.search,
|
||||||
hash = window.location.hash,
|
fragment: string = window.location.hash
|
||||||
): UrlParams => {
|
): UrlParams => {
|
||||||
const parser = new ParamParser(search, hash);
|
const fragmentQueryStart = fragment.indexOf("?");
|
||||||
|
const fragmentParams = new URLSearchParams(
|
||||||
|
fragmentQueryStart === -1 ? "" : fragment.substring(fragmentQueryStart)
|
||||||
|
);
|
||||||
|
const queryParams = new URLSearchParams(query);
|
||||||
|
|
||||||
const fontScale = parseFloat(parser.getParam("fontScale") ?? "");
|
// Normally, URL params should be encoded in the fragment so as to avoid
|
||||||
|
// leaking them to the server. However, we also check the normal query
|
||||||
|
// string for backwards compatibility with versions that only used that.
|
||||||
|
const hasParam = (name: string): boolean =>
|
||||||
|
fragmentParams.has(name) || queryParams.has(name);
|
||||||
|
const getParam = (name: string): string | null =>
|
||||||
|
fragmentParams.get(name) ?? queryParams.get(name);
|
||||||
|
const getAllParams = (name: string): string[] => [
|
||||||
|
...fragmentParams.getAll(name),
|
||||||
|
...queryParams.getAll(name),
|
||||||
|
];
|
||||||
|
|
||||||
|
// The part of the fragment before the ?
|
||||||
|
const fragmentRoute =
|
||||||
|
fragmentQueryStart === -1
|
||||||
|
? fragment
|
||||||
|
: fragment.substring(0, fragmentQueryStart);
|
||||||
|
|
||||||
|
const fontScale = parseFloat(getParam("fontScale") ?? "");
|
||||||
|
|
||||||
return {
|
return {
|
||||||
widgetId: parser.getParam("widgetId"),
|
roomAlias: fragmentRoute.length > 1 ? fragmentRoute : null,
|
||||||
parentUrl: parser.getParam("parentUrl"),
|
roomId: getParam("roomId"),
|
||||||
|
viaServers: getAllParams("via"),
|
||||||
// NB. we don't validate roomId here as we do in getRoomIdentifierFromUrl:
|
isEmbedded: hasParam("embed"),
|
||||||
// what would we do if it were invalid? If the widget API says that's what
|
preload: hasParam("preload"),
|
||||||
// the room ID is, then that's what it is.
|
hideHeader: hasParam("hideHeader"),
|
||||||
roomId: parser.getParam("roomId"),
|
hideScreensharing: hasParam("hideScreensharing"),
|
||||||
password: parser.getParam("password"),
|
isPtt: hasParam("ptt"),
|
||||||
// This flag has 'embed' as an alias for historical reasons
|
e2eEnabled: getParam("enableE2e") !== "false", // Defaults to true
|
||||||
confineToRoom:
|
userId: getParam("userId"),
|
||||||
parser.getFlagParam("confineToRoom") || parser.getFlagParam("embed"),
|
displayName: getParam("displayName"),
|
||||||
appPrompt: parser.getFlagParam("appPrompt", true),
|
deviceId: getParam("deviceId"),
|
||||||
preload: parser.getFlagParam("preload"),
|
baseUrl: getParam("baseUrl"),
|
||||||
hideHeader: parser.getFlagParam("hideHeader"),
|
lang: getParam("lang"),
|
||||||
showControls: parser.getFlagParam("showControls", true),
|
fonts: getAllParams("font"),
|
||||||
hideScreensharing: parser.getFlagParam("hideScreensharing"),
|
|
||||||
e2eEnabled: parser.getFlagParam("enableE2EE", true),
|
|
||||||
userId: parser.getParam("userId"),
|
|
||||||
displayName: parser.getParam("displayName"),
|
|
||||||
deviceId: parser.getParam("deviceId"),
|
|
||||||
baseUrl: parser.getParam("baseUrl"),
|
|
||||||
lang: parser.getParam("lang"),
|
|
||||||
fonts: parser.getAllParams("font"),
|
|
||||||
fontScale: Number.isNaN(fontScale) ? null : fontScale,
|
fontScale: Number.isNaN(fontScale) ? null : fontScale,
|
||||||
analyticsID: parser.getParam("analyticsID"),
|
analyticsID: getParam("analyticsID"),
|
||||||
allowIceFallback: parser.getFlagParam("allowIceFallback"),
|
|
||||||
perParticipantE2EE: parser.getFlagParam("perParticipantE2EE"),
|
|
||||||
skipLobby: parser.getFlagParam("skipLobby"),
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -231,73 +143,6 @@ export const getUrlParams = (
|
|||||||
* @returns The app parameters for the current URL
|
* @returns The app parameters for the current URL
|
||||||
*/
|
*/
|
||||||
export const useUrlParams = (): UrlParams => {
|
export const useUrlParams = (): UrlParams => {
|
||||||
const { search, hash } = useLocation();
|
const { hash, search } = useLocation();
|
||||||
return useMemo(() => getUrlParams(search, hash), [search, hash]);
|
return useMemo(() => getUrlParams(search, hash), [search, hash]);
|
||||||
};
|
};
|
||||||
|
|
||||||
export function getRoomIdentifierFromUrl(
|
|
||||||
pathname: string,
|
|
||||||
search: string,
|
|
||||||
hash: string,
|
|
||||||
): RoomIdentifier {
|
|
||||||
let roomAlias: string | null = null;
|
|
||||||
pathname = pathname.substring(1); // Strip the "/"
|
|
||||||
const pathComponents = pathname.split("/");
|
|
||||||
const pathHasRoom = pathComponents[0] == "room";
|
|
||||||
const hasRoomAlias = pathComponents.length > 1;
|
|
||||||
|
|
||||||
// What type is our url: roomAlias in hash, room alias as the search path, roomAlias after /room/
|
|
||||||
if (hash === "" || hash.startsWith("#?")) {
|
|
||||||
if (hasRoomAlias && pathHasRoom) {
|
|
||||||
roomAlias = pathComponents[1];
|
|
||||||
}
|
|
||||||
if (!pathHasRoom) {
|
|
||||||
roomAlias = pathComponents[0];
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
roomAlias = hash;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Delete "?" and what comes afterwards
|
|
||||||
roomAlias = roomAlias?.split("?")[0] ?? null;
|
|
||||||
|
|
||||||
if (roomAlias) {
|
|
||||||
// Make roomAlias is null, if it only is a "#"
|
|
||||||
if (roomAlias.length <= 1) {
|
|
||||||
roomAlias = null;
|
|
||||||
} else {
|
|
||||||
// Add "#", if not present
|
|
||||||
if (!roomAlias.startsWith("#")) {
|
|
||||||
roomAlias = `#${roomAlias}`;
|
|
||||||
}
|
|
||||||
// Add server part, if not present
|
|
||||||
if (!roomAlias.includes(":")) {
|
|
||||||
roomAlias = `${roomAlias}:${Config.defaultServerName()}`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new ParamParser(search, hash);
|
|
||||||
|
|
||||||
// Make sure roomId is valid
|
|
||||||
let roomId: string | null = parser.getParam("roomId");
|
|
||||||
if (!roomId?.startsWith("!")) {
|
|
||||||
roomId = null;
|
|
||||||
} else if (!roomId.includes("")) {
|
|
||||||
roomId = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
roomAlias,
|
|
||||||
roomId,
|
|
||||||
viaServers: parser.getAllParams("viaServers"),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export const useRoomIdentifier = (): RoomIdentifier => {
|
|
||||||
const { pathname, search, hash } = useLocation();
|
|
||||||
return useMemo(
|
|
||||||
() => getRoomIdentifierFromUrl(pathname, search, hash),
|
|
||||||
[pathname, search, hash],
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -17,10 +17,22 @@ limitations under the License.
|
|||||||
.menuIcon {
|
.menuIcon {
|
||||||
width: 24px;
|
width: 24px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.userButton svg * {
|
.userButton svg * {
|
||||||
fill: var(--cpd-color-icon-primary);
|
fill: var(--primary-content);
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
font-size: var(--font-size-caption);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 800px) {
|
||||||
|
.avatar {
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
font-size: var(--font-size-body);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2022 - 2023 New Vector Ltd
|
Copyright 2022 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,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { FC, ReactNode, useCallback, useMemo } from "react";
|
import React, { useCallback, useMemo } from "react";
|
||||||
import { Item } from "@react-stately/collections";
|
import { Item } from "@react-stately/collections";
|
||||||
import { useLocation } from "react-router-dom";
|
import { useLocation } from "react-router-dom";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
@@ -24,32 +24,29 @@ import { PopoverMenuTrigger } from "./popover/PopoverMenu";
|
|||||||
import { Menu } from "./Menu";
|
import { Menu } from "./Menu";
|
||||||
import { TooltipTrigger } from "./Tooltip";
|
import { TooltipTrigger } from "./Tooltip";
|
||||||
import { Avatar, Size } from "./Avatar";
|
import { Avatar, Size } from "./Avatar";
|
||||||
import UserIcon from "./icons/User.svg?react";
|
import { ReactComponent as UserIcon } from "./icons/User.svg";
|
||||||
import SettingsIcon from "./icons/Settings.svg?react";
|
import { ReactComponent as LoginIcon } from "./icons/Login.svg";
|
||||||
import LoginIcon from "./icons/Login.svg?react";
|
import { ReactComponent as LogoutIcon } from "./icons/Logout.svg";
|
||||||
import LogoutIcon from "./icons/Logout.svg?react";
|
|
||||||
import { Body } from "./typography/Typography";
|
import { Body } from "./typography/Typography";
|
||||||
import styles from "./UserMenu.module.css";
|
import styles from "./UserMenu.module.css";
|
||||||
|
|
||||||
interface Props {
|
interface UserMenuProps {
|
||||||
preventNavigation: boolean;
|
preventNavigation: boolean;
|
||||||
isAuthenticated: boolean;
|
isAuthenticated: boolean;
|
||||||
isPasswordlessUser: boolean;
|
isPasswordlessUser: boolean;
|
||||||
userId: string;
|
|
||||||
displayName: string;
|
displayName: string;
|
||||||
avatarUrl?: string;
|
avatarUrl: string;
|
||||||
onAction: (value: string) => void;
|
onAction: (value: string) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const UserMenu: FC<Props> = ({
|
export function UserMenu({
|
||||||
preventNavigation,
|
preventNavigation,
|
||||||
isAuthenticated,
|
isAuthenticated,
|
||||||
isPasswordlessUser,
|
isPasswordlessUser,
|
||||||
userId,
|
|
||||||
displayName,
|
displayName,
|
||||||
avatarUrl,
|
avatarUrl,
|
||||||
onAction,
|
onAction,
|
||||||
}) => {
|
}: UserMenuProps) {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
|
|
||||||
@@ -61,29 +58,21 @@ export const UserMenu: FC<Props> = ({
|
|||||||
key: "user",
|
key: "user",
|
||||||
icon: UserIcon,
|
icon: UserIcon,
|
||||||
label: displayName,
|
label: displayName,
|
||||||
dataTestid: "usermenu_user",
|
|
||||||
});
|
|
||||||
arr.push({
|
|
||||||
key: "settings",
|
|
||||||
icon: SettingsIcon,
|
|
||||||
label: t("common.settings"),
|
|
||||||
});
|
});
|
||||||
|
|
||||||
if (isPasswordlessUser && !preventNavigation) {
|
if (isPasswordlessUser && !preventNavigation) {
|
||||||
arr.push({
|
arr.push({
|
||||||
key: "login",
|
key: "login",
|
||||||
label: t("action.sign_in"),
|
label: t("Sign in"),
|
||||||
icon: LoginIcon,
|
icon: LoginIcon,
|
||||||
dataTestid: "usermenu_login",
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isPasswordlessUser && !preventNavigation) {
|
if (!isPasswordlessUser && !preventNavigation) {
|
||||||
arr.push({
|
arr.push({
|
||||||
key: "logout",
|
key: "logout",
|
||||||
label: t("action.sign_out"),
|
label: t("Sign out"),
|
||||||
icon: LogoutIcon,
|
icon: LogoutIcon,
|
||||||
dataTestid: "usermenu_logout",
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -91,12 +80,12 @@ export const UserMenu: FC<Props> = ({
|
|||||||
return arr;
|
return arr;
|
||||||
}, [isAuthenticated, isPasswordlessUser, displayName, preventNavigation, t]);
|
}, [isAuthenticated, isPasswordlessUser, displayName, preventNavigation, t]);
|
||||||
|
|
||||||
const tooltip = useCallback(() => t("common.profile"), [t]);
|
const tooltip = useCallback(() => t("Profile"), [t]);
|
||||||
|
|
||||||
if (!isAuthenticated) {
|
if (!isAuthenticated) {
|
||||||
return (
|
return (
|
||||||
<LinkButton to={{ pathname: "/login", state: { from: location } }}>
|
<LinkButton to={{ pathname: "/login", state: { from: location } }}>
|
||||||
{t("log_in")}
|
Log in
|
||||||
</LinkButton>
|
</LinkButton>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -104,41 +93,29 @@ export const UserMenu: FC<Props> = ({
|
|||||||
return (
|
return (
|
||||||
<PopoverMenuTrigger placement="bottom right">
|
<PopoverMenuTrigger placement="bottom right">
|
||||||
<TooltipTrigger tooltip={tooltip} placement="bottom left">
|
<TooltipTrigger tooltip={tooltip} placement="bottom left">
|
||||||
<Button
|
<Button variant="icon" className={styles.userButton}>
|
||||||
variant="icon"
|
|
||||||
className={styles.userButton}
|
|
||||||
data-testid="usermenu_open"
|
|
||||||
>
|
|
||||||
{isAuthenticated && (!isPasswordlessUser || avatarUrl) ? (
|
{isAuthenticated && (!isPasswordlessUser || avatarUrl) ? (
|
||||||
<Avatar
|
<Avatar
|
||||||
id={userId}
|
|
||||||
name={displayName}
|
|
||||||
size={Size.SM}
|
size={Size.SM}
|
||||||
|
className={styles.avatar}
|
||||||
src={avatarUrl}
|
src={avatarUrl}
|
||||||
|
fallback={displayName.slice(0, 1).toUpperCase()}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<UserIcon />
|
<UserIcon />
|
||||||
)}
|
)}
|
||||||
</Button>
|
</Button>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
{
|
{(props) => (
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
<Menu {...props} label={t("User menu")} onAction={onAction}>
|
||||||
(props: any): ReactNode => (
|
{items.map(({ key, icon: Icon, label }) => (
|
||||||
<Menu {...props} label={t("a11y.user_menu")} onAction={onAction}>
|
<Item key={key} textValue={label}>
|
||||||
{items.map(({ key, icon: Icon, label, dataTestid }) => (
|
<Icon width={24} height={24} className={styles.menuIcon} />
|
||||||
<Item key={key} textValue={label}>
|
<Body overflowEllipsis>{label}</Body>
|
||||||
<Icon
|
</Item>
|
||||||
width={24}
|
))}
|
||||||
height={24}
|
</Menu>
|
||||||
className={styles.menuIcon}
|
)}
|
||||||
data-testid={dataTestid}
|
|
||||||
/>
|
|
||||||
<Body overflowEllipsis>{label}</Body>
|
|
||||||
</Item>
|
|
||||||
))}
|
|
||||||
</Menu>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
</PopoverMenuTrigger>
|
</PopoverMenuTrigger>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2022 - 2023 New Vector Ltd
|
Copyright 2022 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,74 +14,57 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { FC, useCallback, useState } from "react";
|
import React, { useCallback } from "react";
|
||||||
import { useHistory, useLocation } from "react-router-dom";
|
import { useHistory, useLocation } from "react-router-dom";
|
||||||
|
|
||||||
import { useClientLegacy } from "./ClientContext";
|
import { useClient } from "./ClientContext";
|
||||||
import { useProfile } from "./profile/useProfile";
|
import { useProfile } from "./profile/useProfile";
|
||||||
import { defaultSettingsTab, SettingsModal } from "./settings/SettingsModal";
|
import { useModalTriggerState } from "./Modal";
|
||||||
|
import { ProfileModal } from "./profile/ProfileModal";
|
||||||
import { UserMenu } from "./UserMenu";
|
import { UserMenu } from "./UserMenu";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
preventNavigation?: boolean;
|
preventNavigation?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const UserMenuContainer: FC<Props> = ({ preventNavigation = false }) => {
|
export function UserMenuContainer({ preventNavigation = false }: Props) {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
const { client, logout, authenticated, passwordlessUser } = useClientLegacy();
|
const { isAuthenticated, isPasswordlessUser, logout, userName, client } =
|
||||||
|
useClient();
|
||||||
const { displayName, avatarUrl } = useProfile(client);
|
const { displayName, avatarUrl } = useProfile(client);
|
||||||
const [settingsModalOpen, setSettingsModalOpen] = useState(false);
|
const { modalState, modalProps } = useModalTriggerState();
|
||||||
const onDismissSettingsModal = useCallback(
|
|
||||||
() => setSettingsModalOpen(false),
|
|
||||||
[setSettingsModalOpen],
|
|
||||||
);
|
|
||||||
|
|
||||||
const [settingsTab, setSettingsTab] = useState(defaultSettingsTab);
|
|
||||||
|
|
||||||
const onAction = useCallback(
|
const onAction = useCallback(
|
||||||
async (value: string) => {
|
(value: string) => {
|
||||||
switch (value) {
|
switch (value) {
|
||||||
case "user":
|
case "user":
|
||||||
setSettingsTab("profile");
|
modalState.open();
|
||||||
setSettingsModalOpen(true);
|
|
||||||
break;
|
|
||||||
case "settings":
|
|
||||||
setSettingsTab("audio");
|
|
||||||
setSettingsModalOpen(true);
|
|
||||||
break;
|
break;
|
||||||
case "logout":
|
case "logout":
|
||||||
logout?.();
|
logout();
|
||||||
break;
|
break;
|
||||||
case "login":
|
case "login":
|
||||||
history.push("/login", { state: { from: location } });
|
history.push("/login", { state: { from: location } });
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[history, location, logout, setSettingsModalOpen],
|
[history, location, logout, modalState]
|
||||||
);
|
);
|
||||||
|
|
||||||
const userName = client?.getUserIdLocalpart() ?? "";
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<UserMenu
|
<UserMenu
|
||||||
preventNavigation={preventNavigation}
|
preventNavigation={preventNavigation}
|
||||||
isAuthenticated={authenticated}
|
isAuthenticated={isAuthenticated}
|
||||||
isPasswordlessUser={passwordlessUser}
|
isPasswordlessUser={isPasswordlessUser}
|
||||||
avatarUrl={avatarUrl}
|
avatarUrl={avatarUrl}
|
||||||
onAction={onAction}
|
onAction={onAction}
|
||||||
userId={client?.getUserId() ?? ""}
|
displayName={
|
||||||
displayName={displayName || (userName ? userName.replace("@", "") : "")}
|
displayName || (userName ? userName.replace("@", "") : undefined)
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
{client && (
|
{modalState.isOpen && <ProfileModal client={client} {...modalProps} />}
|
||||||
<SettingsModal
|
|
||||||
client={client}
|
|
||||||
open={settingsModalOpen}
|
|
||||||
onDismiss={onDismissSettingsModal}
|
|
||||||
tab={settingsTab}
|
|
||||||
onTabChange={setSettingsTab}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
|||||||
@@ -1,26 +1,10 @@
|
|||||||
/*
|
import React, { FC } from "react";
|
||||||
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 { FC } from "react";
|
|
||||||
import { Trans } from "react-i18next";
|
import { Trans } from "react-i18next";
|
||||||
|
|
||||||
import { Link } from "../typography/Typography";
|
import { Link } from "../typography/Typography";
|
||||||
|
|
||||||
export const AnalyticsNotice: FC = () => (
|
export const AnalyticsNotice: FC = () => (
|
||||||
<Trans i18nKey="analytics_notice">
|
<Trans>
|
||||||
By participating in this beta, you consent to the collection of anonymous
|
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
|
data, which we use to improve the product. You can find more information
|
||||||
about which data we track in our{" "}
|
about which data we track in our{" "}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ import { MatrixClient } from "matrix-js-sdk";
|
|||||||
import { Buffer } from "buffer";
|
import { Buffer } from "buffer";
|
||||||
|
|
||||||
import { widget } from "../widget";
|
import { widget } from "../widget";
|
||||||
import { getSetting, setSetting, getSettingKey } from "../settings/useSetting";
|
import { getSetting, setSetting, settingsBus } from "../settings/useSetting";
|
||||||
import {
|
import {
|
||||||
CallEndedTracker,
|
CallEndedTracker,
|
||||||
CallStartedTracker,
|
CallStartedTracker,
|
||||||
@@ -29,12 +29,9 @@ import {
|
|||||||
MuteCameraTracker,
|
MuteCameraTracker,
|
||||||
MuteMicrophoneTracker,
|
MuteMicrophoneTracker,
|
||||||
UndecryptableToDeviceEventTracker,
|
UndecryptableToDeviceEventTracker,
|
||||||
QualitySurveyEventTracker,
|
|
||||||
CallDisconnectedEventTracker,
|
|
||||||
} from "./PosthogEvents";
|
} from "./PosthogEvents";
|
||||||
import { Config } from "../config/Config";
|
import { Config } from "../config/Config";
|
||||||
import { getUrlParams } from "../UrlParams";
|
import { getUrlParams } from "../UrlParams";
|
||||||
import { localStorageBus } from "../useLocalStorage";
|
|
||||||
|
|
||||||
/* Posthog analytics tracking.
|
/* Posthog analytics tracking.
|
||||||
*
|
*
|
||||||
@@ -72,7 +69,6 @@ export enum RegistrationType {
|
|||||||
interface PlatformProperties {
|
interface PlatformProperties {
|
||||||
appVersion: string;
|
appVersion: string;
|
||||||
matrixBackend: "embedded" | "jssdk";
|
matrixBackend: "embedded" | "jssdk";
|
||||||
callBackend: "livekit" | "full-mesh";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface PosthogSettings {
|
interface PosthogSettings {
|
||||||
@@ -100,7 +96,7 @@ export class PosthogAnalytics {
|
|||||||
// set true during the constructor if posthog config is present, otherwise false
|
// set true during the constructor if posthog config is present, otherwise false
|
||||||
private static internalInstance: PosthogAnalytics | null = null;
|
private static internalInstance: PosthogAnalytics | null = null;
|
||||||
|
|
||||||
private identificationPromise?: Promise<void>;
|
private identificationPromise: Promise<void>;
|
||||||
private readonly enabled: boolean = false;
|
private readonly enabled: boolean = false;
|
||||||
private anonymity = Anonymity.Disabled;
|
private anonymity = Anonymity.Disabled;
|
||||||
private platformSuperProperties = {};
|
private platformSuperProperties = {};
|
||||||
@@ -117,7 +113,7 @@ export class PosthogAnalytics {
|
|||||||
return this.internalInstance;
|
return this.internalInstance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private constructor(private readonly posthog: PostHog) {
|
constructor(private readonly posthog: PostHog) {
|
||||||
const posthogConfig: PosthogSettings = {
|
const posthogConfig: PosthogSettings = {
|
||||||
project_api_key: Config.get().posthog?.api_key,
|
project_api_key: Config.get().posthog?.api_key,
|
||||||
api_host: Config.get().posthog?.api_host,
|
api_host: Config.get().posthog?.api_host,
|
||||||
@@ -146,7 +142,7 @@ export class PosthogAnalytics {
|
|||||||
this.enabled = true;
|
this.enabled = true;
|
||||||
} else {
|
} else {
|
||||||
logger.info(
|
logger.info(
|
||||||
"Posthog is not enabled because there is no api key or no host given in the config",
|
"Posthog is not enabled because there is no api key or no host given in the config"
|
||||||
);
|
);
|
||||||
this.enabled = false;
|
this.enabled = false;
|
||||||
}
|
}
|
||||||
@@ -157,7 +153,7 @@ export class PosthogAnalytics {
|
|||||||
|
|
||||||
private sanitizeProperties = (
|
private sanitizeProperties = (
|
||||||
properties: Properties,
|
properties: Properties,
|
||||||
_eventName: string,
|
_eventName: string
|
||||||
): Properties => {
|
): Properties => {
|
||||||
// Callback from posthog to sanitize properties before sending them to the server.
|
// Callback from posthog to sanitize properties before sending them to the server.
|
||||||
// Here we sanitize posthog's built in properties which leak PII e.g. url reporting.
|
// Here we sanitize posthog's built in properties which leak PII e.g. url reporting.
|
||||||
@@ -183,7 +179,7 @@ export class PosthogAnalytics {
|
|||||||
return properties;
|
return properties;
|
||||||
};
|
};
|
||||||
|
|
||||||
private registerSuperProperties(properties: Properties): void {
|
private registerSuperProperties(properties: Properties) {
|
||||||
if (this.enabled) {
|
if (this.enabled) {
|
||||||
this.posthog.register(properties);
|
this.posthog.register(properties);
|
||||||
}
|
}
|
||||||
@@ -194,15 +190,14 @@ export class PosthogAnalytics {
|
|||||||
return {
|
return {
|
||||||
appVersion,
|
appVersion,
|
||||||
matrixBackend: widget ? "embedded" : "jssdk",
|
matrixBackend: widget ? "embedded" : "jssdk",
|
||||||
callBackend: "livekit",
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
private capture(
|
private capture(
|
||||||
eventName: string,
|
eventName: string,
|
||||||
properties: Properties,
|
properties: Properties,
|
||||||
options?: CaptureOptions,
|
options?: CaptureOptions
|
||||||
): void {
|
) {
|
||||||
if (!this.enabled) {
|
if (!this.enabled) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -213,7 +208,7 @@ export class PosthogAnalytics {
|
|||||||
return this.enabled;
|
return this.enabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
private setAnonymity(anonymity: Anonymity): void {
|
setAnonymity(anonymity: Anonymity): void {
|
||||||
// Update this.anonymity.
|
// Update this.anonymity.
|
||||||
// To update the anonymity typically you want to call updateAnonymityFromSettings
|
// To update the anonymity typically you want to call updateAnonymityFromSettings
|
||||||
// to ensure this value is in step with the user's settings.
|
// to ensure this value is in step with the user's settings.
|
||||||
@@ -236,9 +231,7 @@ export class PosthogAnalytics {
|
|||||||
.join("");
|
.join("");
|
||||||
}
|
}
|
||||||
|
|
||||||
private async identifyUser(
|
private async identifyUser(analyticsIdGenerator: () => string) {
|
||||||
analyticsIdGenerator: () => string,
|
|
||||||
): Promise<void> {
|
|
||||||
if (this.anonymity == Anonymity.Pseudonymous && this.enabled) {
|
if (this.anonymity == Anonymity.Pseudonymous && this.enabled) {
|
||||||
// Check the user's account_data for an analytics ID to use. Storing the ID in account_data allows
|
// Check the user's account_data for an analytics ID to use. Storing the ID in account_data allows
|
||||||
// different devices to send the same ID.
|
// different devices to send the same ID.
|
||||||
@@ -259,28 +252,26 @@ export class PosthogAnalytics {
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
// The above could fail due to network requests, but not essential to starting the application,
|
// The above could fail due to network requests, but not essential to starting the application,
|
||||||
// so swallow it.
|
// so swallow it.
|
||||||
logger.log(
|
logger.log("Unable to identify user for tracking" + e.toString());
|
||||||
"Unable to identify user for tracking" + (e as Error)?.toString(),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
if (analyticsID) {
|
if (analyticsID) {
|
||||||
this.posthog.identify(analyticsID);
|
this.posthog.identify(analyticsID);
|
||||||
} else {
|
} else {
|
||||||
logger.info(
|
logger.info(
|
||||||
"No analyticsID is availble. Should not try to setup posthog",
|
"No analyticsID is availble. Should not try to setup posthog"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private async getAnalyticsId(): Promise<string | null> {
|
async getAnalyticsId() {
|
||||||
const client: MatrixClient = window.matrixclient;
|
const client: MatrixClient = window.matrixclient;
|
||||||
let accountAnalyticsId;
|
let accountAnalyticsId;
|
||||||
if (widget) {
|
if (widget) {
|
||||||
accountAnalyticsId = getUrlParams().analyticsID;
|
accountAnalyticsId = getUrlParams().analyticsID;
|
||||||
} else {
|
} else {
|
||||||
const accountData = await client.getAccountDataFromServer(
|
const accountData = await client.getAccountDataFromServer(
|
||||||
PosthogAnalytics.ANALYTICS_EVENT_TYPE,
|
PosthogAnalytics.ANALYTICS_EVENT_TYPE
|
||||||
);
|
);
|
||||||
accountAnalyticsId = accountData?.id;
|
accountAnalyticsId = accountData?.id;
|
||||||
}
|
}
|
||||||
@@ -293,14 +284,12 @@ export class PosthogAnalytics {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private async hashedEcAnalyticsId(
|
async hashedEcAnalyticsId(accountAnalyticsId: string): Promise<string> {
|
||||||
accountAnalyticsId: string,
|
|
||||||
): Promise<string> {
|
|
||||||
const client: MatrixClient = window.matrixclient;
|
const client: MatrixClient = window.matrixclient;
|
||||||
const posthogIdMaterial = "ec" + accountAnalyticsId + client.getUserId();
|
const posthogIdMaterial = "ec" + accountAnalyticsId + client.getUserId();
|
||||||
const bufferForPosthogId = await crypto.subtle.digest(
|
const bufferForPosthogId = await crypto.subtle.digest(
|
||||||
"sha-256",
|
"sha-256",
|
||||||
Buffer.from(posthogIdMaterial, "utf-8"),
|
Buffer.from(posthogIdMaterial, "utf-8")
|
||||||
);
|
);
|
||||||
const view = new Int32Array(bufferForPosthogId);
|
const view = new Int32Array(bufferForPosthogId);
|
||||||
return Array.from(view)
|
return Array.from(view)
|
||||||
@@ -308,17 +297,17 @@ export class PosthogAnalytics {
|
|||||||
.join("");
|
.join("");
|
||||||
}
|
}
|
||||||
|
|
||||||
private async setAccountAnalyticsId(analyticsID: string): Promise<void> {
|
async setAccountAnalyticsId(analyticsID: string) {
|
||||||
if (!widget) {
|
if (!widget) {
|
||||||
const client = window.matrixclient;
|
const client = window.matrixclient;
|
||||||
|
|
||||||
// the analytics ID only needs to be set in the standalone version.
|
// the analytics ID only needs to be set in the standalone version.
|
||||||
const accountData = await client.getAccountDataFromServer(
|
const accountData = await client.getAccountDataFromServer(
|
||||||
PosthogAnalytics.ANALYTICS_EVENT_TYPE,
|
PosthogAnalytics.ANALYTICS_EVENT_TYPE
|
||||||
);
|
);
|
||||||
await client.setAccountData(
|
await client.setAccountData(
|
||||||
PosthogAnalytics.ANALYTICS_EVENT_TYPE,
|
PosthogAnalytics.ANALYTICS_EVENT_TYPE,
|
||||||
Object.assign({ id: analyticsID }, accountData),
|
Object.assign({ id: analyticsID }, accountData)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -339,7 +328,7 @@ export class PosthogAnalytics {
|
|||||||
this.updateAnonymityAndIdentifyUser(optInAnalytics);
|
this.updateAnonymityAndIdentifyUser(optInAnalytics);
|
||||||
}
|
}
|
||||||
|
|
||||||
private updateSuperProperties(): void {
|
private updateSuperProperties() {
|
||||||
// Update super properties in posthog with our platform (app version, platform).
|
// Update super properties in posthog with our platform (app version, platform).
|
||||||
// These properties will be subsequently passed in every event.
|
// These properties will be subsequently passed in every event.
|
||||||
//
|
//
|
||||||
@@ -360,7 +349,7 @@ export class PosthogAnalytics {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private async updateAnonymityAndIdentifyUser(
|
private async updateAnonymityAndIdentifyUser(
|
||||||
pseudonymousOptIn: boolean,
|
pseudonymousOptIn: boolean
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
// Update this.anonymity based on the user's analytics opt-in settings
|
// Update this.anonymity based on the user's analytics opt-in settings
|
||||||
const anonymity = pseudonymousOptIn
|
const anonymity = pseudonymousOptIn
|
||||||
@@ -374,13 +363,13 @@ export class PosthogAnalytics {
|
|||||||
|
|
||||||
if (anonymity === Anonymity.Pseudonymous) {
|
if (anonymity === Anonymity.Pseudonymous) {
|
||||||
this.setRegistrationType(
|
this.setRegistrationType(
|
||||||
window.matrixclient.isGuest() || window.passwordlessUser
|
window.matrixclient.isGuest() || window.isPasswordlessUser
|
||||||
? RegistrationType.Guest
|
? RegistrationType.Guest
|
||||||
: RegistrationType.Registered,
|
: RegistrationType.Registered
|
||||||
);
|
);
|
||||||
// store the promise to await posthog-tracking-events until the identification is done.
|
// store the promise to await posthog-tracking-events until the identification is done.
|
||||||
this.identificationPromise = this.identifyUser(
|
this.identificationPromise = this.identifyUser(
|
||||||
PosthogAnalytics.getRandomAnalyticsId,
|
PosthogAnalytics.getRandomAnalyticsId
|
||||||
);
|
);
|
||||||
await this.identificationPromise;
|
await this.identificationPromise;
|
||||||
if (this.userRegisteredInThisSession()) {
|
if (this.userRegisteredInThisSession()) {
|
||||||
@@ -395,7 +384,7 @@ export class PosthogAnalytics {
|
|||||||
|
|
||||||
public async trackEvent<E extends IPosthogEvent>(
|
public async trackEvent<E extends IPosthogEvent>(
|
||||||
{ eventName, ...properties }: E,
|
{ eventName, ...properties }: E,
|
||||||
options?: CaptureOptions,
|
options?: CaptureOptions
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
if (this.identificationPromise) {
|
if (this.identificationPromise) {
|
||||||
// only make calls to posthog after the identificaion is done
|
// only make calls to posthog after the identificaion is done
|
||||||
@@ -418,7 +407,7 @@ export class PosthogAnalytics {
|
|||||||
// * When the user changes their preferences on this device
|
// * When the user changes their preferences on this device
|
||||||
// Note that for new accounts, pseudonymousAnalyticsOptIn won't be set, so updateAnonymityFromSettings
|
// Note that for new accounts, pseudonymousAnalyticsOptIn won't be set, so updateAnonymityFromSettings
|
||||||
// won't be called (i.e. this.anonymity will be left as the default, until the setting changes)
|
// won't be called (i.e. this.anonymity will be left as the default, until the setting changes)
|
||||||
localStorageBus.on(getSettingKey("opt-in-analytics"), (optInAnalytics) => {
|
settingsBus.on("opt-in-analytics", (optInAnalytics) => {
|
||||||
this.updateAnonymityAndIdentifyUser(optInAnalytics);
|
this.updateAnonymityAndIdentifyUser(optInAnalytics);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -442,6 +431,4 @@ export class PosthogAnalytics {
|
|||||||
public eventMuteMicrophone = new MuteMicrophoneTracker();
|
public eventMuteMicrophone = new MuteMicrophoneTracker();
|
||||||
public eventMuteCamera = new MuteCameraTracker();
|
public eventMuteCamera = new MuteCameraTracker();
|
||||||
public eventUndecryptableToDevice = new UndecryptableToDeviceEventTracker();
|
public eventUndecryptableToDevice = new UndecryptableToDeviceEventTracker();
|
||||||
public eventQualitySurvey = new QualitySurveyEventTracker();
|
|
||||||
public eventCallDisconnected = new CallDisconnectedEventTracker();
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { DisconnectReason } from "livekit-client";
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
IPosthogEvent,
|
IPosthogEvent,
|
||||||
PosthogAnalytics,
|
PosthogAnalytics,
|
||||||
@@ -36,22 +34,18 @@ export class CallEndedTracker {
|
|||||||
maxParticipantsCount: 0,
|
maxParticipantsCount: 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
public cacheStartCall(time: Date): void {
|
cacheStartCall(time: Date) {
|
||||||
this.cache.startTime = time;
|
this.cache.startTime = time;
|
||||||
}
|
}
|
||||||
|
|
||||||
public cacheParticipantCountChanged(count: number): void {
|
cacheParticipantCountChanged(count: number) {
|
||||||
this.cache.maxParticipantsCount = Math.max(
|
this.cache.maxParticipantsCount = Math.max(
|
||||||
count,
|
count,
|
||||||
this.cache.maxParticipantsCount,
|
this.cache.maxParticipantsCount
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public track(
|
track(callId: string, callParticipantsNow: number, sendInstantly: boolean) {
|
||||||
callId: string,
|
|
||||||
callParticipantsNow: number,
|
|
||||||
sendInstantly: boolean,
|
|
||||||
): void {
|
|
||||||
PosthogAnalytics.instance.trackEvent<CallEnded>(
|
PosthogAnalytics.instance.trackEvent<CallEnded>(
|
||||||
{
|
{
|
||||||
eventName: "CallEnded",
|
eventName: "CallEnded",
|
||||||
@@ -60,7 +54,7 @@ export class CallEndedTracker {
|
|||||||
callParticipantsOnLeave: callParticipantsNow,
|
callParticipantsOnLeave: callParticipantsNow,
|
||||||
callDuration: (Date.now() - this.cache.startTime.getTime()) / 1000,
|
callDuration: (Date.now() - this.cache.startTime.getTime()) / 1000,
|
||||||
},
|
},
|
||||||
{ send_instantly: sendInstantly },
|
{ send_instantly: sendInstantly }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -71,7 +65,7 @@ interface CallStarted extends IPosthogEvent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class CallStartedTracker {
|
export class CallStartedTracker {
|
||||||
public track(callId: string): void {
|
track(callId: string) {
|
||||||
PosthogAnalytics.instance.trackEvent<CallStarted>({
|
PosthogAnalytics.instance.trackEvent<CallStarted>({
|
||||||
eventName: "CallStarted",
|
eventName: "CallStarted",
|
||||||
callId: callId,
|
callId: callId,
|
||||||
@@ -90,19 +84,19 @@ export class SignupTracker {
|
|||||||
signupEnd: new Date(0),
|
signupEnd: new Date(0),
|
||||||
};
|
};
|
||||||
|
|
||||||
public cacheSignupStart(time: Date): void {
|
cacheSignupStart(time: Date) {
|
||||||
this.cache.signupStart = time;
|
this.cache.signupStart = time;
|
||||||
}
|
}
|
||||||
|
|
||||||
public getSignupEndTime(): Date {
|
getSignupEndTime() {
|
||||||
return this.cache.signupEnd;
|
return this.cache.signupEnd;
|
||||||
}
|
}
|
||||||
|
|
||||||
public cacheSignupEnd(time: Date): void {
|
cacheSignupEnd(time: Date) {
|
||||||
this.cache.signupEnd = time;
|
this.cache.signupEnd = time;
|
||||||
}
|
}
|
||||||
|
|
||||||
public track(): void {
|
track() {
|
||||||
PosthogAnalytics.instance.trackEvent<Signup>({
|
PosthogAnalytics.instance.trackEvent<Signup>({
|
||||||
eventName: "Signup",
|
eventName: "Signup",
|
||||||
signupDuration: Date.now() - this.cache.signupStart.getTime(),
|
signupDuration: Date.now() - this.cache.signupStart.getTime(),
|
||||||
@@ -116,7 +110,7 @@ interface Login extends IPosthogEvent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class LoginTracker {
|
export class LoginTracker {
|
||||||
public track(): void {
|
track() {
|
||||||
PosthogAnalytics.instance.trackEvent<Login>({
|
PosthogAnalytics.instance.trackEvent<Login>({
|
||||||
eventName: "Login",
|
eventName: "Login",
|
||||||
});
|
});
|
||||||
@@ -131,7 +125,7 @@ interface MuteMicrophone {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class MuteMicrophoneTracker {
|
export class MuteMicrophoneTracker {
|
||||||
public track(targetIsMute: boolean, callId: string): void {
|
track(targetIsMute: boolean, callId: string) {
|
||||||
PosthogAnalytics.instance.trackEvent<MuteMicrophone>({
|
PosthogAnalytics.instance.trackEvent<MuteMicrophone>({
|
||||||
eventName: "MuteMicrophone",
|
eventName: "MuteMicrophone",
|
||||||
targetMuteState: targetIsMute ? "mute" : "unmute",
|
targetMuteState: targetIsMute ? "mute" : "unmute",
|
||||||
@@ -147,7 +141,7 @@ interface MuteCamera {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class MuteCameraTracker {
|
export class MuteCameraTracker {
|
||||||
public track(targetIsMute: boolean, callId: string): void {
|
track(targetIsMute: boolean, callId: string) {
|
||||||
PosthogAnalytics.instance.trackEvent<MuteCamera>({
|
PosthogAnalytics.instance.trackEvent<MuteCamera>({
|
||||||
eventName: "MuteCamera",
|
eventName: "MuteCamera",
|
||||||
targetMuteState: targetIsMute ? "mute" : "unmute",
|
targetMuteState: targetIsMute ? "mute" : "unmute",
|
||||||
@@ -162,42 +156,10 @@ interface UndecryptableToDeviceEvent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class UndecryptableToDeviceEventTracker {
|
export class UndecryptableToDeviceEventTracker {
|
||||||
public track(callId: string): void {
|
track(callId: string) {
|
||||||
PosthogAnalytics.instance.trackEvent<UndecryptableToDeviceEvent>({
|
PosthogAnalytics.instance.trackEvent<UndecryptableToDeviceEvent>({
|
||||||
eventName: "UndecryptableToDeviceEvent",
|
eventName: "UndecryptableToDeviceEvent",
|
||||||
callId,
|
callId,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface QualitySurveyEvent {
|
|
||||||
eventName: "QualitySurvey";
|
|
||||||
callId: string;
|
|
||||||
feedbackText: string;
|
|
||||||
stars: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class QualitySurveyEventTracker {
|
|
||||||
public track(callId: string, feedbackText: string, stars: number): void {
|
|
||||||
PosthogAnalytics.instance.trackEvent<QualitySurveyEvent>({
|
|
||||||
eventName: "QualitySurvey",
|
|
||||||
callId,
|
|
||||||
feedbackText,
|
|
||||||
stars,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
interface CallDisconnectedEvent {
|
|
||||||
eventName: "CallDisconnected";
|
|
||||||
reason?: DisconnectReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class CallDisconnectedEventTracker {
|
|
||||||
public track(reason?: DisconnectReason): void {
|
|
||||||
PosthogAnalytics.instance.trackEvent<CallDisconnectedEvent>({
|
|
||||||
eventName: "CallDisconnected",
|
|
||||||
reason,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -39,9 +39,9 @@ const maxRejoinMs = 2 * 60 * 1000; // 2 minutes
|
|||||||
* Span processor that extracts certain metrics from spans to send to PostHog
|
* Span processor that extracts certain metrics from spans to send to PostHog
|
||||||
*/
|
*/
|
||||||
export class PosthogSpanProcessor implements SpanProcessor {
|
export class PosthogSpanProcessor implements SpanProcessor {
|
||||||
public async forceFlush(): Promise<void> {}
|
async forceFlush(): Promise<void> {}
|
||||||
|
|
||||||
public onStart(span: Span): void {
|
onStart(span: Span): void {
|
||||||
// Hack: Yield to allow attributes to be set before processing
|
// Hack: Yield to allow attributes to be set before processing
|
||||||
Promise.resolve().then(() => {
|
Promise.resolve().then(() => {
|
||||||
switch (span.name) {
|
switch (span.name) {
|
||||||
@@ -55,7 +55,7 @@ export class PosthogSpanProcessor implements SpanProcessor {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public onEnd(span: ReadableSpan): void {
|
onEnd(span: ReadableSpan): void {
|
||||||
switch (span.name) {
|
switch (span.name) {
|
||||||
case "matrix.groupCallMembership":
|
case "matrix.groupCallMembership":
|
||||||
this.onGroupCallMembershipEnd(span);
|
this.onGroupCallMembershipEnd(span);
|
||||||
@@ -124,13 +124,6 @@ export class PosthogSpanProcessor implements SpanProcessor {
|
|||||||
const audioReceived = `${attributes["matrix.stats.summary.percentageReceivedAudioMedia"]}`;
|
const audioReceived = `${attributes["matrix.stats.summary.percentageReceivedAudioMedia"]}`;
|
||||||
const maxJitter = `${attributes["matrix.stats.summary.maxJitter"]}`;
|
const maxJitter = `${attributes["matrix.stats.summary.maxJitter"]}`;
|
||||||
const maxPacketLoss = `${attributes["matrix.stats.summary.maxPacketLoss"]}`;
|
const maxPacketLoss = `${attributes["matrix.stats.summary.maxPacketLoss"]}`;
|
||||||
const peerConnections = `${attributes["matrix.stats.summary.peerConnections"]}`;
|
|
||||||
const percentageConcealedAudio = `${attributes["matrix.stats.summary.percentageConcealedAudio"]}`;
|
|
||||||
const opponentUsersInCall = `${attributes["matrix.stats.summary.opponentUsersInCall"]}`;
|
|
||||||
const opponentDevicesInCall = `${attributes["matrix.stats.summary.opponentDevicesInCall"]}`;
|
|
||||||
const diffDevicesToPeerConnections = `${attributes["matrix.stats.summary.diffDevicesToPeerConnections"]}`;
|
|
||||||
const ratioPeerConnectionToDevices = `${attributes["matrix.stats.summary.ratioPeerConnectionToDevices"]}`;
|
|
||||||
|
|
||||||
PosthogAnalytics.instance.trackEvent(
|
PosthogAnalytics.instance.trackEvent(
|
||||||
{
|
{
|
||||||
eventName: "MediaReceived",
|
eventName: "MediaReceived",
|
||||||
@@ -140,15 +133,9 @@ export class PosthogSpanProcessor implements SpanProcessor {
|
|||||||
videoReceived: videoReceived,
|
videoReceived: videoReceived,
|
||||||
maxJitter: maxJitter,
|
maxJitter: maxJitter,
|
||||||
maxPacketLoss: maxPacketLoss,
|
maxPacketLoss: maxPacketLoss,
|
||||||
peerConnections: peerConnections,
|
|
||||||
percentageConcealedAudio: percentageConcealedAudio,
|
|
||||||
opponentUsersInCall: opponentUsersInCall,
|
|
||||||
opponentDevicesInCall: opponentDevicesInCall,
|
|
||||||
diffDevicesToPeerConnections: diffDevicesToPeerConnections,
|
|
||||||
ratioPeerConnectionToDevices: ratioPeerConnectionToDevices,
|
|
||||||
},
|
},
|
||||||
// Send instantly because the window might be closing
|
// Send instantly because the window might be closing
|
||||||
{ send_instantly: true },
|
{ send_instantly: true }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -157,7 +144,7 @@ export class PosthogSpanProcessor implements SpanProcessor {
|
|||||||
/**
|
/**
|
||||||
* Shutdown the processor.
|
* Shutdown the processor.
|
||||||
*/
|
*/
|
||||||
public shutdown(): Promise<void> {
|
shutdown(): Promise<void> {
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,4 @@
|
|||||||
/*
|
import { Attributes } from "@opentelemetry/api";
|
||||||
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 { AttributeValue, Attributes } from "@opentelemetry/api";
|
|
||||||
import { hrTimeToMicroseconds } from "@opentelemetry/core";
|
import { hrTimeToMicroseconds } from "@opentelemetry/core";
|
||||||
import {
|
import {
|
||||||
SpanProcessor,
|
SpanProcessor,
|
||||||
@@ -22,21 +6,7 @@ import {
|
|||||||
Span,
|
Span,
|
||||||
} from "@opentelemetry/sdk-trace-base";
|
} from "@opentelemetry/sdk-trace-base";
|
||||||
|
|
||||||
const dumpAttributes = (
|
const dumpAttributes = (attr: Attributes) =>
|
||||||
attr: Attributes,
|
|
||||||
): {
|
|
||||||
key: string;
|
|
||||||
type:
|
|
||||||
| "string"
|
|
||||||
| "number"
|
|
||||||
| "bigint"
|
|
||||||
| "boolean"
|
|
||||||
| "symbol"
|
|
||||||
| "undefined"
|
|
||||||
| "object"
|
|
||||||
| "function";
|
|
||||||
value: AttributeValue | undefined;
|
|
||||||
}[] =>
|
|
||||||
Object.entries(attr).map(([key, value]) => ({
|
Object.entries(attr).map(([key, value]) => ({
|
||||||
key,
|
key,
|
||||||
type: typeof value,
|
type: typeof value,
|
||||||
@@ -50,13 +20,13 @@ const dumpAttributes = (
|
|||||||
export class RageshakeSpanProcessor implements SpanProcessor {
|
export class RageshakeSpanProcessor implements SpanProcessor {
|
||||||
private readonly spans: ReadableSpan[] = [];
|
private readonly spans: ReadableSpan[] = [];
|
||||||
|
|
||||||
public async forceFlush(): Promise<void> {}
|
async forceFlush(): Promise<void> {}
|
||||||
|
|
||||||
public onStart(span: Span): void {
|
onStart(span: Span): void {
|
||||||
this.spans.push(span);
|
this.spans.push(span);
|
||||||
}
|
}
|
||||||
|
|
||||||
public onEnd(): void {}
|
onEnd(): void {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dumps the spans collected so far as Jaeger-compatible JSON.
|
* Dumps the spans collected so far as Jaeger-compatible JSON.
|
||||||
@@ -140,5 +110,5 @@ export class RageshakeSpanProcessor implements SpanProcessor {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public async shutdown(): Promise<void> {}
|
async shutdown(): Promise<void> {}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,44 +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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the index of the last element in the array to satsify the given
|
|
||||||
* predicate.
|
|
||||||
*/
|
|
||||||
// TODO: remove this once TypeScript recognizes the existence of
|
|
||||||
// Array.prototype.findLastIndex
|
|
||||||
export function findLastIndex<T>(
|
|
||||||
array: T[],
|
|
||||||
predicate: (item: T, index: number) => boolean,
|
|
||||||
): number | null {
|
|
||||||
for (let i = array.length - 1; i >= 0; i--) {
|
|
||||||
if (predicate(array[i], i)) return i;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Counts the number of elements in an array that satsify the given predicate.
|
|
||||||
*/
|
|
||||||
export const count = <T>(
|
|
||||||
array: T[],
|
|
||||||
predicate: (item: T, index: number) => boolean,
|
|
||||||
): number =>
|
|
||||||
array.reduce(
|
|
||||||
(acc, item, index) => (predicate(item, index) ? acc + 1 : acc),
|
|
||||||
0,
|
|
||||||
);
|
|
||||||
@@ -81,7 +81,7 @@ limitations under the License.
|
|||||||
}
|
}
|
||||||
|
|
||||||
.authLinks a {
|
.authLinks a {
|
||||||
color: var(--cpd-color-text-action-accent);
|
color: var(--accent);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,11 +14,11 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { FC, FormEvent, useCallback, useRef, useState } from "react";
|
import React, { FC, FormEvent, useCallback, useRef, useState } from "react";
|
||||||
import { useHistory, useLocation, Link } from "react-router-dom";
|
import { useHistory, useLocation, Link } from "react-router-dom";
|
||||||
import { Trans, useTranslation } from "react-i18next";
|
import { Trans, useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import Logo from "../icons/LogoLarge.svg?react";
|
import { ReactComponent as Logo } from "../icons/LogoLarge.svg";
|
||||||
import { useClient } from "../ClientContext";
|
import { useClient } from "../ClientContext";
|
||||||
import { FieldRow, InputField, ErrorMessage } from "../input/Input";
|
import { FieldRow, InputField, ErrorMessage } from "../input/Input";
|
||||||
import { Button } from "../button";
|
import { Button } from "../button";
|
||||||
@@ -30,13 +30,13 @@ import { Config } from "../config/Config";
|
|||||||
|
|
||||||
export const LoginPage: FC = () => {
|
export const LoginPage: FC = () => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
usePageTitle(t("login_title"));
|
usePageTitle(t("Login"));
|
||||||
|
|
||||||
const { setClient } = useClient();
|
const { setClient } = useClient();
|
||||||
const login = useInteractiveLogin();
|
const login = useInteractiveLogin();
|
||||||
const homeserver = Config.defaultHomeserverUrl(); // TODO: Make this configurable
|
const homeserver = Config.defaultHomeserverUrl(); // TODO: Make this configurable
|
||||||
const usernameRef = useRef<HTMLInputElement>(null);
|
const usernameRef = useRef<HTMLInputElement>();
|
||||||
const passwordRef = useRef<HTMLInputElement>(null);
|
const passwordRef = useRef<HTMLInputElement>();
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
@@ -49,27 +49,12 @@ export const LoginPage: FC = () => {
|
|||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
|
|
||||||
if (!homeserver || !usernameRef.current || !passwordRef.current) {
|
|
||||||
setError(Error("Login parameters are undefined"));
|
|
||||||
setLoading(false);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
login(homeserver, usernameRef.current.value, passwordRef.current.value)
|
login(homeserver, usernameRef.current.value, passwordRef.current.value)
|
||||||
.then(([client, session]) => {
|
.then(([client, session]) => {
|
||||||
if (!setClient) {
|
setClient(client, session);
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setClient({ client, session });
|
if (location.state && location.state.from) {
|
||||||
|
history.push(location.state.from);
|
||||||
const locationState = location.state;
|
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
||||||
// @ts-ignore
|
|
||||||
if (locationState && locationState.from) {
|
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
||||||
// @ts-ignore
|
|
||||||
history.push(locationState.from);
|
|
||||||
} else {
|
} else {
|
||||||
history.push("/");
|
history.push("/");
|
||||||
}
|
}
|
||||||
@@ -80,7 +65,7 @@ export const LoginPage: FC = () => {
|
|||||||
setLoading(false);
|
setLoading(false);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
[login, location, history, homeserver, setClient],
|
[login, location, history, homeserver, setClient]
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -90,29 +75,27 @@ export const LoginPage: FC = () => {
|
|||||||
<div className={styles.formContainer}>
|
<div className={styles.formContainer}>
|
||||||
<Logo width="auto" height="auto" className={styles.logo} />
|
<Logo width="auto" height="auto" className={styles.logo} />
|
||||||
|
|
||||||
<h2>{t("log_in")}</h2>
|
<h2>Log In</h2>
|
||||||
<h4>{t("login_subheading")}</h4>
|
<h4>To continue to Element</h4>
|
||||||
<form onSubmit={onSubmitLoginForm}>
|
<form onSubmit={onSubmitLoginForm}>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
<InputField
|
<InputField
|
||||||
type="text"
|
type="text"
|
||||||
ref={usernameRef}
|
ref={usernameRef}
|
||||||
placeholder={t("common.username")}
|
placeholder={t("Username")}
|
||||||
label={t("common.username")}
|
label={t("Username")}
|
||||||
autoCorrect="off"
|
autoCorrect="off"
|
||||||
autoCapitalize="none"
|
autoCapitalize="none"
|
||||||
prefix="@"
|
prefix="@"
|
||||||
suffix={`:${Config.defaultServerName()}`}
|
suffix={`:${Config.defaultServerName()}`}
|
||||||
data-testid="login_username"
|
|
||||||
/>
|
/>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
<InputField
|
<InputField
|
||||||
type="password"
|
type="password"
|
||||||
ref={passwordRef}
|
ref={passwordRef}
|
||||||
placeholder={t("common.password")}
|
placeholder={t("Password")}
|
||||||
label={t("common.password")}
|
label={t("Password")}
|
||||||
data-testid="login_password"
|
|
||||||
/>
|
/>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
{error && (
|
{error && (
|
||||||
@@ -121,20 +104,16 @@ export const LoginPage: FC = () => {
|
|||||||
</FieldRow>
|
</FieldRow>
|
||||||
)}
|
)}
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
<Button
|
<Button type="submit" disabled={loading}>
|
||||||
type="submit"
|
{loading ? t("Logging in…") : t("Login")}
|
||||||
disabled={loading}
|
|
||||||
data-testid="login_login"
|
|
||||||
>
|
|
||||||
{loading ? t("logging_in") : t("login_title")}
|
|
||||||
</Button>
|
</Button>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div className={styles.authLinks}>
|
<div className={styles.authLinks}>
|
||||||
<p>{t("login_auth_links_prompt")}</p>
|
<p>Not registered yet?</p>
|
||||||
<p>
|
<p>
|
||||||
<Trans i18nKey="login_auth_links">
|
<Trans>
|
||||||
<Link to="/register">Create an account</Link>
|
<Link to="/register">Create an account</Link>
|
||||||
{" Or "}
|
{" Or "}
|
||||||
<Link to="/">Access as a guest</Link>
|
<Link to="/">Access as a guest</Link>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import {
|
import React, {
|
||||||
ChangeEvent,
|
ChangeEvent,
|
||||||
FC,
|
FC,
|
||||||
FormEvent,
|
FormEvent,
|
||||||
@@ -27,14 +27,13 @@ import { useHistory, useLocation } from "react-router-dom";
|
|||||||
import { captureException } from "@sentry/react";
|
import { captureException } from "@sentry/react";
|
||||||
import { sleep } from "matrix-js-sdk/src/utils";
|
import { sleep } from "matrix-js-sdk/src/utils";
|
||||||
import { Trans, useTranslation } from "react-i18next";
|
import { Trans, useTranslation } from "react-i18next";
|
||||||
import { logger } from "matrix-js-sdk/src/logger";
|
|
||||||
|
|
||||||
import { FieldRow, InputField, ErrorMessage } from "../input/Input";
|
import { FieldRow, InputField, ErrorMessage } from "../input/Input";
|
||||||
import { Button } from "../button";
|
import { Button } from "../button";
|
||||||
import { useClientLegacy } from "../ClientContext";
|
import { useClient } from "../ClientContext";
|
||||||
import { useInteractiveRegistration } from "./useInteractiveRegistration";
|
import { useInteractiveRegistration } from "./useInteractiveRegistration";
|
||||||
import styles from "./LoginPage.module.css";
|
import styles from "./LoginPage.module.css";
|
||||||
import Logo from "../icons/LogoLarge.svg?react";
|
import { ReactComponent as Logo } from "../icons/LogoLarge.svg";
|
||||||
import { LoadingView } from "../FullScreenView";
|
import { LoadingView } from "../FullScreenView";
|
||||||
import { useRecaptcha } from "./useRecaptcha";
|
import { useRecaptcha } from "./useRecaptcha";
|
||||||
import { Caption, Link } from "../typography/Typography";
|
import { Caption, Link } from "../typography/Typography";
|
||||||
@@ -44,19 +43,19 @@ import { Config } from "../config/Config";
|
|||||||
|
|
||||||
export const RegisterPage: FC = () => {
|
export const RegisterPage: FC = () => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
usePageTitle(t("action.register"));
|
usePageTitle(t("Register"));
|
||||||
|
|
||||||
const { loading, authenticated, passwordlessUser, client, setClient } =
|
const { loading, isAuthenticated, isPasswordlessUser, client, setClient } =
|
||||||
useClientLegacy();
|
useClient();
|
||||||
|
const confirmPasswordRef = useRef<HTMLInputElement>();
|
||||||
const confirmPasswordRef = useRef<HTMLInputElement>(null);
|
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const [registering, setRegistering] = useState(false);
|
const [registering, setRegistering] = useState(false);
|
||||||
const [error, setError] = useState<Error>();
|
const [error, setError] = useState<Error>();
|
||||||
const [password, setPassword] = useState("");
|
const [password, setPassword] = useState("");
|
||||||
const [passwordConfirmation, setPasswordConfirmation] = useState("");
|
const [passwordConfirmation, setPasswordConfirmation] = useState("");
|
||||||
const { recaptchaKey, register } = useInteractiveRegistration();
|
const [privacyPolicyUrl, recaptchaKey, register] =
|
||||||
|
useInteractiveRegistration();
|
||||||
const { execute, reset, recaptchaId } = useRecaptcha(recaptchaKey);
|
const { execute, reset, recaptchaId } = useRecaptcha(recaptchaKey);
|
||||||
|
|
||||||
const onSubmitRegisterForm = useCallback(
|
const onSubmitRegisterForm = useCallback(
|
||||||
@@ -69,7 +68,7 @@ export const RegisterPage: FC = () => {
|
|||||||
|
|
||||||
if (password !== passwordConfirmation) return;
|
if (password !== passwordConfirmation) return;
|
||||||
|
|
||||||
const submit = async (): Promise<void> => {
|
const submit = async () => {
|
||||||
setRegistering(true);
|
setRegistering(true);
|
||||||
|
|
||||||
const recaptchaResponse = await execute();
|
const recaptchaResponse = await execute();
|
||||||
@@ -77,11 +76,10 @@ export const RegisterPage: FC = () => {
|
|||||||
userName,
|
userName,
|
||||||
password,
|
password,
|
||||||
userName,
|
userName,
|
||||||
recaptchaResponse,
|
recaptchaResponse
|
||||||
passwordlessUser,
|
|
||||||
);
|
);
|
||||||
|
|
||||||
if (client && client?.groupCallEventHandler && passwordlessUser) {
|
if (client && isPasswordlessUser) {
|
||||||
// Migrate the user's rooms
|
// Migrate the user's rooms
|
||||||
for (const groupCall of client.groupCallEventHandler.groupCalls.values()) {
|
for (const groupCall of client.groupCallEventHandler.groupCalls.values()) {
|
||||||
const roomId = groupCall.room.roomId;
|
const roomId = groupCall.room.roomId;
|
||||||
@@ -89,32 +87,24 @@ export const RegisterPage: FC = () => {
|
|||||||
try {
|
try {
|
||||||
await newClient.joinRoom(roomId);
|
await newClient.joinRoom(roomId);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
||||||
// @ts-ignore
|
|
||||||
if (error.errcode === "M_LIMIT_EXCEEDED") {
|
if (error.errcode === "M_LIMIT_EXCEEDED") {
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
||||||
// @ts-ignore
|
|
||||||
await sleep(error.data.retry_after_ms);
|
await sleep(error.data.retry_after_ms);
|
||||||
await newClient.joinRoom(roomId);
|
await newClient.joinRoom(roomId);
|
||||||
} else {
|
} else {
|
||||||
captureException(error);
|
captureException(error);
|
||||||
logger.error(`Couldn't join room ${roomId}`, error);
|
console.error(`Couldn't join room ${roomId}`, error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
setClient?.({ client: newClient, session });
|
setClient(newClient, session);
|
||||||
PosthogAnalytics.instance.eventSignup.cacheSignupEnd(new Date());
|
PosthogAnalytics.instance.eventSignup.cacheSignupEnd(new Date());
|
||||||
};
|
};
|
||||||
|
|
||||||
submit()
|
submit()
|
||||||
.then(() => {
|
.then(() => {
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
||||||
// @ts-ignore
|
|
||||||
if (location.state?.from) {
|
if (location.state?.from) {
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
||||||
// @ts-ignore
|
|
||||||
history.push(location.state?.from);
|
history.push(location.state?.from);
|
||||||
} else {
|
} else {
|
||||||
history.push("/");
|
history.push("/");
|
||||||
@@ -130,29 +120,27 @@ export const RegisterPage: FC = () => {
|
|||||||
register,
|
register,
|
||||||
location,
|
location,
|
||||||
history,
|
history,
|
||||||
passwordlessUser,
|
isPasswordlessUser,
|
||||||
reset,
|
reset,
|
||||||
execute,
|
execute,
|
||||||
client,
|
client,
|
||||||
setClient,
|
setClient,
|
||||||
],
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (password && passwordConfirmation && password !== passwordConfirmation) {
|
if (password && passwordConfirmation && password !== passwordConfirmation) {
|
||||||
confirmPasswordRef.current?.setCustomValidity(
|
confirmPasswordRef.current?.setCustomValidity(t("Passwords must match"));
|
||||||
t("register.passwords_must_match"),
|
|
||||||
);
|
|
||||||
} else {
|
} else {
|
||||||
confirmPasswordRef.current?.setCustomValidity("");
|
confirmPasswordRef.current?.setCustomValidity("");
|
||||||
}
|
}
|
||||||
}, [password, passwordConfirmation, t]);
|
}, [password, passwordConfirmation, t]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!loading && authenticated && !passwordlessUser && !registering) {
|
if (!loading && isAuthenticated && !isPasswordlessUser && !registering) {
|
||||||
history.push("/");
|
history.push("/");
|
||||||
}
|
}
|
||||||
}, [loading, history, authenticated, passwordlessUser, registering]);
|
}, [loading, history, isAuthenticated, isPasswordlessUser, registering]);
|
||||||
|
|
||||||
if (loading) {
|
if (loading) {
|
||||||
return <LoadingView />;
|
return <LoadingView />;
|
||||||
@@ -166,19 +154,18 @@ export const RegisterPage: FC = () => {
|
|||||||
<div className={styles.content}>
|
<div className={styles.content}>
|
||||||
<div className={styles.formContainer}>
|
<div className={styles.formContainer}>
|
||||||
<Logo width="auto" height="auto" className={styles.logo} />
|
<Logo width="auto" height="auto" className={styles.logo} />
|
||||||
<h2>{t("register_heading")}</h2>
|
<h2>Create your account</h2>
|
||||||
<form onSubmit={onSubmitRegisterForm}>
|
<form onSubmit={onSubmitRegisterForm}>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
<InputField
|
<InputField
|
||||||
type="text"
|
type="text"
|
||||||
name="userName"
|
name="userName"
|
||||||
placeholder={t("common.username")}
|
placeholder={t("Username")}
|
||||||
label={t("common.username")}
|
label={t("Username")}
|
||||||
autoCorrect="off"
|
autoCorrect="off"
|
||||||
autoCapitalize="none"
|
autoCapitalize="none"
|
||||||
prefix="@"
|
prefix="@"
|
||||||
suffix={`:${Config.defaultServerName()}`}
|
suffix={`:${Config.defaultServerName()}`}
|
||||||
data-testid="register_username"
|
|
||||||
/>
|
/>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
@@ -186,13 +173,12 @@ export const RegisterPage: FC = () => {
|
|||||||
required
|
required
|
||||||
name="password"
|
name="password"
|
||||||
type="password"
|
type="password"
|
||||||
onChange={(e: ChangeEvent<HTMLInputElement>): void =>
|
onChange={(e: ChangeEvent<HTMLInputElement>) =>
|
||||||
setPassword(e.target.value)
|
setPassword(e.target.value)
|
||||||
}
|
}
|
||||||
value={password}
|
value={password}
|
||||||
placeholder={t("common.password")}
|
placeholder={t("Password")}
|
||||||
label={t("common.password")}
|
label={t("Password")}
|
||||||
data-testid="register_password"
|
|
||||||
/>
|
/>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
@@ -200,18 +186,17 @@ export const RegisterPage: FC = () => {
|
|||||||
required
|
required
|
||||||
type="password"
|
type="password"
|
||||||
name="passwordConfirmation"
|
name="passwordConfirmation"
|
||||||
onChange={(e: ChangeEvent<HTMLInputElement>): void =>
|
onChange={(e: ChangeEvent<HTMLInputElement>) =>
|
||||||
setPasswordConfirmation(e.target.value)
|
setPasswordConfirmation(e.target.value)
|
||||||
}
|
}
|
||||||
value={passwordConfirmation}
|
value={passwordConfirmation}
|
||||||
placeholder={t("register_confirm_password_label")}
|
placeholder={t("Confirm password")}
|
||||||
label={t("register_confirm_password_label")}
|
label={t("Confirm password")}
|
||||||
ref={confirmPasswordRef}
|
ref={confirmPasswordRef}
|
||||||
data-testid="register_confirm_password"
|
|
||||||
/>
|
/>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
<Caption>
|
<Caption>
|
||||||
<Trans i18nKey="recaptcha_caption">
|
<Trans>
|
||||||
This site is protected by ReCAPTCHA and the Google{" "}
|
This site is protected by ReCAPTCHA and the Google{" "}
|
||||||
<Link href="https://www.google.com/policies/privacy/">
|
<Link href="https://www.google.com/policies/privacy/">
|
||||||
Privacy Policy
|
Privacy Policy
|
||||||
@@ -223,9 +208,7 @@ export const RegisterPage: FC = () => {
|
|||||||
apply.
|
apply.
|
||||||
<br />
|
<br />
|
||||||
By clicking "Register", you agree to our{" "}
|
By clicking "Register", you agree to our{" "}
|
||||||
<Link href={Config.get().eula}>
|
<Link href={privacyPolicyUrl}>Terms and conditions</Link>
|
||||||
End User Licensing Agreement (EULA)
|
|
||||||
</Link>
|
|
||||||
</Trans>
|
</Trans>
|
||||||
</Caption>
|
</Caption>
|
||||||
{error && (
|
{error && (
|
||||||
@@ -234,21 +217,15 @@ export const RegisterPage: FC = () => {
|
|||||||
</FieldRow>
|
</FieldRow>
|
||||||
)}
|
)}
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
<Button
|
<Button type="submit" disabled={registering}>
|
||||||
type="submit"
|
{registering ? t("Registering…") : t("Register")}
|
||||||
disabled={registering}
|
|
||||||
data-testid="register_register"
|
|
||||||
>
|
|
||||||
{registering
|
|
||||||
? t("register.registering")
|
|
||||||
: t("action.register")}
|
|
||||||
</Button>
|
</Button>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
<div id={recaptchaId} />
|
<div id={recaptchaId} />
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div className={styles.authLinks}>
|
<div className={styles.authLinks}>
|
||||||
<Trans i18nKey="register_auth_links">
|
<Trans>
|
||||||
<p>Already have an account?</p>
|
<p>Already have an account?</p>
|
||||||
<p>
|
<p>
|
||||||
<Link to="/login">Log in</Link>
|
<Link to="/login">Log in</Link>
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user