diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
index af0a4e863..485bfd8c5 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -1,6 +1,6 @@
name: 🐛 Bug report
description: Create a report to help us improve
-labels: ["Bug"]
+labels: bug
body:
- type: textarea
id: bug-description
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index c91153caa..ef50c0447 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,8 +1,5 @@
blank_issues_enabled: false
contact_links:
- - name: FluffyChat Community
+ - name: 👬 FluffyChat Community
url: https://matrix.to/#/#fluffychat:matrix.org
- about: Please ask and answer questions here.
- - name: Report security vulnerabilities
- url: https://matrix.to/#/@krille:janian.de
- about: Please report security vulnerabilities here.
+ about: Please ask and answer questions here.
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
index a29949d66..4007c8837 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.yml
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -1,6 +1,6 @@
name: 💡 Feature Request
description: Suggest an idea for this project
-labels: ["Enhancement"]
+labels: enhancement
body:
- type: textarea
id: feature-description
diff --git a/.github/ISSUE_TEMPLATE/test_report.md b/.github/ISSUE_TEMPLATE/test_report.md
new file mode 100644
index 000000000..9a7ed7028
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/test_report.md
@@ -0,0 +1,41 @@
+---
+name: 📝 Test
+about: A detailed protocol for testing all features
+title: 'Test Report'
+labels: test
+---
+
+1. App receives push notifications over Firebase Cloud Messaging when it is in background/terminated:
+ - [ ] Android
+ - [ ] iOS
+2. App receives push notifications over Unified Push when it is in background/terminated:
+ - [ ] Android
+3. Notifications for rooms, which are not in foreground, are working:
+ - [ ] Web
+ - [ ] Linux
+4. QR Code scanner can still scan links to start a new chat:
+ - [ ] Android
+ - [ ] iOS
+5. Recording and playing voice messages works:
+ - [ ] Android
+ - [ ] iOS
+ - [ ] Web (play only)
+6. Sending and downloading files/images works:
+ - [ ] Android
+ - [ ] iOS
+ - [ ] Web
+ - [ ] Linux
+7. Sharing texts/files/images from other apps to FluffyChat works:
+ - [ ] Android
+ - [ ] iOS
+8. Login with single sign on works:
+ - [ ] Android
+ - [ ] iOS
+ - [ ] Web
+ - [ ] Linux
+9. Test if the app lock works as intended and appears on opening/resuming the app:
+ - [ ] Android
+ - [ ] iOS
+10. Drag&Drop to send a file into a chat still works:
+ - [ ] Web
+ - [ ] Linux
diff --git a/.github/workflows/auto_merge.yaml b/.github/workflows/auto_merge.yaml
deleted file mode 100644
index 2dab06c40..000000000
--- a/.github/workflows/auto_merge.yaml
+++ /dev/null
@@ -1,16 +0,0 @@
-name: Auto merge
-
-on: pull_request_target
-
-jobs:
- auto-approve:
- runs-on: ubuntu-latest
- permissions:
- pull-requests: write
- if: github.actor == 'dependabot[bot]' || github.actor == 'weblate'
- steps:
- - uses: hmarr/auto-approve-action@v3
- - name: automerge
- uses: "pascalgn/automerge-action@v0.15.6"
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
diff --git a/.github/workflows/issue_pr_management.yaml b/.github/workflows/issue_pr_management.yaml
new file mode 100644
index 000000000..490c9a91c
--- /dev/null
+++ b/.github/workflows/issue_pr_management.yaml
@@ -0,0 +1,26 @@
+name: Close Inactive Issues And PRs
+on:
+ schedule:
+ - cron: "30 1 * * *"
+
+jobs:
+ close-issues:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - uses: actions/stale@v5
+ with:
+ days-before-issue-stale: 30
+ days-before-issue-close: 14
+ stale-issue-label: "stale"
+ stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
+ close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
+ stale-pr-message: "This pull request is stale because it has been open for 30 days with no activity."
+ close-pr-message: "This pull request was closed because it has been inactive for 14 days since being marked as stale."
+ days-before-pr-stale: 30
+ days-before-pr-close: 14
+ exempt-milestones: true
+ exempt-assignees: krille-chan
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/main_deploy.yaml b/.github/workflows/main_deploy.yaml
index f8603f30e..4800aa0c5 100644
--- a/.github/workflows/main_deploy.yaml
+++ b/.github/workflows/main_deploy.yaml
@@ -5,13 +5,14 @@ on:
branches:
- main
-concurrency:
- group: main_deploy
- cancel-in-progress: true
-
+env:
+ # Setting an environment variable with the value of a configuration variable
+ WEB_APP_ENV: ${{ vars.WEB_APP_ENV }}
+
jobs:
deploy_web:
runs-on: ubuntu-latest
+ environment: staging
steps:
- uses: actions/checkout@v2
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
@@ -25,56 +26,33 @@ jobs:
- name: Prepare web
run: ./scripts/prepare-web.sh
- name: Build Release Web
- run: flutter build web --release --verbose --source-maps --base-href "/web/"
+ run: ./scripts/build-web.sh
- name: Build Website
run: |
- cd docs && npx tailwindcss -o ./tailwind.css --minify && cd ..
- mv docs public
- mv repo public || true
- mv build/web/ public/web
- echo "fluffychat.im" > ./public/CNAME
+ mv build/web public
+ touch public/.env
+ echo "$WEB_APP_ENV" >> public/.env
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.PAGES_DEPLOY_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages
+ # cname: app.staging.pangea.chat
- deploy_playstore_internal:
+ update_sentry:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
- - run: cat .github/workflows/versions.env >> $GITHUB_ENV
- - uses: actions/setup-java@v1
+ - uses: actions/checkout@v3
with:
- java-version: ${{ env.JAVA_VERSION }}
- - uses: subosito/flutter-action@v2
- with:
- flutter-version: ${{ env.FLUTTER_VERSION }}
- cache: true
- - name: Set up Ruby
- uses: ruby/setup-ruby@v1
- with:
- ruby-version: 2.7
- - name: Install Fastlane
- run: gem install fastlane -NV
- - name: Apply Google Services Patch
- run: git apply ./scripts/enable-android-google-services.patch
- - run: flutter pub get
- - name: Prepare Android Release Build
+ fetch-depth: 0
+
+ - name: Create Sentry release
+ uses: getsentry/action-release@v1
env:
- FDROID_KEY: ${{ secrets.FDROID_KEY }}
- FDROID_KEY_PASS: ${{ secrets.FDROID_KEY_PASS }}
- PLAYSTORE_DEPLOY_KEY: ${{ secrets.PLAYSTORE_DEPLOY_KEY }}
- run: ./scripts/prepare-android-release.sh
- - name: Build Android Release
- run: flutter build appbundle --target-platform android-arm,android-arm64,android-x64
- - name: Deploy Android Release
- run: |
- mkdir -p build/android
- cp build/app/outputs/bundle/release/app-release.aab build/android/
- cd android
- bundle install
- bundle update fastlane
- bundle exec fastlane deploy_internal_test
- cd ..
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
+ SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
+ SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
+ # SENTRY_URL: https://sentry.io/
+ with:
+ environment: staging
diff --git a/.github/workflows/old.yml b/.github/workflows/old.yml
new file mode 100644
index 000000000..a701797de
--- /dev/null
+++ b/.github/workflows/old.yml
@@ -0,0 +1,110 @@
+name: Old Release Workflow
+
+on:
+ push:
+ branches:
+ - master-unused
+
+concurrency:
+ group: release_workflow
+ cancel-in-progress: true
+
+jobs:
+ build_staging:
+ runs-on: ubuntu-latest
+ environment: staging
+ steps:
+ - uses: actions/checkout@v2
+ - run: cat .github/workflows/versions.env >> $GITHUB_ENV
+ - run: echo "$WEB_APP_ENV" > .env
+
+ - name: Set up Flutter
+ uses: subosito/flutter-action@v2
+ with:
+ flutter-version: ${{ env.FLUTTER_VERSION }}
+
+ - name: Prepare web
+ run: ./scripts/prepare-web.sh
+
+ - name: Build web
+ run: ./scripts/build-web.sh
+
+ - name: Upload artifacts
+ uses: actions/upload-artifact@v2
+ with:
+ name: web-artifact
+ path: ./build/web
+
+ upload_sentry:
+ runs-on: ubuntu-latest
+ needs: build_staging
+
+ steps:
+ - uses: actions/checkout@v2
+ - run: cat .github/workflows/versions.env >> $GITHUB_ENV
+ - run: echo "$WEB_APP_ENV" > .env
+ - name: Build web
+ run: ./scripts/upload-sentry.sh
+
+ deploy_staging:
+ runs-on: ubuntu-latest
+ needs: build_staging
+
+ steps:
+ - uses: actions/checkout@v2
+ - run: cat .github/workflows/versions.env >> $GITHUB_ENV
+ - run: echo "$WEB_APP_ENV" > .env
+ - name: Set up AWS CLI
+ uses: aws-actions/configure-aws-credentials@v2
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
+
+ - name: Download all workflow run artifacts
+ uses: actions/download-artifact@v3
+
+ build_production:
+ runs-on: ubuntu-latest
+ environment: production
+ steps:
+ - uses: actions/checkout@v2
+ - run: cat .github/workflows/versions.env >> $GITHUB_ENV
+ - run: echo "$WEB_APP_ENV" > .env
+
+ - name: Set up Flutter
+ uses: subosito/flutter-action@v2
+ with:
+ flutter-version: ${{ env.FLUTTER_VERSION }}
+
+ - name: Prepare web
+ run: ./scripts/prepare-web.sh
+
+ - name: Build web
+ run: ./scripts/build-web.sh
+
+ - name: Upload artifacts
+ uses: actions/upload-artifact@v2
+ with:
+ name: web-artifact
+ path: ./build/web
+
+ deploy_production:
+ environment: production
+ runs-on: ubuntu-latest
+ needs: build_production
+
+ steps:
+ - uses: actions/checkout@v2
+ - run: cat .github/workflows/versions.env >> $GITHUB_ENV
+ - run: echo "$WEB_APP_ENV" > .env
+
+ - name: Download all workflow run artifacts
+ uses: actions/download-artifact@v3
+
+ - name: Set up AWS CLI
+ uses: aws-actions/configure-aws-credentials@v2
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
diff --git a/.github/workflows/process_tags.yaml b/.github/workflows/process_tags.yaml
new file mode 100644
index 000000000..ef9a4b137
--- /dev/null
+++ b/.github/workflows/process_tags.yaml
@@ -0,0 +1,28 @@
+on:
+ push:
+ tags:
+ - "v*"
+ - "rc*"
+
+name: Process Tags
+
+jobs:
+ build:
+ name: Create Release
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Get Changelog Entry
+ id: changelog_reader
+ uses: mindsers/changelog-reader-action@v2
+ - name: Create Release
+ id: create_release
+ uses: actions/create-release@v1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ tag_name: ${{ github.ref }}
+ release_name: Release ${{ github.ref }}
+ body: ${{ steps.changelog_reader.outputs.changes }}
+ draft: false
+ prerelease: ${{ startsWith(github.ref, 'rc') }}
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index e8b4af2bb..e26c8f2fa 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -25,22 +25,22 @@ jobs:
- name: Prepare web
run: ./scripts/prepare-web.sh
- name: Build Release Web
- run: flutter build web --release --source-maps
+ run: flutter build web --dart-define=FLUTTER_WEB_CANVASKIT_URL=canvaskit/ --release --source-maps
- name: Create archive
- run: tar -czf fluffychat-web.tar.gz build/web/
+ run: tar -czf pangeachat-web.tar.gz build/web/
- name: Upload Web Build
uses: actions/upload-artifact@v2
with:
name: Web Build
- path: fluffychat-web.tar.gz
+ path: pangeachat-web.tar.gz
- name: Upload to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.PAGES_DEPLOY_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
- asset_path: fluffychat-web.tar.gz
- asset_name: fluffychat-web.tar.gz
+ asset_path: pangeachat-web.tar.gz
+ asset_name: pangeachat-web.tar.gz
asset_content_type: application/gzip
build_apk:
@@ -57,6 +57,10 @@ jobs:
cache: true
- name: Apply Google Services Patch
run: git apply ./scripts/enable-android-google-services.patch
+ - name: Remove Emoji Font
+ run: |
+ rm -rf fonts/NotoEmoji
+ yq -i 'del( .flutter.fonts[] | select(.family == "NotoEmoji") )' pubspec.yaml
- run: flutter pub get
- name: Prepare Android Release Build
env:
@@ -120,6 +124,10 @@ jobs:
run: gem install fastlane -NV
- name: Apply Google Services Patch
run: git apply ./scripts/enable-android-google-services.patch
+ - name: Remove Emoji Font
+ run: |
+ rm -rf fonts/NotoEmoji
+ yq -i 'del( .flutter.fonts[] | select(.family == "NotoEmoji") )' pubspec.yaml
- run: flutter pub get
- name: Prepare Android Release Build
env:
diff --git a/.github/workflows/versions.env b/.github/workflows/versions.env
index 30e7fdfb8..2fd07e8a9 100644
--- a/.github/workflows/versions.env
+++ b/.github/workflows/versions.env
@@ -1,2 +1,2 @@
-FLUTTER_VERSION=3.13.7
+FLUTTER_VERSION=3.16.0
JAVA_VERSION=17
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 0ce56e79e..ef7038f03 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,8 @@
.history
.svn/
prime
+*.env
+!/public/.env
# libolm package
/assets/js/package
@@ -36,6 +38,9 @@ prime
.pub/
/build/
+# Gitlab runner locally
+/builds/
+
# Web related
docs/tailwind.css
@@ -53,6 +58,7 @@ lib/l10n_old
ios/Flutter/.last_build_id
ios/Podfile.lock
ios/Runner.ipa
+scripts/.credentials
/windows/out
/winuwp/out
@@ -60,3 +66,5 @@ ios/Runner.ipa
/macos/out
.vs
olm
+
+needed-translations.txt
diff --git a/.metadata b/.metadata
index 9a6ebb3f7..9b7605951 100644
--- a/.metadata
+++ b/.metadata
@@ -1,7 +1,7 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
-# This file should be version controlled and should not be manually edited.
+# This file should be version controlled.
version:
revision: "efbf63d9c66b9f6ec30e9ad4611189aa80003d31"
@@ -15,9 +15,24 @@ migration:
- platform: root
create_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
base_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ - platform: android
+ create_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ base_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ - platform: ios
+ create_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ base_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
- platform: linux
create_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
base_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ - platform: macos
+ create_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ base_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ - platform: web
+ create_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ base_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ - platform: windows
+ create_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
+ base_revision: efbf63d9c66b9f6ec30e9ad4611189aa80003d31
# User provided section
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 000000000..12f26c9a3
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,71 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "pangea-chat",
+ "request": "launch",
+ "type": "dart",
+ // "args": [
+ // "-d",
+ // "chrome",
+ // "--web-port",
+ // "49632"
+ // ],
+ },
+ {
+ "name": "pangea-chat (profile mode)",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "pangea-chat (release mode)",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ },
+ {
+ "name": "pangea_choreographer",
+ "cwd": "pangea_packages\\pangea_choreographer",
+ "request": "launch",
+ "type": "dart"
+ },
+ {
+ "name": "pangea_choreographer (profile mode)",
+ "cwd": "pangea_packages\\pangea_choreographer",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "pangea_choreographer (release mode)",
+ "cwd": "pangea_packages\\pangea_choreographer",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ },
+ {
+ "name": "pangea_language",
+ "cwd": "pangea_packages\\pangea_language",
+ "request": "launch",
+ "type": "dart"
+ },
+ {
+ "name": "pangea_language (profile mode)",
+ "cwd": "pangea_packages\\pangea_language",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "pangea_language (release mode)",
+ "cwd": "pangea_packages\\pangea_language",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 000000000..dd15e28ee
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,9 @@
+{
+ "dart.previewLsp": true,
+ "editor.codeActionsOnSave": {
+ "source.fixAll": true,
+ "source.organizeImports": true,
+ "source.sortMembers": false
+ },
+ "editor.formatOnSave": true
+}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 69dd95a8c..f8f042378 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,67 @@
+## v1.15.1
+- feat: Make all text in chat selectable on desktop (krille-chan)
+- chore: Add border to images in timeline (krille-chan)
+- chore: added android audio sharing intent (Aryan Arora)
+- fix: Dockerfile: install jq in the builder image (David Douard)
+- fix: Cannot pin messages of other users (Krille)
+- fix: Emojipicker flickering because noRecent (krille-chan)
+- fix: LoadProfileBottomSheet accessing disposed outerContext (Aryan Arora)
+- fix: More stable scroll up to event (krille-chan)
+- fix: Properly capitalize Linux window title (kramo)
+- fix: Remove failed to sent events (krille-chan)
+- fix: Routing glitch when using SSO on desktop (krille-chan)
+- fix: SSO with no identity providers (krille-chan)
+- refactor: Do not init client in background mode on Android (krille-chan)
+- refactor: Store and fix missing persistence of some values (krille-chan)
+- Translated using Weblate (Arabic) (Rex_sa)
+- Translated using Weblate (Basque) (xabirequejo)
+- Translated using Weblate (Chinese (Simplified)) (Eric)
+- Translated using Weblate (Czech) (Vojtěch Fošnár)
+- Translated using Weblate (Dutch) (Jelv)
+- Translated using Weblate (Estonian) (Priit Jõerüüt)
+- Translated using Weblate (Finnish) (Aminda Suomalainen)
+- Translated using Weblate (German) (Haui)
+- Translated using Weblate (Ukrainian) (Ihor Hordiichuk)
+
+## v1.15.0
+- feat: Add experimental todo list for rooms (krille-chan)
+- feat: better scroll to last read message handling (krille-chan)
+- build: Add appid suffix to android debug builds (krille-chan)
+- build: Download canvaskit on build for flutter web (krille-chan)
+- build: Update to Flutter 3.13.9 (krille-chan)
+- chore: Add descriptions in the areYouSure dialogs for better UX (krille-chan)
+- chore: Adjust bitrate for smaller voice messages (krille-chan)
+- chore: Change way how to seek in audioplayer (Krille)
+- chore: Limit image file and video picker until we have a background service (krille-chan)
+- chore: Minor design fixes (Krille)
+- design: Make incoming messages color more light (krille-chan)
+- design: Make key verification an adaptive dialog (krille-chan)
+- design: Make own chat bubble primary color for better contrast (krille-chan)
+- fix: Create chat dialog crashes sometimes and power level textfield does not validate input (krille-chan)
+- fix: Remove uncompatible dependencies connectivity_plus and wakelock (Krille)
+- fix: Use correct localization for redactedBy (krille-chan)
+- fix: noFCM warning dialog (krille-chan)
+- fix: render tg-forward as blockquote style (krille-chan)
+- fix: Archive does not update its state
+- refactor: Change audio codec to opus where supported to have better compatibility with Element (Krille)
+- refactor: Make file dialog adaptive and adjust design (krille-chan)
+- refactor: Preload notification sound on web (Krille)
+- refactor: Remove unused config (krille-chan)
+- refactor: Remove unused config params (krille-chan)
+- refactor: Update FutureLoadingDialog (krille-chan)
+- refactor: use locally hosted canvaskit instead of calling google (root)
+- Translated using Weblate (Arabic) (Rex_sa)
+- Translated using Weblate (Basque) (xabirequejo)
+- Translated using Weblate (Chinese (Simplified)) (Eric)
+- Translated using Weblate (Croatian) (Milo Ivir)
+- Translated using Weblate (German) (Christian)
+- Translated using Weblate (German) (Ettore Atalan)
+- Translated using Weblate (Hungarian) (H Tamás)
+- Translated using Weblate (Polish) (Tomasz W)
+- Translated using Weblate (Russian) (v1s7)
+- Translated using Weblate (Slovak) (Jozef Gaal)
+- Translated using Weblate (Thai) (Amy/Atius)
+
## v1.14.5
- Hotfix iOS crashes on start
- Hotfix cannot reset applock
diff --git a/Dockerfile b/Dockerfile
index 7a696ce54..e5416091c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
FROM ghcr.io/cirruslabs/flutter as builder
-RUN sudo apt update && sudo apt install curl -y
+RUN sudo apt update && sudo apt install curl jq -y
COPY . /app
WORKDIR /app
RUN ./scripts/prepare-web.sh
RUN flutter pub get
-RUN flutter build web --release --source-maps
+RUN flutter build web --dart-define=FLUTTER_WEB_CANVASKIT_URL=canvaskit/ --release --source-maps
FROM docker.io/nginx:alpine
RUN rm -rf /usr/share/nginx/html
-COPY --from=builder /app/build/web /usr/share/nginx/html
\ No newline at end of file
+COPY --from=builder /app/build/web /usr/share/nginx/html
diff --git a/README.md b/README.md
index f7986baa7..3c2b5d9b6 100644
--- a/README.md
+++ b/README.md
@@ -66,4 +66,4 @@ Please visit the [Wiki](https://github.com/krille-chan/fluffychat/wiki) for buil
* WoodenBeaver sound theme for the notification sound.
-* The Matrix Foundation for making and maintaining the [emoji translations](https://github.com/matrix-org/matrix-doc/blob/main/data-definitions/sas-emoji.json) used for emoji verification, licensed Apache 2.0
+* The Matrix Foundation for making and maintaining the [emoji translations](https://github.com/matrix-org/matrix-spec/blob/main/data-definitions/sas-emoji.json) used for emoji verification, licensed Apache 2.0
diff --git a/TRANSLATORS_GUIDE.md b/TRANSLATORS_GUIDE.md
new file mode 100644
index 000000000..d5bc4f8fe
--- /dev/null
+++ b/TRANSLATORS_GUIDE.md
@@ -0,0 +1,35 @@
+# Translators Guide
+
+There are 3 main types of strings to be translated.
+
+## Simple
+```
+Add new friend
+```
+They are just plain text and are to be translated in full.
+
+## Placeholder
+```
+{username} changed their avatar
+```
+Contains one or more words surrounded by curly brackets "`{}`". Anything outside of the curly brackets is to be translated as normal, but the words in the curly brackets are **NOT** to be translated. In the above example "`{username}`" will be replaced by the users actual username by FluffyChat.
+
+## Plural
+
+- {count,plural, =1{**1 more event**} other{{count} **more events**}}
+
+This is the most complicated string type, the parts in bold are the only parts that need translating in this string. You can identify plural strings by seeing the pattern `{word,plural,` at the start. `=1` and `other` are "selectors" so you can have multiple different translations for different quantities. `other` is the only required selector and will be chosen if the count does not match any other selectors.
+
+Selector | Matches
+---|---
+=0 | a count of exactly 0
+=1 | a count of exactly 1
+=2 | a count of exactly 2
+other | any number unless it matches a more specific rule
+
+There is also "few" and "many", but they seem to have language specific meaning.
+
+Also the selectors do not need to match the English version such as your language may not even use different words for when there is more than one of something so:
+ - {count,plural, other{{count} \}}
+
+could be a perfectly resonable way to translate.
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 923f82e0a..bc33501d7 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -22,6 +22,7 @@ if (flutterVersionName == null) {
}
apply plugin: 'com.android.application'
+apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
@@ -32,7 +33,7 @@ if (keystorePropertiesFile.exists()) {
}
android {
- compileSdkVersion 33
+ compileSdkVersion 34
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
@@ -43,7 +44,7 @@ android {
}
defaultConfig {
- applicationId "chat.fluffy.fluffychat"
+ applicationId "com.talktolearn.chat"
minSdkVersion 19
targetSdkVersion 33
versionCode flutterVersionCode.toInteger()
@@ -65,11 +66,20 @@ android {
buildTypes {
debug {
signingConfig signingConfigs.debug
+ applicationIdSuffix ""
+ versionNameSuffix ""
}
release {
signingConfig signingConfigs.release
}
}
+ // https://stackoverflow.com/a/77494454/8222484
+ packagingOptions {
+ pickFirst 'lib/x86/libc++_shared.so'
+ pickFirst 'lib/x86_64/libc++_shared.so'
+ pickFirst 'lib/armeabi-v7a/libc++_shared.so'
+ pickFirst 'lib/arm64-v8a/libc++_shared.so'
+ }
}
flutter {
diff --git a/android/app/google-services.json b/android/app/google-services.json
index e33988c40..565c634cb 100644
--- a/android/app/google-services.json
+++ b/android/app/google-services.json
@@ -1,40 +1,40 @@
{
"project_info": {
- "project_number": "865731724731",
- "project_id": "fluffychat-ef3e8",
- "storage_bucket": "fluffychat-ef3e8.appspot.com"
+ "project_number": "545984292675",
+ "project_id": "pangea-chat-936ee",
+ "storage_bucket": "pangea-chat-936ee.appspot.com"
},
"client": [
{
"client_info": {
- "mobilesdk_app_id": "1:865731724731:android:ec427b3b1dcd4a1e64309e",
+ "mobilesdk_app_id": "1:545984292675:android:d808acce7a80c20bb931f6",
"android_client_info": {
- "package_name": "chat.fluffy.fluffychat"
+ "package_name": "com.talktolearn.chat"
}
},
"oauth_client": [
{
- "client_id": "865731724731-od6969v178ul9970elgacpt936v5t7qg.apps.googleusercontent.com",
+ "client_id": "545984292675-2amsnoan1mt6lec1fld1a7eagu6gej7o.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
- "current_key": "AIzaSyBLdZpGSPjcinikB4lAU6awW_h88NG17Sg"
+ "current_key": "AIzaSyAyWBbl83WXzbVr6txyCmlUsZhpWomQfdg"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
- "client_id": "865731724731-od6969v178ul9970elgacpt936v5t7qg.apps.googleusercontent.com",
+ "client_id": "545984292675-2amsnoan1mt6lec1fld1a7eagu6gej7o.apps.googleusercontent.com",
"client_type": 3
},
{
- "client_id": "865731724731-ofdr7e6m04murgb1bvchlj9oaos0q5i3.apps.googleusercontent.com",
+ "client_id": "545984292675-f5p76l3h9sibsonrct7a8l9ca3c69at0.apps.googleusercontent.com",
"client_type": 2,
"ios_info": {
- "bundle_id": "im.fluffychat.app"
+ "bundle_id": "com.talktolearn.chat"
}
}
]
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
deleted file mode 100644
index 4a2a1f5d7..000000000
--- a/android/app/src/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index f57cee1b7..9e52b2a59 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -1,6 +1,6 @@
+ package="com.talktolearn.chat" android:installLocation="auto">
+
+
+
-
+
@@ -95,6 +99,11 @@
+
+
+
+
+
-
+
-
+
+
diff --git a/android/app/src/main/kotlin/com/talktolearn/chat/FcmPushService.kt b/android/app/src/main/kotlin/com/talktolearn/chat/FcmPushService.kt
new file mode 100644
index 000000000..ad301c9f0
--- /dev/null
+++ b/android/app/src/main/kotlin/com/talktolearn/chat/FcmPushService.kt
@@ -0,0 +1,36 @@
+/*package com.talktolearn.chat
+
+import com.famedly.fcm_shared_isolate.FcmSharedIsolateService
+
+import com.talktolearn.chat.MainActivity
+
+import io.flutter.embedding.android.FlutterActivity
+import io.flutter.embedding.engine.FlutterEngine
+import io.flutter.view.FlutterMain
+import io.flutter.embedding.engine.dart.DartExecutor.DartEntrypoint
+
+import android.content.Context
+import android.os.Bundle
+import android.util.Log
+import android.view.WindowManager
+
+class FcmPushService : FcmSharedIsolateService() {
+ override fun getEngine(): FlutterEngine {
+ return provideEngine(getApplicationContext())
+ }
+
+ companion object {
+ fun provideEngine(context: Context): FlutterEngine {
+ var engine = MainActivity.engine
+ if (engine == null) {
+ engine = MainActivity.provideEngine(context)
+ engine.getLocalizationPlugin().sendLocalesToFlutter(
+ context.getResources().getConfiguration())
+ engine.getDartExecutor().executeDartEntrypoint(
+ DartEntrypoint.createDefault())
+ }
+ return engine
+ }
+ }
+}
+*/
\ No newline at end of file
diff --git a/android/app/src/main/kotlin/com/talktolearn/chat/MainActivity.kt b/android/app/src/main/kotlin/com/talktolearn/chat/MainActivity.kt
new file mode 100644
index 000000000..77d3c6e32
--- /dev/null
+++ b/android/app/src/main/kotlin/com/talktolearn/chat/MainActivity.kt
@@ -0,0 +1,33 @@
+package com.talktolearn.chat
+
+import io.flutter.embedding.android.FlutterActivity
+import io.flutter.embedding.engine.FlutterEngine
+
+import android.content.Context
+import androidx.multidex.MultiDex
+
+class MainActivity : FlutterActivity() {
+
+ override fun attachBaseContext(base: Context) {
+ super.attachBaseContext(base)
+ MultiDex.install(this)
+ }
+
+
+ override fun provideFlutterEngine(context: Context): FlutterEngine? {
+ return provideEngine(this)
+ }
+
+ override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
+ // do nothing, because the engine was been configured in provideEngine
+ }
+
+ companion object {
+ var engine: FlutterEngine? = null
+ fun provideEngine(context: Context): FlutterEngine {
+ val eng = engine ?: FlutterEngine(context, emptyArray(), true, false)
+ engine = eng
+ return eng
+ }
+ }
+}
diff --git a/android/app/src/main/kotlin/com/talktolearn/chat/UnifiedPushService.kt b/android/app/src/main/kotlin/com/talktolearn/chat/UnifiedPushService.kt
new file mode 100644
index 000000000..3c1696e65
--- /dev/null
+++ b/android/app/src/main/kotlin/com/talktolearn/chat/UnifiedPushService.kt
@@ -0,0 +1,23 @@
+package com.talktolearn.chat
+
+import io.flutter.embedding.engine.FlutterEngine
+import io.flutter.embedding.engine.dart.DartExecutor
+import org.unifiedpush.flutter.connector.UnifiedPushReceiver
+
+import android.content.Context
+
+class UnifiedPushReceiver : UnifiedPushReceiver() {
+ override fun getEngine(context: Context): FlutterEngine {
+ var engine = MainActivity.engine
+ if (engine == null) {
+ engine = MainActivity.provideEngine(context)
+ engine.localizationPlugin.sendLocalesToFlutter(
+ context.resources.configuration
+ )
+ engine.dartExecutor.executeDartEntrypoint(
+ DartExecutor.DartEntrypoint.createDefault()
+ )
+ }
+ return engine
+ }
+}
\ No newline at end of file
diff --git a/android/app/src/main/res/drawable-anydpi-v24/notifications_icon.xml b/android/app/src/main/res/drawable-anydpi-v24/notifications_icon.xml
deleted file mode 100644
index 21b574637..000000000
--- a/android/app/src/main/res/drawable-anydpi-v24/notifications_icon.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
diff --git a/android/app/src/main/res/drawable-hdpi/android12splash.png b/android/app/src/main/res/drawable-hdpi/android12splash.png
new file mode 100644
index 000000000..f6ae6153e
Binary files /dev/null and b/android/app/src/main/res/drawable-hdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-hdpi/splash.png b/android/app/src/main/res/drawable-hdpi/splash.png
index 965713319..f6ae6153e 100644
Binary files a/android/app/src/main/res/drawable-hdpi/splash.png and b/android/app/src/main/res/drawable-hdpi/splash.png differ
diff --git a/android/app/src/main/res/drawable-mdpi/android12splash.png b/android/app/src/main/res/drawable-mdpi/android12splash.png
new file mode 100644
index 000000000..69a8a0d54
Binary files /dev/null and b/android/app/src/main/res/drawable-mdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-mdpi/splash.png b/android/app/src/main/res/drawable-mdpi/splash.png
index f4c0bdb92..69a8a0d54 100644
Binary files a/android/app/src/main/res/drawable-mdpi/splash.png and b/android/app/src/main/res/drawable-mdpi/splash.png differ
diff --git a/android/app/src/main/res/drawable-night-hdpi/android12splash.png b/android/app/src/main/res/drawable-night-hdpi/android12splash.png
new file mode 100644
index 000000000..f6ae6153e
Binary files /dev/null and b/android/app/src/main/res/drawable-night-hdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-night-mdpi/android12splash.png b/android/app/src/main/res/drawable-night-mdpi/android12splash.png
new file mode 100644
index 000000000..69a8a0d54
Binary files /dev/null and b/android/app/src/main/res/drawable-night-mdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-night-xhdpi/android12splash.png b/android/app/src/main/res/drawable-night-xhdpi/android12splash.png
new file mode 100644
index 000000000..70f8839f7
Binary files /dev/null and b/android/app/src/main/res/drawable-night-xhdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png b/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png
new file mode 100644
index 000000000..e72e0fefe
Binary files /dev/null and b/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png b/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png
new file mode 100644
index 000000000..00445e742
Binary files /dev/null and b/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-xhdpi/android12splash.png b/android/app/src/main/res/drawable-xhdpi/android12splash.png
new file mode 100644
index 000000000..70f8839f7
Binary files /dev/null and b/android/app/src/main/res/drawable-xhdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-xhdpi/splash.png b/android/app/src/main/res/drawable-xhdpi/splash.png
index dafa3b707..70f8839f7 100644
Binary files a/android/app/src/main/res/drawable-xhdpi/splash.png and b/android/app/src/main/res/drawable-xhdpi/splash.png differ
diff --git a/android/app/src/main/res/drawable-xxhdpi/android12splash.png b/android/app/src/main/res/drawable-xxhdpi/android12splash.png
new file mode 100644
index 000000000..e72e0fefe
Binary files /dev/null and b/android/app/src/main/res/drawable-xxhdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-xxhdpi/splash.png b/android/app/src/main/res/drawable-xxhdpi/splash.png
index b627f5280..e72e0fefe 100644
Binary files a/android/app/src/main/res/drawable-xxhdpi/splash.png and b/android/app/src/main/res/drawable-xxhdpi/splash.png differ
diff --git a/android/app/src/main/res/drawable-xxxhdpi/android12splash.png b/android/app/src/main/res/drawable-xxxhdpi/android12splash.png
new file mode 100644
index 000000000..00445e742
Binary files /dev/null and b/android/app/src/main/res/drawable-xxxhdpi/android12splash.png differ
diff --git a/android/app/src/main/res/drawable-xxxhdpi/splash.png b/android/app/src/main/res/drawable-xxxhdpi/splash.png
index 0d1d2a74d..00445e742 100644
Binary files a/android/app/src/main/res/drawable-xxxhdpi/splash.png and b/android/app/src/main/res/drawable-xxxhdpi/splash.png differ
diff --git a/android/app/src/main/res/drawable/ic_launcher_monochrome.xml b/android/app/src/main/res/drawable/ic_launcher_monochrome.xml
deleted file mode 100644
index f0b10e7d6..000000000
--- a/android/app/src/main/res/drawable/ic_launcher_monochrome.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
deleted file mode 100644
index 1084c2408..000000000
--- a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
index 54dd74b56..b729d12ce 100644
Binary files a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
index 6fc0dcbfb..6b2fd5a7c 100644
Binary files a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
index dd6dcadac..06eda9ce7 100644
Binary files a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
index ea5d85515..a195b46a8 100644
Binary files a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
index 8d4f59224..6c985b40f 100644
Binary files a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/values-night-v31/styles.xml b/android/app/src/main/res/values-night-v31/styles.xml
new file mode 100644
index 000000000..2d5909b1b
--- /dev/null
+++ b/android/app/src/main/res/values-night-v31/styles.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml
index 7c806c658..0398fe499 100644
--- a/android/app/src/main/res/values-night/styles.xml
+++ b/android/app/src/main/res/values-night/styles.xml
@@ -5,6 +5,7 @@
- @drawable/launch_background
+ - false
- false
+
+
+
+
\ No newline at end of file
diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml
deleted file mode 100644
index 4a2a1f5d7..000000000
--- a/android/app/src/profile/AndroidManifest.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
diff --git a/android/build.gradle b/android/build.gradle
index a8c597ff1..94a04851d 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- //classpath 'com.google.gms:google-services:4.3.8'
+ classpath 'com.google.gms:google-services:4.3.13'
}
}
diff --git a/android/fastlane/Appfile b/android/fastlane/Appfile
index 872e07850..cc33cdc7d 100644
--- a/android/fastlane/Appfile
+++ b/android/fastlane/Appfile
@@ -1,2 +1,2 @@
json_key_file("keys.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
-package_name("chat.fluffy.fluffychat") # e.g. com.krausefx.app
+package_name("com.talktolearn.chat") # e.g. com.krausefx.app
diff --git a/android/fastlane/metadata/android/en-US/changelogs/50 (0.22.1).txt b/android/fastlane/metadata/android/en-US/changelogs/50 (0.22.1).txt
new file mode 100644
index 000000000..10f77f4f9
--- /dev/null
+++ b/android/fastlane/metadata/android/en-US/changelogs/50 (0.22.1).txt
@@ -0,0 +1 @@
+Check out https://gitlab.com/ChristianPauly/fluffychat-flutter/-/blob/main/CHANGELOG.md for the changelog.
\ No newline at end of file
diff --git a/appimage/AppRun b/appimage/AppRun
old mode 100755
new mode 100644
diff --git a/assets/colors.png b/assets/colors.png
new file mode 100644
index 000000000..27c996adb
Binary files /dev/null and b/assets/colors.png differ
diff --git a/assets/encryption.png b/assets/encryption.png
new file mode 100644
index 000000000..af2ba3c24
Binary files /dev/null and b/assets/encryption.png differ
diff --git a/assets/l10n/intl_ar.arb b/assets/l10n/intl_ar.arb
index 0fe4b02d1..4aca37af8 100644
--- a/assets/l10n/intl_ar.arb
+++ b/assets/l10n/intl_ar.arb
@@ -771,7 +771,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "يبدو أنك لا تستخدم خدمات غوغل على هاتفك. هذا قرار جيد للحفاظ على خصوصيتك! من أجل استلام الإشعارات في FluffyChat نقترح استخدام https://microg.org أو https://unifiedpush.org.",
+ "noGoogleServicesWarning": "يبدو أن خدمة Firebase Cloud Messaging غير متاحة على جهازك. لمواصلة تلقي الإشعارات، نوصي بتثبيت ntfy. باستخدام ntfy أو أي مزود خدمة Unified Push آخر، يمكنك تلقي إشعارات الدفع بطريقة آمنة للبيانات. يمكنك تنزيل ntfy من PlayStore أو من F-Droid.",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -2619,5 +2619,45 @@
"placeholders": {
"seconds": {}
}
- }
+ },
+ "hasKnocked": "لقد طرق {user}",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "pleaseEnterANumber": "الرجاء إدخال رقم أكبر من 0",
+ "@pleaseEnterANumber": {},
+ "banUserDescription": "سيتم حظر المستخدم من الدردشة ولن يتمكن من الدخول إلى الدردشة مرة أخرى حتى يتم رفع الحظر عنه.",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "سيتم تسجيل خروجك من هذا الجهاز ولن تتمكن بعد ذلك من تلقي الرسائل.",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "سيتمكن المستخدم من الدخول إلى الدردشة مرة أخرى إذا حاول.",
+ "@unbanUserDescription": {},
+ "todoLists": "(اختباري) لقوائم المهام",
+ "@todoLists": {},
+ "editTodo": "تعديل المهام",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "دفع الإخطارات غير متوفرة",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "يرجى إضافة عنوان",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "بمجرد تعيين هذا المستخدم كمسؤول، قد لا تتمكن من التراجع عن هذا لأنه سيكون لديه نفس الأذونات التي تتمتع بها.",
+ "@makeAdminDescription": {},
+ "noTodosYet": "لم تتم إضافة أي مهام إلى هذه الدردشة حتى الآن. أنشئ أول ما يجب عليك فعله وابدأ في التعاون مع الآخرين. 📝",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "سيتم نقل الدردشة إلى الأرشيف. سيتمكن المستخدمون الآخرون من رؤية أنك غادرت الدردشة.",
+ "@archiveRoomDescription": {},
+ "todosUnencrypted": "يرجى ملاحظة أن جميع المهام مرئية للجميع في الدردشة وليست مشفرة تمامًا.",
+ "@todosUnencrypted": {},
+ "newTodo": "ما يجب القيام به جديد",
+ "@newTodo": {},
+ "learnMore": "تعلم المزيد",
+ "@learnMore": {},
+ "todoListChangedError": "عفوًا... لقد تم تغيير قائمة المهام أثناء قيامك بتحريرها.",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "سيتم بعد ذلك إعادة إنشاء الدردشة باستخدام إصدار الغرفة الجديد. سيتم إخطار جميع المشاركين بأنهم بحاجة إلى التبديل إلى الدردشة الجديدة. يمكنك معرفة المزيد حول إصدارات الغرف على https://spec.matrix.org/latest/rooms/",
+ "@roomUpgradeDescription": {},
+ "kickUserDescription": "يتم طرد المستخدم من الدردشة ولكن لا يتم حظره. في الدردشات العامة، يمكن للمستخدم الانضمام مرة أخرى في أي وقت.",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_bn.arb b/assets/l10n/intl_bn.arb
index fedac9000..dd7d6c29b 100644
--- a/assets/l10n/intl_bn.arb
+++ b/assets/l10n/intl_bn.arb
@@ -1,25 +1,2621 @@
{
- "@@last_modified": "2021-08-14 12:41:10.154280",
- "about": "সম্পর্কে",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "স্বীকার করি",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} আমন্ত্রণ গ্রহণ করেছে",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "অ্যাকাউন্ট",
- "@account": {
- "type": "text",
- "placeholders": {}
+ "@@last_modified": "2021-08-14 12:41:10.154280",
+ "about": "সম্পর্কে",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "স্বীকার করি",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} আমন্ত্রণ গ্রহণ করেছে",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
}
-}
\ No newline at end of file
+ },
+ "account": "অ্যাকাউন্ট",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "darkTheme": "",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "close": "",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "device": "",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "editDisplayname": "",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "banFromChat": "",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "askSSSSSign": "",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "changedTheChatDescriptionTo": "",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "countParticipants": "",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "areGuestsAllowedToJoin": "",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "dateWithoutYear": "",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "answeredTheCall": "",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "couldNotDecryptMessage": "",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheGuestAccessRules": "",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "dateWithYear": "",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "create": "",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "all": "",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "chatBackup": "",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "compareEmojiMatch": "",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomAliases": "",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "help": "",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "chatDetails": "",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "delete": "",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatPermissions": "",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeWallpaper": "",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "changedTheChatNameTo": "",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "openCamera": "",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "chat": "",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheProfileAvatar": "",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "allChats": "",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "badServerVersionsException": "",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "",
+ "@addToSpace": {},
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "chooseAStrongPassword": "",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "activatedEndToEndEncryption": "",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "fluffychat": "",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "cancel": "",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "appLock": "",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "copiedToClipboard": "",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "confirm": "",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "dateAndTimeOfDay": "",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "logout": "",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "contactHasBeenInvitedToTheGroup": "",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "bannedUser": "",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "askVerificationRequest": "",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "changeTheHomeserver": "",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "changePassword": "",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "chooseAUsername": "",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "placeCall": "",
+ "@placeCall": {},
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ }
+}
diff --git a/assets/l10n/intl_bo.arb b/assets/l10n/intl_bo.arb
index 9e26dfeeb..d138084cf 100644
--- a/assets/l10n/intl_bo.arb
+++ b/assets/l10n/intl_bo.arb
@@ -1 +1,2620 @@
-{}
\ No newline at end of file
+{
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "darkTheme": "",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "close": "",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "device": "",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "editDisplayname": "",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "banFromChat": "",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "askSSSSSign": "",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "changedTheChatDescriptionTo": "",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "countParticipants": "",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "areGuestsAllowedToJoin": "",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "dateWithoutYear": "",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "couldNotDecryptMessage": "",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheGuestAccessRules": "",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "dateWithYear": "",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "create": "",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "all": "",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "chatBackup": "",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "compareEmojiMatch": "",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomAliases": "",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "help": "",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "chatDetails": "",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "delete": "",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatPermissions": "",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeWallpaper": "",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "acceptedTheInvitation": "",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "changedTheChatNameTo": "",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "account": "",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "placeCall": "",
+ "@placeCall": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "openCamera": "",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "chat": "",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheProfileAvatar": "",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "allChats": "",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "badServerVersionsException": "",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "",
+ "@addToSpace": {},
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "about": "",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "activatedEndToEndEncryption": "",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "fluffychat": "",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "cancel": "",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "appLock": "",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "copiedToClipboard": "",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "confirm": "",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "dateAndTimeOfDay": "",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "logout": "",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "contactHasBeenInvitedToTheGroup": "",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "bannedUser": "",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "askVerificationRequest": "",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "changeTheHomeserver": "",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "changePassword": "",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "chooseAUsername": "",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ }
+}
diff --git a/assets/l10n/intl_ca.arb b/assets/l10n/intl_ca.arb
index 89427e877..d60cf517d 100644
--- a/assets/l10n/intl_ca.arb
+++ b/assets/l10n/intl_ca.arb
@@ -1,2016 +1,2658 @@
{
- "@@last_modified": "2021-08-14 12:41:10.145728",
- "about": "Quant a",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Accepta",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} ha acceptat la invitació",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "Compte",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "{username} ha activat el xifratge d’extrem a extrem",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addGroupDescription": "Afegeix descripció de grup",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Administració",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "àlies",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "allChats": "Tots els xats",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} ha respost a la trucada",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "Qualsevol pot unir-se",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "Blocatge de l’aplicació",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Arxiu",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "Accés dels usuaris convidats",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "N’esteu segur?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "Per a poder donar accés a l’altra persona, introduïu la frase de seguretat o clau de recuperació.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Voleu acceptar aquesta sol·licitud de verificació de: {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "banFromChat": "Veta del xat",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Vetat",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} ha vetat a {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "Bloca el dispositiu",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Missatges del bot",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Cancel·la",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "No es pot obrir l’URI {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "changeDeviceName": "Canvia el nom del dispositiu",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "{username} ha canviat la imatge del xat",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} ha canviat la descripció del xat a: '{description}'",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatNameTo": "{username} ha canviat el nom del xat a: '{chatname}'",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatPermissions": "{username} ha canviat els permisos del xat",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRules": "{username} ha canviat les normes d’accés dels convidats",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} ha canviat les normes d’accés dels convidats a: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibility": "{username} ha canviat la visibilitat de l’historial",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} ha canviat la visibilitat de l’historial a: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} ha canviat les normes d’unió",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username} ha canviat les normes d’unió a: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} ha canviat la seva imatge de perfil",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} ha canviat l’àlies de la sala",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} ha canviat l’enllaç per a convidar",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "Canvia la contrasenya",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Canvia el servidor",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Canvia l’estil",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Canvia el nom del grup",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Canvia el fons",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "El xifratge s’ha corromput",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Xat",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Detalls del xat",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chats": "Xats",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Trieu una contrasenya forta",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Trieu un nom d’usuari",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "close": "Tanca",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_html": "Envia text en format HTML",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_leave": "Abandona aquesta sala",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_op": "Estableix el nivell d'autoritat de l'usuari (per defecte: 50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_plain": "Envia text sense format",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_send": "Envia text",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "compareEmojiMatch": "Compareu i assegureu-vos que els emojis següents coincideixen amb els de l’altre dispositiu:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Compareu i assegureu-vos que els nombres següents coincideixen amb els de l’altre dispositiu:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Confirma",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Connecta",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "El contacte ha estat convidat al grup",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Conté l'àlies",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Conté el nom d’usuari",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "S’ha copiat al porta-retalls",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Copia",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "No s'ha pogut desxifrar el missatge: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "{count} participants",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "Crea",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "{username} ha creat el xat",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "createNewGroup": "Crea un grup nou",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Actiu actualment",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Fosc",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{day}-{month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateWithYear": "{day}-{month}-{year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "deactivateAccountWarning": "Es desactivarà el vostre compte d’usuari. Això no es pot desfer! Esteu segur de fer-ho?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Suprimeix",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Suprimeix el compte",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Suprimeix el missatge",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Denega",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Dispositiu",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "Id. de dispositiu",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Dispositius",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Xats directes",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "Ha canviat l'àlies",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Baixa el fitxer",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Edita",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Edita l'àlies",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "L'emoticona ja existeix!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "Codi d'emoticona invàlid!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "Paquet d'emoticones de la sala",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Paràmetres de les emoticones",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "Codi d'emoticona",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "Has de seleccionar un codi d'emoticona i una imatge!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "Xat buit",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "Activa el paquet d'emoticones global",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "No podreu desactivar el xifratge mai més. N’esteu segur?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Xifrat",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "Xifratge",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "El xifratge no s’ha activat",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} ha finalitzat la trucada",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "enterAGroupName": "Introduïu un nom de grup",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "Introduïu una adreça electrònica",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterYourHomeserver": "Introdueix el teu servidor",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Nom del fitxer",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "Reenvia",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "Des de la unió",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "Des de la invitació",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "group": "Grup",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Descripció de grup",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "Descripció de grup canviada",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "El grup és públic",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "Grup amb {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "guestsAreForbidden": "Els convidats no poden unir-se",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "Els convidats es poden unir",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "{username} ha retirat la invitació de {targetName}",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "help": "Ajuda",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "Amaga els esdeveniments velats",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Amaga els esdeveniments desconeguts",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "id": "Id.",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Identitat",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Usuaris ignorats",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "Pots ignorar els usuaris que et molestin. No rebràs els missatges ni les invitacions dels usuaris que es trobin a la teva llista personal d'ignorats.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Ignora nom d'usuari",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "He fet clic a l'enllaç",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "Frase de seguretat o clau de recuperació incorrecta",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Convida contacte",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "Convida contacte a {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "invited": "Convidat",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "{username} ha convidat a {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invitedUsersOnly": "Només usuaris convidats",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "Invitació per a mi",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username} t'ha convidat a FluffyChat.\n1. Instal·la FluffyChat: https://fluffychat.im\n2. Registra't o inicia sessió\n3. Obre l'enllaç d'invitació: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "isTyping": "escrivint…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "{username} s'ha unit al xat",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "joinRoom": "Uneix-te a la sala",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "{username} ha expulsat a {targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "{username} ha expulsat i vetat a {targetName}",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickFromChat": "Expulsa del xat",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "Actiu per última vegada: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "lastSeenLongTimeAgo": "Vist va molt de temps",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Abandona",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "Ha marxat del xat",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Llicència",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "Clar",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "Carrega {count} participants més",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "loadingPleaseWait": "S’està carregant… Espereu.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Carrega’n més…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "locationDisabledNotice": "S’han desactivat els serveis d’ubicació. Activeu-los per a compartir la vostra ubicació.",
- "@locationDisabledNotice": {
- "type": "text",
- "placeholders": {}
- },
- "locationPermissionDeniedNotice": "S’ha rebutjat el permís d’ubicació. Atorgueu-lo per a poder compartir la vostra ubicació.",
- "@locationPermissionDeniedNotice": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Inicia la sessió",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "logInTo": "Inicia sessió a {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "loginWith": "Inicia la sessió amb {brand}",
- "@loginWith": {
- "type": "text",
- "placeholders": {
- "brand": {}
- }
- },
- "logout": "Finalitza la sessió",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "Assegura't que l'identificador sigui vàlid",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Canvis de participants",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "Menciona",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "El missatge s'eliminarà per a tots els participants",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Moderador",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Silencia el xat",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "Tingueu en compte que, ara per ara, us cal el Pantalaimon per a poder utilitzar el xifratge d’extrem a extrem.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "Missatge nou al FluffyChat",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Nova sol·licitud de verificació!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "no": "No",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "Sense connexió al servidor",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "No s’ha trobat cap emoticona. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "Sembla que no teniu els Serveis de Google al telèfon. Això és una bona decisió respecte a la vostra privadesa! Per a rebre notificacions automàtiques del FluffyChat, us recomanem utilitzar https://microg.org/ o https://unifiedpush.org/.",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "none": "Cap",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "Encara no heu afegit cap mètode per a poder recuperar la contrasenya.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Sense permís",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "No s’ha trobat cap sala…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Notificacions",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "Notificacions activades per a aquest compte",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "{count} usuaris escrivint…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "offline": "Fora de línia",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "D'acord",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "online": "En línia",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "La còpia de seguretat de claus en línia està activada",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "Alguna cosa ha anat malament…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "Obre l'aplicació per llegir els missatges",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Obre la càmera",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "(Opcional) Nom del grup",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "or": "O",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "contrasenya o clau de recuperació",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Contrasenya",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Contrasenya oblidada",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "La contrasenya ha canviat",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "Recuperació de contrassenya",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "Selecciona una imatge",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Fixa",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "play": "Reproduir {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseChooseAPasscode": "Tria un codi d'accés",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "Tria un nom d'usuari",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "Fes clic a l'enllaç del correu i, després, segueix.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "Introdueix 4 dígits o deixa-ho buit per desactivar el bloqueig.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Introdueix un identificador de Matrix.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "Introdueix la teva contrasenya",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "Introdueix el teu nom d'usuari",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Privadesa",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "Sales públiques",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "pushRules": "Regles push",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "Enregistrant",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "redactedAnEvent": "{username} ha velat un esdeveniment",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "reject": "Rebutja",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "{username} ha rebutjat la invitació",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "rejoin": "Torna-t'hi a unir",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Elimina",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "removeAllOtherDevices": "Elimina tots els altres dispositius",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "Eliminat per {username}",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeDevice": "Elimina dispositiu",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "Desfés l'expulsió",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "Mostra el contingut enriquit dels missatges",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Respon",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Sol·licita permís",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "La sala s'ha actualitzat",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "security": "Seguretat",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "Vist per {username}",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "seenByUserAndCountOthers": "{count, plural, other{Vist per {username} i {count} més}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "seenByUserAndUser": "Vist per {username} i {username2}",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "send": "Envia",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "sendAMessage": "Envia un missatge",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "sendAsText": "Envia com a text",
- "@sendAsText": {
- "type": "text"
- },
- "sendAudio": "Envia un àudio",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "Envia un fitxer",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Envia una imatge",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Envia l’original",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendSticker": "Envia adhesiu",
- "@sendSticker": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Envia un vídeo",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sentAFile": "{username} ha enviat un fitxer",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "{username} ha enviat un àudio",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "{username} ha enviat una imatge",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "{username} ha enviat un adhesiu",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAVideo": "{username} ha enviat un vídeo",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentCallInformations": "{senderName} ha enviat informació de trucada",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "setGroupDescription": "Defineix la descripció del grup",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "Defineix l’enllaç per a convidar",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "setPermissionsLevel": "Defineix el nivell de permisos",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "Defineix l’estat",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "Paràmetres",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "share": "Comparteix",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "sharedTheLocation": "{username} n’ha compartit la ubicació",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "signUp": "Registre",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "singlesignon": "Autenticació única",
- "@singlesignon": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "Omet",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "Codi font",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "startedACall": "{senderName} ha iniciat una trucada",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "statusExampleMessage": "Com us sentiu avui?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "Envia",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "Sistema",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "theyDontMatch": "No coincideixen",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "Coincideixen",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "Marca com a llegit/sense llegir",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "Massa sol·licituds. Torna-ho a provar més tard!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "tryToSendAgain": "Intenta tornar a enviar",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "No disponible",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "{username} ha tret el veto a {targetName}",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "unblockDevice": "Desbloqueja dispositiu",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "Dispositiu desconegut",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEncryptionAlgorithm": "L’algorisme de xifratge és desconegut",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEvent": "Esdeveniment desconegut '{type}'",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "unmuteChat": "Deixa de silenciar el xat",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "Deixa de fixar",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "unreadChats": "{unreadCount, plural, =1{1 xat no llegit} other{{unreadCount} xats no llegits}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "userAndOthersAreTyping": "{username} i {count} més estan escrivint…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "userAndUserAreTyping": "{username} i {username2} estan escrivint…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userIsTyping": "{username} està escrivint…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userLeftTheChat": "{username} ha marxat del xat",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "username": "Nom d’usuari",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "userSentUnknownEvent": "{username} ha enviat un esdeveniment {type}",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "verify": "Verifica",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "Inicia la verificació",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "T'has verificat correctament!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "Verificant un altre compte",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "Videotrucada",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "Visibilitat de l’historial del xat",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "Visible per a tots els participants",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "Visible per a tothom",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "Missatge de veu",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerEmoji": "S’està esperant que l’altre accepti l’emoji…",
- "@waitingPartnerEmoji": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "S’està esperant que l’altre accepti els nombres…",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "Fons",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "Atenció!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "Us hem enviat un missatge de correu electrònic",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "Qui pot unir-se a aquest grup",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "Amb aquestes adreces, si ho necessiteu, podeu recuperar la vostra contrasenya.",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "Escriviu un missatge…",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "Sí",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "you": "Vós",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "Us han convidat a aquest xat",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "Ja no participeu en aquest xat",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "No us podeu convidar a vós mateix",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "Has estat vetat d'aquest xat",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "La vostra clau pública",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Tot",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "Afegeix a un espai",
- "@addToSpace": {},
- "areYouSureYouWantToLogout": "Segur que voleu finalitzar la sessió?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "addEmail": "Afegeix una adreça electrònica",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "commandInvalid": "L’ordre no és vàlida",
- "@commandInvalid": {
- "type": "text"
- },
- "fontSize": "Mida de la lletra",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "goToTheNewRoom": "Ves a la sala nova",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Següent",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "link": "Enllaç",
- "@link": {},
- "people": "Gent",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "redactMessage": "Vela el missatge",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "sendOnEnter": "Envia en prémer Retorn",
- "@sendOnEnter": {},
- "clearArchive": "Neteja l’arxiu",
- "@clearArchive": {},
- "chatBackupDescription": "La còpia de seguretat dels xats és protegida amb una clau. Assegureu-vos de no perdre-la.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatHasBeenAddedToThisSpace": "El xat s’ha afegit a aquest espai",
- "@chatHasBeenAddedToThisSpace": {},
- "autoplayImages": "Reprodueix automàticament enganxines i emoticones animades",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "chatBackup": "Còpia de seguretat del xat",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "Blocat",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "Tot és a punt!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "spaceName": "Nom de l’espai",
- "@spaceName": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Cerca",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "verified": "Verificat",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Xat nou",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "Canvia l’avatar",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Ignora",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_react": "Envia una resposta com a reacció",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "defaultPermissionLevel": "Nivell de permisos per defecte",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Extremadament ofensiu",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "yourChatBackupHasBeenSetUp": "S’ha configurat la còpia de seguretat del xat.",
- "@yourChatBackupHasBeenSetUp": {},
- "contentHasBeenReported": "El contingut s’ha denunciat als administradors del servidor",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Activa el xifratge",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "enterASpacepName": "Introduïu un nom d’espai",
- "@enterASpacepName": {},
- "addAccount": "Afegeix un compte",
- "@addAccount": {},
- "noEncryptionForPublicRooms": "Només podreu activar el xifratge quan la sala ja no sigui accessible públicament.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "Versió de la sala",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "Envia missatges",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "saveFile": "Desa el fitxer",
- "@saveFile": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "Seguiu les instruccions al lloc web i toqueu «Següent».",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "Denuncia el missatge",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "setAsCanonicalAlias": "Defineix com a àlies principal",
- "@setAsCanonicalAlias": {
- "type": "text",
- "placeholders": {}
- },
- "status": "Estat",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "toggleFavorite": "Commuta l’estat «preferit»",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "Commuta l’estat «silenci»",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "Transfereix des d’un altre dispositiu",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "setCustomEmotes": "Defineix emoticones personalitzades",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "Qui pot efectuar quina acció",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "Per què voleu denunciar això?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "wipeChatBackup": "Voleu suprimir la còpia de seguretat dels xats per a crear una clau de seguretat nova?",
- "@wipeChatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerAcceptRequest": "S’està esperant que l’altre accepti la sol·licitud…",
- "@waitingPartnerAcceptRequest": {
- "type": "text",
- "placeholders": {}
- },
- "unverified": "No verificat",
- "@unverified": {},
- "commandHint_me": "Descriviu-vos",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "commandMissing": "{command} no és una ordre.",
- "@commandMissing": {
- "type": "text",
- "placeholders": {
- "command": {}
- },
- "description": "State that {command} is not a valid /command."
- },
- "configureChat": "Configura el xat",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Copia al porta-retalls",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "createNewSpace": "Espai nou",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "errorObtainingLocation": "S’ha produït un error en obtenir la ubicació: {error}",
- "@errorObtainingLocation": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "groups": "Grups",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Missatges",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "showPassword": "Mostra la contrasenya",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "spaceIsPublic": "L’espai és públic",
- "@spaceIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "scanQrCode": "Escaneja un codi QR",
- "@scanQrCode": {},
- "obtainingLocation": "S’està obtenint la ubicació…",
- "@obtainingLocation": {
- "type": "text",
- "placeholders": {}
- },
- "shareLocation": "Comparteix la ubicació",
- "@shareLocation": {
- "type": "text",
- "placeholders": {}
- },
- "synchronizingPleaseWait": "S’està sincronitzant… Espereu.",
- "@synchronizingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Raó",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheDisplaynameTo": "{username} ha canviat el seu àlies a: '{displayname}'",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "howOffensiveIsThisContent": "Com d’ofensiu és aquest contingut?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_clearcache": "Neteja la memòria cau",
- "@commandHint_clearcache": {
- "type": "text",
- "description": "Usage hint for the command /clearcache"
- },
- "commandHint_join": "Uneix-te a la sala",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_kick": "Elimina l'usuari indicat d'aquesta sala",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_myroomavatar": "Establiu la imatge per a aquesta sala (per mxc-uri)",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_dm": "Inicia un xat directe\nUsa --no-encryption per desactivar l'encriptatge",
- "@commandHint_dm": {
- "type": "text",
- "description": "Usage hint for the command /dm"
- },
- "commandHint_invite": "Convida l'usuari indicat a aquesta sala",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "commandHint_ban": "Prohibeix l'usuari indicat d'aquesta sala",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_create": "Crea un xat de grup buit\nUsa --no-encryption per desactivar l'encriptatge",
- "@commandHint_create": {
- "type": "text",
- "description": "Usage hint for the command /create"
- },
- "commandHint_discardsession": "Descarta la sessió",
- "@commandHint_discardsession": {
- "type": "text",
- "description": "Usage hint for the command /discardsession"
- },
- "passwordsDoNotMatch": "Les contrasenyes no coincideixen!",
- "@passwordsDoNotMatch": {},
- "pleaseEnterValidEmail": "Introduïu una adreça electrònica vàlida.",
- "@pleaseEnterValidEmail": {},
- "repeatPassword": "Repetiu la contrasenya",
- "@repeatPassword": {},
- "pleaseChooseAtLeastChars": "Seleccioneu almenys {min} caràcters.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "bubbleSize": "Mida de la bombolla",
- "@bubbleSize": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_myroomnick": "Estableix el teu àlies per a aquesta sala",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "editBlockedServers": "Edita els servidors bloquejats",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "badServerLoginTypesException": "El servidor admet els inicis de sessió:\n{serverVersions}\nPerò l'aplicació només admet:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "editChatPermissions": "Edita els permisos del xat",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
+ "@@last_modified": "2021-08-14 12:41:10.145728",
+ "about": "Quant a",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Accepta",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} ha acceptat la invitació",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
}
-}
\ No newline at end of file
+ },
+ "account": "Compte",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "{username} ha activat el xifratge d’extrem a extrem",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addGroupDescription": "Afegeix descripció de grup",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Administració",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "àlies",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "Tots els xats",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} ha respost a la trucada",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "Qualsevol pot unir-se",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "Blocatge de l’aplicació",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Arxiu",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "Accés dels usuaris convidats",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "N’esteu segur?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "Per a poder donar accés a l’altra persona, introduïu la frase de seguretat o clau de recuperació.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Voleu acceptar aquesta sol·licitud de verificació de: {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banFromChat": "Veta del xat",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Vetat",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} ha vetat a {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "Bloca el dispositiu",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Missatges del bot",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Cancel·la",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "No es pot obrir l’URI {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "changeDeviceName": "Canvia el nom del dispositiu",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "{username} ha canviat la imatge del xat",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} ha canviat la descripció del xat a: '{description}'",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} ha canviat el nom del xat a: '{chatname}'",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} ha canviat els permisos del xat",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} ha canviat les normes d’accés dels convidats",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} ha canviat les normes d’accés dels convidats a: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username} ha canviat la visibilitat de l’historial",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} ha canviat la visibilitat de l’historial a: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} ha canviat les normes d’unió",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} ha canviat les normes d’unió a: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} ha canviat la seva imatge de perfil",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} ha canviat l’àlies de la sala",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} ha canviat l’enllaç per a convidar",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "Canvia la contrasenya",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Canvia el servidor",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Canvia l’estil",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Canvia el nom del grup",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Canvia el fons",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "El xifratge s’ha corromput",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Xat",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Detalls del xat",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chats": "Xats",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Trieu una contrasenya forta",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Trieu un nom d’usuari",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "close": "Tanca",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "Envia text en format HTML",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_leave": "Abandona aquesta sala",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_op": "Estableix el nivell d'autoritat de l'usuari (per defecte: 50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_plain": "Envia text sense format",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_send": "Envia text",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "compareEmojiMatch": "Compareu i assegureu-vos que els emojis següents coincideixen amb els de l’altre dispositiu:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Compareu i assegureu-vos que els nombres següents coincideixen amb els de l’altre dispositiu:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Confirma",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Connecta",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "El contacte ha estat convidat al grup",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Conté l'àlies",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Conté el nom d’usuari",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "S’ha copiat al porta-retalls",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Copia",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "No s'ha pogut desxifrar el missatge: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "{count} participants",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "Crea",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "{username} ha creat el xat",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "createNewGroup": "Crea un grup nou",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Actiu actualment",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Fosc",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{day}-{month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithYear": "{day}-{month}-{year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "deactivateAccountWarning": "Es desactivarà el vostre compte d’usuari. Això no es pot desfer! Esteu segur de fer-ho?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Suprimeix",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Suprimeix el compte",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Suprimeix el missatge",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Denega",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Dispositiu",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "Id. de dispositiu",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Dispositius",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Xats directes",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "Ha canviat l'àlies",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Baixa el fitxer",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Edita",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Edita l'àlies",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "L'emoticona ja existeix!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "Codi d'emoticona invàlid!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "Paquet d'emoticones de la sala",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Paràmetres de les emoticones",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "Codi d'emoticona",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "Has de seleccionar un codi d'emoticona i una imatge!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "Xat buit",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "Activa el paquet d'emoticones global",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "No podreu desactivar el xifratge mai més. N’esteu segur?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Xifrat",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "Xifratge",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "El xifratge no s’ha activat",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} ha finalitzat la trucada",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "enterAGroupName": "Introduïu un nom de grup",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "Introduïu una adreça electrònica",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourHomeserver": "Introdueix el teu servidor",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Nom del fitxer",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "Reenvia",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "Des de la unió",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "Des de la invitació",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "Grup",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Descripció de grup",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "Descripció de grup canviada",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "El grup és públic",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "Grup amb {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "guestsAreForbidden": "Els convidats no poden unir-se",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "Els convidats es poden unir",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "{username} ha retirat la invitació de {targetName}",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "help": "Ajuda",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "Amaga els esdeveniments velats",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Amaga els esdeveniments desconeguts",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "Id.",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Identitat",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Usuaris ignorats",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "Pots ignorar els usuaris que et molestin. No rebràs els missatges ni les invitacions dels usuaris que es trobin a la teva llista personal d'ignorats.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Ignora nom d'usuari",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "He fet clic a l'enllaç",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "Frase de seguretat o clau de recuperació incorrecta",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Convida contacte",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "Convida contacte a {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "invited": "Convidat",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "{username} ha convidat a {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invitedUsersOnly": "Només usuaris convidats",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "Invitació per a mi",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username} t'ha convidat a FluffyChat.\n1. Instal·la FluffyChat: https://fluffychat.im\n2. Registra't o inicia sessió\n3. Obre l'enllaç d'invitació: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "isTyping": "escrivint…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "{username} s'ha unit al xat",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "joinRoom": "Uneix-te a la sala",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "{username} ha expulsat a {targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "{username} ha expulsat i vetat a {targetName}",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "Expulsa del xat",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "Actiu per última vegada: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "Vist va molt de temps",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Abandona",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "Ha marxat del xat",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Llicència",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "Clar",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "Carrega {count} participants més",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "loadingPleaseWait": "S’està carregant… Espereu.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Carrega’n més…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "S’han desactivat els serveis d’ubicació. Activeu-los per a compartir la vostra ubicació.",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationPermissionDeniedNotice": "S’ha rebutjat el permís d’ubicació. Atorgueu-lo per a poder compartir la vostra ubicació.",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Inicia la sessió",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "Inicia sessió a {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "loginWith": "Inicia la sessió amb {brand}",
+ "@loginWith": {
+ "type": "text",
+ "placeholders": {
+ "brand": {}
+ }
+ },
+ "logout": "Finalitza la sessió",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "Assegura't que l'identificador sigui vàlid",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Canvis de participants",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "Menciona",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "El missatge s'eliminarà per a tots els participants",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Moderador",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Silencia el xat",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "Tingueu en compte que, ara per ara, us cal el Pantalaimon per a poder utilitzar el xifratge d’extrem a extrem.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "Missatge nou al FluffyChat",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Nova sol·licitud de verificació!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "No",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "Sense connexió al servidor",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "No s’ha trobat cap emoticona. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "Sembla que no teniu els Serveis de Google al telèfon. Això és una bona decisió respecte a la vostra privadesa! Per a rebre notificacions automàtiques del FluffyChat, us recomanem utilitzar https://microg.org/ o https://unifiedpush.org/.",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "Cap",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "Encara no heu afegit cap mètode per a poder recuperar la contrasenya.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Sense permís",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "No s’ha trobat cap sala…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Notificacions",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "Notificacions activades per a aquest compte",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "{count} usuaris escrivint…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "offline": "Fora de línia",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "D'acord",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "En línia",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "La còpia de seguretat de claus en línia està activada",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "Alguna cosa ha anat malament…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "Obre l'aplicació per llegir els missatges",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Obre la càmera",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "(Opcional) Nom del grup",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "O",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "contrasenya o clau de recuperació",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Contrasenya",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Contrasenya oblidada",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "La contrasenya ha canviat",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "Recuperació de contrassenya",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "Selecciona una imatge",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Fixa",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "Reproduir {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseChooseAPasscode": "Tria un codi d'accés",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "Tria un nom d'usuari",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "Fes clic a l'enllaç del correu i, després, segueix.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "Introdueix 4 dígits o deixa-ho buit per desactivar el bloqueig.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Introdueix un identificador de Matrix.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "Introdueix la teva contrasenya",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "Introdueix el teu nom d'usuari",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Privadesa",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Sales públiques",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "Regles push",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "Enregistrant",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "{username} ha velat un esdeveniment",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "reject": "Rebutja",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "{username} ha rebutjat la invitació",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "rejoin": "Torna-t'hi a unir",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Elimina",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "Elimina tots els altres dispositius",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "Eliminat per {username}",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeDevice": "Elimina dispositiu",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "Desfés l'expulsió",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "Mostra el contingut enriquit dels missatges",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Respon",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Sol·licita permís",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "La sala s'ha actualitzat",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "Seguretat",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "Vist per {username}",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{Vist per {username} i {count} més}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "seenByUserAndUser": "Vist per {username} i {username2}",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "send": "Envia",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAMessage": "Envia un missatge",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "Envia com a text",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "sendAudio": "Envia un àudio",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "Envia un fitxer",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Envia una imatge",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Envia l’original",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendSticker": "Envia adhesiu",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Envia un vídeo",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "{username} ha enviat un fitxer",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "{username} ha enviat un àudio",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "{username} ha enviat una imatge",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "{username} ha enviat un adhesiu",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "{username} ha enviat un vídeo",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentCallInformations": "{senderName} ha enviat informació de trucada",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "setGroupDescription": "Defineix la descripció del grup",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "Defineix l’enllaç per a convidar",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "Defineix el nivell de permisos",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "Defineix l’estat",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "Paràmetres",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "Comparteix",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "{username} n’ha compartit la ubicació",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signUp": "Registre",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "Autenticació única",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "Omet",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "Codi font",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "{senderName} ha iniciat una trucada",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "statusExampleMessage": "Com us sentiu avui?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "Envia",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "Sistema",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyDontMatch": "No coincideixen",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "Coincideixen",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "Marca com a llegit/sense llegir",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "Massa sol·licituds. Torna-ho a provar més tard!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "Intenta tornar a enviar",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "No disponible",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "{username} ha tret el veto a {targetName}",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "unblockDevice": "Desbloqueja dispositiu",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "Dispositiu desconegut",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEncryptionAlgorithm": "L’algorisme de xifratge és desconegut",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "Esdeveniment desconegut '{type}'",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "unmuteChat": "Deixa de silenciar el xat",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "Deixa de fixar",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unreadChats": "{unreadCount, plural, =1{1 xat no llegit} other{{unreadCount} xats no llegits}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "userAndOthersAreTyping": "{username} i {count} més estan escrivint…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "userAndUserAreTyping": "{username} i {username2} estan escrivint…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userIsTyping": "{username} està escrivint…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userLeftTheChat": "{username} ha marxat del xat",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "username": "Nom d’usuari",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userSentUnknownEvent": "{username} ha enviat un esdeveniment {type}",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "verify": "Verifica",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "Inicia la verificació",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "T'has verificat correctament!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "Verificant un altre compte",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "Videotrucada",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "Visibilitat de l’historial del xat",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "Visible per a tots els participants",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "Visible per a tothom",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "Missatge de veu",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "S’està esperant que l’altre accepti l’emoji…",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "S’està esperant que l’altre accepti els nombres…",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "Fons",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "Atenció!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "Us hem enviat un missatge de correu electrònic",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "Qui pot unir-se a aquest grup",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "Amb aquestes adreces, si ho necessiteu, podeu recuperar la vostra contrasenya.",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "Escriviu un missatge…",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "Sí",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "Vós",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "Us han convidat a aquest xat",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "Ja no participeu en aquest xat",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "No us podeu convidar a vós mateix",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "Has estat vetat d'aquest xat",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "La vostra clau pública",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Tot",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "Afegeix a un espai",
+ "@addToSpace": {},
+ "areYouSureYouWantToLogout": "Segur que voleu finalitzar la sessió?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "Afegeix una adreça electrònica",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandInvalid": "L’ordre no és vàlida",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "fontSize": "Mida de la lletra",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "Ves a la sala nova",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Següent",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "Enllaç",
+ "@link": {},
+ "people": "Gent",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactMessage": "Vela el missatge",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "Envia en prémer Retorn",
+ "@sendOnEnter": {},
+ "clearArchive": "Neteja l’arxiu",
+ "@clearArchive": {},
+ "chatBackupDescription": "La còpia de seguretat dels xats és protegida amb una clau. Assegureu-vos de no perdre-la.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "El xat s’ha afegit a aquest espai",
+ "@chatHasBeenAddedToThisSpace": {},
+ "autoplayImages": "Reprodueix automàticament enganxines i emoticones animades",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "chatBackup": "Còpia de seguretat del xat",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "Blocat",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "Tot és a punt!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceName": "Nom de l’espai",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Cerca",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "Verificat",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Xat nou",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "Canvia l’avatar",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Ignora",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "Envia una resposta com a reacció",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "defaultPermissionLevel": "Nivell de permisos per defecte",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Extremadament ofensiu",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourChatBackupHasBeenSetUp": "S’ha configurat la còpia de seguretat del xat.",
+ "@yourChatBackupHasBeenSetUp": {},
+ "contentHasBeenReported": "El contingut s’ha denunciat als administradors del servidor",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Activa el xifratge",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterASpacepName": "Introduïu un nom d’espai",
+ "@enterASpacepName": {},
+ "addAccount": "Afegeix un compte",
+ "@addAccount": {},
+ "noEncryptionForPublicRooms": "Només podreu activar el xifratge quan la sala ja no sigui accessible públicament.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "Versió de la sala",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "Envia missatges",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "Desa el fitxer",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "Seguiu les instruccions al lloc web i toqueu «Següent».",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "Denuncia el missatge",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setAsCanonicalAlias": "Defineix com a àlies principal",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "status": "Estat",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "Commuta l’estat «preferit»",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "Commuta l’estat «silenci»",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "Transfereix des d’un altre dispositiu",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "Defineix emoticones personalitzades",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "Qui pot efectuar quina acció",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "Per què voleu denunciar això?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "Voleu suprimir la còpia de seguretat dels xats per a crear una clau de seguretat nova?",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "S’està esperant que l’altre accepti la sol·licitud…",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "No verificat",
+ "@unverified": {},
+ "commandHint_me": "Descriviu-vos",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "commandMissing": "{command} no és una ordre.",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "configureChat": "Configura el xat",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Copia al porta-retalls",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "Espai nou",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorObtainingLocation": "S’ha produït un error en obtenir la ubicació: {error}",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "groups": "Grups",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Missatges",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "Mostra la contrasenya",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "L’espai és públic",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "scanQrCode": "Escaneja un codi QR",
+ "@scanQrCode": {},
+ "obtainingLocation": "S’està obtenint la ubicació…",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareLocation": "Comparteix la ubicació",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "S’està sincronitzant… Espereu.",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Raó",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheDisplaynameTo": "{username} ha canviat el seu àlies a: '{displayname}'",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "howOffensiveIsThisContent": "Com d’ofensiu és aquest contingut?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "Neteja la memòria cau",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "commandHint_join": "Uneix-te a la sala",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_kick": "Elimina l'usuari indicat d'aquesta sala",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_myroomavatar": "Establiu la imatge per a aquesta sala (per mxc-uri)",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_dm": "Inicia un xat directe\nUsa --no-encryption per desactivar l'encriptatge",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_invite": "Convida l'usuari indicat a aquesta sala",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "commandHint_ban": "Prohibeix l'usuari indicat d'aquesta sala",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_create": "Crea un xat de grup buit\nUsa --no-encryption per desactivar l'encriptatge",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "commandHint_discardsession": "Descarta la sessió",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "passwordsDoNotMatch": "Les contrasenyes no coincideixen!",
+ "@passwordsDoNotMatch": {},
+ "pleaseEnterValidEmail": "Introduïu una adreça electrònica vàlida.",
+ "@pleaseEnterValidEmail": {},
+ "repeatPassword": "Repetiu la contrasenya",
+ "@repeatPassword": {},
+ "pleaseChooseAtLeastChars": "Seleccioneu almenys {min} caràcters.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "bubbleSize": "Mida de la bombolla",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "Estableix el teu àlies per a aquesta sala",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "editBlockedServers": "Edita els servidors bloquejats",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "El servidor admet els inicis de sessió:\n{serverVersions}\nPerò l'aplicació només admet:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "editChatPermissions": "Edita els permisos del xat",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "dehydrate": "",
+ "@dehydrate": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "reportUser": "",
+ "@reportUser": {},
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "badServerVersionsException": "",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "yourStory": "",
+ "@yourStory": {},
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "emojis": "",
+ "@emojis": {},
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/l10n/intl_cs.arb b/assets/l10n/intl_cs.arb
index 3067b3e02..1414bb3d1 100644
--- a/assets/l10n/intl_cs.arb
+++ b/assets/l10n/intl_cs.arb
@@ -2343,7 +2343,7 @@
"@notAnImage": {},
"importNow": "Importovat nyní",
"@importNow": {},
- "redactedByBecause": "Redigováno uživatelem {username} s důvodem: \"{reason}\"",
+ "redactedByBecause": "Smazáno uživatelem {username} s důvodem: \"{reason}\"",
"@redactedByBecause": {
"type": "text",
"placeholders": {
@@ -2415,7 +2415,7 @@
"@jumpToLastReadMessage": {},
"signInWithPassword": "Přihlásit se pomocí hesla",
"@signInWithPassword": {},
- "redactedBy": "Redigováno uživatelem {username}",
+ "redactedBy": "Smazáno uživatelem {username}",
"@redactedBy": {
"type": "text",
"placeholders": {
@@ -2432,9 +2432,9 @@
"@noOneCanJoin": {},
"tryAgain": "Zkuste to znovu",
"@tryAgain": {},
- "redactMessageDescription": "Tato zpráva bude skryta pro všechny účastníky konverzace. Tuto akci nelze vzít zpět.",
+ "redactMessageDescription": "Tato zpráva bude smazána pro všechny účastníky konverzace. Tuto akci nelze vzít zpět.",
"@redactMessageDescription": {},
- "optionalRedactReason": "(Nepovinné) Důvod redakce této zprávy…",
+ "optionalRedactReason": "(Nepovinné) Důvod smazání této zprávy…",
"@optionalRedactReason": {},
"messagesStyle": "Zprávy:",
"@messagesStyle": {},
@@ -2566,5 +2566,96 @@
}
},
"requests": "Žádosti",
- "@requests": {}
+ "@requests": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "report": "",
+ "@report": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "invite": "",
+ "@invite": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "enterSpace": "",
+ "@enterSpace": {},
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {}
}
diff --git a/assets/l10n/intl_de.arb b/assets/l10n/intl_de.arb
index 077f0efd3..e472d80ec 100644
--- a/assets/l10n/intl_de.arb
+++ b/assets/l10n/intl_de.arb
@@ -1159,7 +1159,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "Es sieht so aus, als hättest du keine Google-Dienste auf deinem Gerät. Das ist eine gute Entscheidung für deine Privatsphäre! Um Push-Benachrichtigungen in FluffyChat zu erhalten, empfehlen wir die Verwendung von microG https://microg.org/ oder Unified Push https://unifiedpush.org/.",
+ "noGoogleServicesWarning": "Firebase Cloud Messaging scheint auf deinem Gerät nicht verfügbar zu sein. Um trotzdem Push-Benachrichtigungen zu erhalten, empfehlen wir die Installation von ntfy. Mit ntfy oder einem anderen Unified Push Anbieter kannst du Push-Benachrichtigungen datensicher empfangen. Du kannst ntfy im PlayStore oder bei F-Droid herunterladen.",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -1888,7 +1888,7 @@
"type": "text",
"placeholders": {}
},
- "verify": "Bestätigen",
+ "verify": "Verifizieren",
"@verify": {
"type": "text",
"placeholders": {}
@@ -2211,7 +2211,7 @@
"@openChat": {},
"confirmEventUnpin": "Möchtest du das Ereignis wirklich dauerhaft lösen?",
"@confirmEventUnpin": {},
- "dismiss": "Ablehnen",
+ "dismiss": "Verwerfen",
"@dismiss": {},
"switchToAccount": "Zu Konto {number} wechseln",
"@switchToAccount": {
@@ -2607,5 +2607,57 @@
"invitePrivateChat": "📨 Einladungen zum privaten Chat",
"@invitePrivateChat": {},
"invalidInput": "Ungültige Eingabe!",
- "@invalidInput": {}
+ "@invalidInput": {},
+ "hasKnocked": "{user} hat angeklopft",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "wrongPinEntered": "Falsche PIN eingegeben! Bitte in {seconds} Sekunden erneut versuchen ...",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "pleaseEnterANumber": "Bitte eine Zahl größer 0 eingeben",
+ "@pleaseEnterANumber": {},
+ "emoteKeyboardNoRecents": "Kürzlich verwendete Emotes werden hier angezeigt ...",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banUserDescription": "Der Benutzer wird aus dem Chat gebannt und kann den Chat erst wieder betreten, wenn die Verbannung aufgehoben wird.",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "Du wirst von diesem Gerät abgemeldet und kannst dann dort keine Nachrichten mehr empfangen.",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "Der Benutzer kann den Chat dann wieder betreten, wenn er es versucht.",
+ "@unbanUserDescription": {},
+ "todoLists": "(Beta) Aufgabenlisten",
+ "@todoLists": {},
+ "editTodo": "Aufgabe bearbeiten",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "Push-Benachrichtigungen nicht verfügbar",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "Bitte einen Titel hinzufügen",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "Sobald du diesen Benutzer zum Administrator gemacht hast, kannst du das möglicherweise nicht mehr rückgängig machen, da er dann über dieselben Berechtigungen wie du verfügt.",
+ "@makeAdminDescription": {},
+ "noTodosYet": "Zu diesem Chat wurden noch keine Aufgaben hinzugefügt. Erstellen die erste Aufgabe und fange an, mit anderen zusammenzuarbeiten. 📝",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "Der Chat wird in das Archiv verschoben. Andere Benutzer können sehen, dass du den Chat verlassen hast.",
+ "@archiveRoomDescription": {},
+ "newTodo": "Neue Aufgabe",
+ "@newTodo": {},
+ "learnMore": "Erfahre mehr",
+ "@learnMore": {},
+ "todoListChangedError": "Hoppla ... Die Aufgabenliste wurde geändert, während Sie sie bearbeitet haben.",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "Der Chat wird dann mit der neuen Raumversion neu erstellt. Alle Teilnehmer werden benachrichtigt, dass sie zum neuen Chat wechseln müssen. Mehr über Raumversionen erfährst du unter https://spec.matrix.org/latest/rooms/",
+ "@roomUpgradeDescription": {},
+ "kickUserDescription": "Der Benutzer wird aus dem Chat geworfen, aber nicht gebannt. In öffentlichen Chats kann der Benutzer jederzeit wieder beitreten.",
+ "@kickUserDescription": {},
+ "todosUnencrypted": "Bitte beachte, dass Todos für jeden im Chat sichtbar und nicht Ende zu Ende verschlüsselt sind.",
+ "@todosUnencrypted": {}
}
diff --git a/assets/l10n/intl_el.arb b/assets/l10n/intl_el.arb
index 0967ef424..d138084cf 100644
--- a/assets/l10n/intl_el.arb
+++ b/assets/l10n/intl_el.arb
@@ -1 +1,2620 @@
-{}
+{
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "darkTheme": "",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "close": "",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "device": "",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "editDisplayname": "",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "banFromChat": "",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "askSSSSSign": "",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "changedTheChatDescriptionTo": "",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "countParticipants": "",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "areGuestsAllowedToJoin": "",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "dateWithoutYear": "",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "couldNotDecryptMessage": "",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheGuestAccessRules": "",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "dateWithYear": "",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "create": "",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "all": "",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "chatBackup": "",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "compareEmojiMatch": "",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomAliases": "",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "help": "",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "chatDetails": "",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "delete": "",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatPermissions": "",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeWallpaper": "",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "acceptedTheInvitation": "",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "changedTheChatNameTo": "",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "account": "",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "placeCall": "",
+ "@placeCall": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "openCamera": "",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "chat": "",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheProfileAvatar": "",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "allChats": "",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "badServerVersionsException": "",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "",
+ "@addToSpace": {},
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "about": "",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "activatedEndToEndEncryption": "",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "fluffychat": "",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "cancel": "",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "appLock": "",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "copiedToClipboard": "",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "confirm": "",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "dateAndTimeOfDay": "",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "logout": "",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "contactHasBeenInvitedToTheGroup": "",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "bannedUser": "",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "askVerificationRequest": "",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "changeTheHomeserver": "",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "changePassword": "",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "chooseAUsername": "",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ }
+}
diff --git a/assets/l10n/intl_en.arb b/assets/l10n/intl_en.arb
index 78a315041..5dc8cd899 100644
--- a/assets/l10n/intl_en.arb
+++ b/assets/l10n/intl_en.arb
@@ -55,6 +55,11 @@
"type": "text",
"placeholders": {}
},
+ "accountInformation": "Account information",
+ "@accountInformation": {
+ "type": "text",
+ "placeholders": {}
+ },
"activatedEndToEndEncryption": "🔐 {username} activated end to end encryption",
"@activatedEndToEndEncryption": {
"type": "text",
@@ -76,7 +81,16 @@
"mxid": {}
}
},
- "addChatDescription": "Add a chat description",
+ "addGroupDescription": "Add a chat description",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addNewFriend": "Add new friend",
+ "@addNewFriend": {
+ "type": "text",
+ "placeholders": {}
+ },
"addToSpace": "Add to space",
"@addToSpace": {},
"admin": "Admin",
@@ -99,6 +113,11 @@
"type": "text",
"placeholders": {}
},
+ "alreadyHaveAnAccount": "Already have an account?",
+ "@alreadyHaveAnAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
"commandHint_googly": "Send some googly eyes",
"commandHint_cuddle": "Send a cuddle",
"commandHint_hug": "Send a hug",
@@ -187,7 +206,7 @@
},
"sendTypingNotifications": "Send typing notifications",
"@sendTypingNotifications": {},
- "sendOnEnter": "Send on enter",
+ "sendOnEnter": "Always send on enter",
"@sendOnEnter": {},
"badServerVersionsException": "The homeserver supports the Spec versions:\n{serverVersions}\nBut this app supports only {supportedVersions}",
"@badServerVersionsException": {
@@ -371,7 +390,7 @@
"type": "text",
"placeholders": {}
},
- "changeTheNameOfTheGroup": "Change the name of the group",
+ "changeTheNameOfTheGroup": "Change the name of the chat",
"@changeTheNameOfTheGroup": {
"type": "text",
"placeholders": {}
@@ -415,11 +434,12 @@
},
"chatHasBeenAddedToThisSpace": "Chat has been added to this space",
"@chatHasBeenAddedToThisSpace": {},
- "chats": "Chats",
+ "chats": "Group Chats",
"@chats": {
"type": "text",
"placeholders": {}
},
+ "classes": "Classes",
"chooseAStrongPassword": "Choose a strong password",
"@chooseAStrongPassword": {
"type": "text",
@@ -563,7 +583,7 @@
"type": "text",
"placeholders": {}
},
- "connect": "Connect",
+ "connect": "Start",
"@connect": {
"type": "text",
"placeholders": {}
@@ -583,7 +603,7 @@
"type": "text",
"placeholders": {}
},
- "contentHasBeenReported": "The content has been reported to the server admins",
+ "contentHasBeenReported": "The content has been reported",
"@contentHasBeenReported": {
"type": "text",
"placeholders": {}
@@ -630,7 +650,12 @@
}
},
"createGroup": "Create group",
- "createNewSpace": "New space",
+ "createNewSpace": "Create an exchange space",
+ "createNewGroup": "Create a new chat",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
"@createNewSpace": {
"type": "text",
"placeholders": {}
@@ -751,6 +776,11 @@
"placeholders": {}
},
"chatPermissions": "Chat permissions",
+ "editChatPermissions": "Edit chat permissions",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
"editDisplayname": "Edit displayname",
"@editDisplayname": {
"type": "text",
@@ -843,7 +873,7 @@
"senderName": {}
}
},
- "enterAGroupName": "Enter a group name",
+ "enterAGroupName": "Enter a chat name",
"@enterAGroupName": {
"type": "text",
"placeholders": {}
@@ -853,7 +883,7 @@
"type": "text",
"placeholders": {}
},
- "enterASpacepName": "Enter a space name",
+ "enterASpacepName": "Enter a name",
"@enterASpacepName": {},
"homeserver": "Homeserver",
"@homeserver": {},
@@ -914,7 +944,7 @@
"type": "text",
"placeholders": {}
},
- "group": "Group",
+ "group": "Chat",
"@group": {
"type": "text",
"placeholders": {}
@@ -922,16 +952,26 @@
"chatDescription": "Chat description",
"chatDescriptionHasBeenChanged": "Chat description changed",
"groupIsPublic": "Group is public",
+ "groupDescription": "Chat description",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "Chat description changed",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
"@groupIsPublic": {
"type": "text",
"placeholders": {}
},
- "groups": "Groups",
+ "groups": "Chats",
"@groups": {
"type": "text",
"placeholders": {}
},
- "groupWith": "Group with {displayname}",
+ "groupWith": "Chat with {displayname}",
"@groupWith": {
"type": "text",
"placeholders": {
@@ -986,22 +1026,22 @@
"type": "text",
"placeholders": {}
},
- "ignore": "Ignore",
+ "ignore": "Block",
"@ignore": {
"type": "text",
"placeholders": {}
},
- "ignoredUsers": "Ignored users",
+ "ignoredUsers": "Blocked users",
"@ignoredUsers": {
"type": "text",
"placeholders": {}
},
- "ignoreListDescription": "You can ignore users who are disturbing you. You won't be able to receive any messages or room invites from the users on your personal ignore list.",
+ "ignoreListDescription": "You can block users who are disturbing you. You won't be able to receive any messages or invites from the users on your personal block list.",
"@ignoreListDescription": {
"type": "text",
"placeholders": {}
},
- "ignoreUsername": "Ignore username",
+ "ignoreUsername": "Block username",
"@ignoreUsername": {
"type": "text",
"placeholders": {}
@@ -1016,7 +1056,7 @@
"type": "text",
"placeholders": {}
},
- "inoffensive": "Inoffensive",
+ "inoffensive": "Slightly offensive",
"@inoffensive": {
"type": "text",
"placeholders": {}
@@ -1035,12 +1075,6 @@
}
},
"inviteContactToGroup": "Invite contact to {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
"noChatDescriptionYet": "No chat description created yet.",
"anyoneCanKnock": "Anyone can knock",
"noOneCanJoin": "No one can join",
@@ -1290,7 +1324,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "It seems that you have no google services on your phone. That's a good decision for your privacy! To receive push notifications in FluffyChat we recommend using https://microg.org/ or https://unifiedpush.org/.",
+ "noGoogleServicesWarning": "Firebase Cloud Messaging doesn't appear to be available on your device. To still receive push notifications, we recommend installing ntfy. With ntfy or another Unified Push provider you can receive push notifications in a data secure way. You can download ntfy from the PlayStore or from F-Droid.",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -1421,7 +1455,7 @@
"@link": {},
"serverRequiresEmail": "This server needs to validate your email address for registration.",
"@serverRequiresEmail": {},
- "optionalGroupName": "(Optional) Group name",
+ "optionalGroupName": "(Optional) Chat name",
"@optionalGroupName": {
"type": "text",
"placeholders": {}
@@ -1898,7 +1932,7 @@
"type": "text",
"placeholders": {}
},
- "spaceName": "Space name",
+ "spaceName": "Name",
"@spaceName": {
"type": "text",
"placeholders": {}
@@ -2164,7 +2198,7 @@
"type": "text",
"placeholders": {}
},
- "whoIsAllowedToJoinThisGroup": "Who is allowed to join this group",
+ "whoIsAllowedToJoinThisGroup": "Who is allowed to join this chat",
"@whoIsAllowedToJoinThisGroup": {
"type": "text",
"placeholders": {}
@@ -2402,6 +2436,12 @@
"user": {}
}
},
+ "hasKnocked": "{user} has knocked",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
"noEmailWarning": "Please enter a valid email address. Otherwise you won't be able to reset your password. If you don't want to, tap again on the button to continue.",
"@noEmailWarning": {},
"stories": "Stories",
@@ -2452,9 +2492,9 @@
"@whyIsThisMessageEncrypted": {},
"noKeyForThisMessage": "This can happen if the message was sent before you have signed in to your account at this device.\n\nIt is also possible that the sender has blocked your device or something went wrong with the internet connection.\n\nAre you able to read the message on another session? Then you can transfer the message from it! Go to Settings > Devices and make sure that your devices have verified each other. When you open the room the next time and both sessions are in the foreground, the keys will be transmitted automatically.\n\nDo you not want to lose the keys when logging out or switching devices? Make sure that you have enabled the chat backup in the settings.",
"@noKeyForThisMessage": {},
- "newGroup": "New group",
+ "newGroup": "New chat",
"@newGroup": {},
- "newSpace": "New space",
+ "newSpace": "New class",
"@newSpace": {},
"enterSpace": "Enter space",
"@enterSpace": {},
@@ -2487,7 +2527,7 @@
"letsStart": "Let's start",
"enterInviteLinkOrMatrixId": "Enter invite link or Matrix ID...",
"reopenChat": "Reopen chat",
- "noBackupWarning": "Warning! Without enabling chat backup, you will lose access to your encrypted messages. It is highly recommended to enable the chat backup first before logging out.",
+ "noBackupWarning": "Don't forget your password!",
"noOtherDevicesFound": "No other devices found",
"fileIsTooBigForServer": "The server reports that the file is too large to be sent.",
"fileHasBeenSavedAt": "File has been saved at {path}",
@@ -2513,19 +2553,1390 @@
"provider": {}
}
},
- "profileNotFound": "The user could not be found on the server. Maybe there is a connection problem or the user doesn't exist.",
- "setTheme": "Set theme:",
- "setColorTheme": "Set color theme:",
- "invite": "Invite",
- "requests": "Requests",
- "inviteGroupChat": "📨 Invite group chat",
- "invitePrivateChat": "📨 Invite private chat",
- "invalidInput": "Invalid input!",
- "wrongPinEntered": "Wrong pin entered! Try again in {seconds} seconds...",
- "@wrongPinEntered": {
+ "profileNotFound": "The user could not be found on the server. Maybe there is a connection problem or the user doesn't exist.",
+ "setTheme": "Set theme:",
+ "setColorTheme": "Set color theme:",
+ "invite": "Invite",
+ "requests": "Requests",
+ "inviteGroupChat": "📨 Invite group chat",
+ "invitePrivateChat": "📨 Invite private chat",
+ "invalidInput": "Invalid input!",
+ "wrongPinEntered": "Wrong pin entered! Try again in {seconds} seconds...",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "pleaseEnterANumber": "Please enter a number greater than 0",
+ "archiveRoomDescription": "The chat will be moved to the archive. Other users will be able to see that you have left the chat.",
+ "roomUpgradeDescription": "The chat will then be recreated with the new room version. All participants will be notified that they need to switch to the new chat. You can find out more about room versions at https://spec.matrix.org/latest/rooms/",
+ "allCorrect": "That's how I would say it! Nice!",
+ "newWayAllGood": "That's not how I would have said it but it looks good!",
+ "othersAreBetter": "Hm, there might be a better way to say that.",
+ "holdForInfo": "Click and hold for word info.",
+ "greenFeedback": "That's what I would put!",
+ "yellowFeedback": "Hm, you can try that and see if it works! To use this word, just click it again.",
+ "redFeedback": "I don't think that's right...",
+ "customInputFeedbackChoice": "You wrote it in. Nice!",
+ "itInstructionsTitle": "I can help you translate!",
+ "itInstructionsBody": "You can click and hold choices for word info.",
+ "toggleLanguages": "Toggle the language of selected messages.",
+ "classWelcomeChat": "Welcome Chat",
+ "@classWelcomeChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteSpace": "Delete Space",
+ "deleteGroup": "Delete Group Chat",
+ "areYouSureDeleteClass": "Are you sure you want to delete this space?",
+ "areYouSureDeleteGroup": "Are you sure you want to delete this group chat?",
+ "cannotBeReversed": "This action cannot be reversed",
+ "enterDeletedClassName": "Enter space name to confirm:",
+ "incorrectClassName": "Incorrect Space Name",
+ "oneday": "Last 24 hours",
+ "@oneday": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneweek": "Last 7 days",
+ "@oneweek": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onemonth": "Past month",
+ "@onemonth": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sixmonth": "Past 6 months",
+ "@sixmonth": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneyear": "Past year",
+ "@oneyear": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "gaTooltip": "L2 use with grammar assistance",
+ "taTooltip": "L2 use with translation assistance",
+ "unTooltip": "Other",
+ "interactiveTranslatorSliderHeader": "Interactive Translator",
+ "interactiveGrammarSliderHeader": "Interactive Grammar Checker",
+ "interactiveTranslatorNotAllowed": "Disabled",
+ "@interactiveTranslatorNotAllowed": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslatorAllowed": "Student Choice",
+ "@interactiveTranslatorAllowed": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslatorRequired": "Required",
+ "@interactiveTranslatorRequired": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslatorNotAllowedDesc": "Translation assistance is disabled in space group chats for all participants. This restriction does not apply to Class/Exchange Admin or direct chats.",
+ "@interactiveTranslatorNotAllowedDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslatorAllowedDesc": "Students can choose whether to use translation assistance in space group chats in Settings > Learning Settings.",
+ "@interactiveTranslatorAllowedDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslatorRequiredDesc": "Students cannot turn off translation assistance. They can choose not to accept the translation suggestions. This restriction does not apply to Class/Exchange or direct chats.",
+ "@interactiveTranslatorRequiredDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notYetSet": "Not yet set",
+ "@notYetSet": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "multiLingualClass": "Multilingual Class",
+ "classAnalytics": "Class Analytics",
+ "@classAnalytics": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allClasses": "All Classes",
+ "@allClasses": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "myLearning": "My Analytics",
+ "@myLearning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChatsAndClasses": "All chats and spaces",
+ "timeOfLastMessage": "Time of last sent message",
+ "totalMessages": "Total messages sent",
+ "waTooltip": "L2 use without assistance",
+ "changeDateRange": "Change date range",
+ "numberOfStudents": "Number of Students",
+ "@numberOfStudents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classDescription": "Description",
+ "@classDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classDescriptionDesc": "Set a description",
+ "@classDescriptionDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestToEnroll": "Request to Enroll",
+ "@requestToEnroll": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestAnExchange": "Request an Exchange",
+ "@requestAnExchange": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "findLanguageExchange": "Find a class exchange partner",
+ "@findLanguageExchange": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classAnalyticsDesc": "Detailed information on student engagement and language use",
+ "@classAnalyticsDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addStudents": "Add students",
+ "@addStudents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyClassLink": "Copy invite link",
+ "@copyClassLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyClassLinkDesc": "Clicking this link will take students to the app, direct them to make an account and they will automatically join this space.",
+ "@copyClassLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyClassCode": "Copy invite code",
+ "inviteStudentByUserName": "Invite student by username",
+ "@inviteStudentByUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classSettings": "Class Settings",
+ "@classSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classSettingsDesc": "Edit class languages and proficiency level.",
+ "@classSettingsDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "selectClassRoomDominantLanguage": "What is the base language of your class?",
+ "@selectClassRoomDominantLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "selectTargetLanguage": "What language are you teaching?",
+ "@selectTargetLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsYourClassLanguageLevel": "What is the average language level of your class?",
+ "@whatIsYourClassLanguageLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "studentPermissions": "Student Permissions",
+ "@studentPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslator": "Translation assistance",
+ "@interactiveTranslator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneToOneChatsWithinClass": "Private Chats within Space",
+ "@oneToOneChatsWithinClass": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneToOneChatsWithinClassDesc": "If you allow private chats, students can initiate and use private chats with other space participants. Otherwise, they can only participate in groups chats.",
+ "@oneToOneChatsWithinClassDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createGroupChats": "Create Group Chats",
+ "@createGroupChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createGroupChatsDesc": "Toggle this on to allow students to create group chats within the class/exchange space.",
+ "@createGroupChatsDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareVideo": "Share Video",
+ "@shareVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareVideoDesc": "Toggle this on to allow students to share videos in chats.",
+ "@shareVideoDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharePhotos": "Share Photos",
+ "@sharePhotos": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharePhotosDesc": "Toggle this on to allow students to share photos in chats.",
+ "@sharePhotosDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareFiles": "Share Files",
+ "@shareFiles": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareFilesDesc": "Toggle this on to allow students to share files in chats.",
+ "@shareFilesDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareLocationDesc": "Toggle this on to allow students to share location in chats.",
+ "@shareLocationDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "selectLanguageLevel": "Select language level",
+ "@selectLanguageLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noIdenticalLanguages": "Please choose different base and target languages",
+ "@noIdenticalLanguages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iWantALanguagePartnerFrom": "Is from:",
+ "@iWantALanguagePartnerFrom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "worldWide": "Worldwide",
+ "@worldWide": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noResults": "No results! Try broadening your search.",
+ "@noResults": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "searchBy": "Search by country and languages",
+ "@searchBy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iWantAConversationPartner": "I want a conversation partner who",
+ "@iWantAConversationPartner": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iWantALanguagePartnerWhoSpeaks": "Speaks:",
+ "@iWantALanguagePartnerWhoSpeaks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iWantALanguagePartnerWhoIsLearning": "Is learning:",
+ "@iWantALanguagePartnerWhoIsLearning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourBirthdayPlease": "Pangea Chat serves schools and other learning communities, ages 13 and up, around the world.\n\nIn order to protect our young learners, we ask our users to verify their age before connecting to our community.\n\nBefore you can search Pangea Chat for classes, rooms, and new friends, you must verify you are 18 or older.",
+ "@yourBirthdayPlease": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invalidDob": "Invalid Date of Birth",
+ "@invalidDob": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourDob": "Enter your Date of Birth",
+ "@enterYourDob": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "getStarted": "Get Started",
+ "@getStarted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mustBe13": "User should be 13 years old",
+ "@mustBe13": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourBirthdayPleaseShort": "Please provide your date of birth",
+ "@yourBirthdayPleaseShort": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorPleaseRefresh": "We're looking into it! Please reload and try again.",
+ "@errorPleaseRefresh": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinWithClassCode": "Join class or exchange",
+ "@joinWithClassCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinWithClassCodeDesc": "Connect to a class or exchange space with the 6-digit invite code provided by the space administrator.",
+ "@joinWithClassCodeDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinWithClassCodeHint": "Enter invite code",
+ "@joinWithClassCodeHint": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unableToFindClass": "We are unable to find the class or exchange. Please double-check the information with the space administrator. If you are still experiencing an issue, please contact support@pangea.chat.",
+ "@unableToFindClass": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelPreA1": "True Beginner (Pre A1)",
+ "@languageLevelPreA1": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelA1": "Beginner (A1)",
+ "@languageLevelA1": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelA2": "Elementary (A2)",
+ "@languageLevelA2": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelB1": "Intermediate (B1)",
+ "@languageLevelB1": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelB2": "Upper Intermediate (B2)",
+ "@languageLevelB2": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelC1": "Advanced (C1)",
+ "@languageLevelC1": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelC2": "Mastery (C2)",
+ "@languageLevelC2": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheClass": "Change the name",
+ "@changeTheNameOfTheClass": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheChat": "Change the name of the chat",
+ "@changeTheNameOfTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "welcomeToYourNewClass": "Welcome! 🙂",
+ "@welcomeToYourNewClass": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "welcomeToClass": "Welcome! 🙂\n- Try joining a chat!\n- Have fun chatting!",
+ "@welcomeToClass": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "welcomeToPangea18Plus": "Welcome to Pangea Chat! 🙂\nWhat's next?\nCreate or join a class!\nOr search for a conversation partner!",
+ "@welcomeToPangea18Plus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "welcomeToPangeaMinor": "Welcome to Pangea Chat! 🙂\nWhat's next?\nJoin a class!\nAsk your teacher for an invite code.",
+ "@welcomeToPangeaMinor": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "findALanguagePartner": "Find a conversation partner",
+ "@findALanguagePartner": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setToPublicSettingsTitle": "Want to find a conversation partner?",
+ "@setToPublicSettingsTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setToPublicSettingsDesc": "Before you can search for a conversation parter, you must set your profile visibility to public.",
+ "@setToPublicSettingsDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accountSettings": "Account settings",
+ "@accountSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unableToFindClassCode": "Unable to find code.",
+ "@unableToFindClassCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askPangeaBot": "Ask Pangea Bot for a contextual definition.",
+ "sorryNoResults": "Sorry, no results.",
+ "@sorryNoResults": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreInThisText": "Ignore",
+ "@ignoreInThisText": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "helpMeTranslate": "Help me translate!",
+ "@helpMeTranslate": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needsItShortMessage": "Try interactive translation!",
+ "needsIGCShortMessage": "Try interactive grammar assistance!",
+ "@needsItShortMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needsItMessage": "This message has too many words in your base language.",
+ "@needsItMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needsIgcMessage": "This message has a grammar error.",
+ "tokenTranslationTitle": "A word is in your base language.",
+ "@tokenTranslationTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spanTranslationDesc": "See possible translations below.",
+ "@spanTranslationDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spanTranslationTitle": "Some words are in your base language.",
+ "@spanTranslationTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "l1SpanAndGrammarTitle": "Outside target language",
+ "l1SpanAndGrammarDesc": "This could in your base language or it could be a grammar error.",
+ "otherTitle": "You have an error.",
+ "@otherTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "otherDesc": "See possible corrections below.",
+ "@otherDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countryInformation": "My country",
+ "@countryInformation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "myLanguages": "My base and target language",
+ "@myLanguages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "targetLanguage": "Target Language",
+ "@targetLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceLanguage": "Base language",
+ "@sourceLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languagesISpeak": "Languages I speak",
+ "@languagesISpeak": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "updateLanguage": "My languages",
+ "@updateLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatLanguageYouWantToLearn": "What language do you want to learn?",
+ "@whatLanguageYouWantToLearn": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsYourBaseLanguage": "What is your base language? \n\nInteractive translation is only available for English and Spanish.",
+ "@whatIsYourBaseLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveChanges": "Save changes",
+ "@saveChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicProfileTitle": "Public Profile",
+ "@publicProfileTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicProfileDesc": "Your profile must be public in order to search or be found as a conversation partner.",
+ "@publicProfileDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error502504Title": "Wow, there are a lot of students online!",
+ "@error502504Title": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error502504Desc": "Translation and grammar tools may be slow or unavailable while the Pangea bots catch up.",
+ "@error502504Desc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error404Title": "Translation error!",
+ "@error404Title": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error404Desc": "Pangea Bot isn't sure how to translate that...",
+ "@error404Desc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorDisableIT": "Translation assistance is turned off.",
+ "errorDisableIGC": "Grammar assistance is turned off.",
+ "errorDisableLanguageAssistance": "Translation assistance and grammar assistance are turned off.",
+ "errorDisableITUserDesc": "Click here to update translation assistance settings",
+ "errorDisableIGCUserDesc": "Click here to update grammar assistance settings",
+ "errorDisableLanguageAssistanceUserDesc": "Click here to update translation assistance and grammar assistance settings",
+ "errorDisableITClassDesc": "Translation assistance is turned off for the space that this chat is in.",
+ "errorDisableIGCClassDesc": "Grammar assistance is turned off for the space that this chat is in.",
+ "errorDisableLanguageAssistanceClassDesc": "Translation assistance and grammar assistance are turned off for the space that this chat is in.",
+ "itIsDisabled": "Interactive Translation is disabled",
+ "igcIsDisabled": "Interactive Grammar Checking is disabled",
+ "goToLearningSettings": "Go to Learning Settings",
+ "error405Title": "Languages not set",
+ "error405Desc": "Please set your languages in Settings > Learning Settings",
+ "loginOrSignup": "Sign in with",
+ "@loginOrSignup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iAgreeToThe": "I agree to the ",
+ "@iAgreeToThe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "termsAndConditions": "Terms and Conditions",
+ "@termsAndConditions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "andCertifyIAmAtLeast13YearsOfAge": " and certify I am at least 13 years of age.",
+ "@andCertifyIAmAtLeast13YearsOfAge": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error502504Title": "Wow, there are a lot of students online!",
+ "@error502504Title": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error502504Desc": "Translation and grammar tools may be slow or unavailable while the Pangea bots catch up.",
+ "@error502504Desc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error404Title": "Translation error!",
+ "@error404Title": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error404Desc": "Pangea Bot isn't sure how to translate that...",
+ "@error404Desc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorPleaseRefresh": "We're looking into it! Please reload and try again.",
+ "@errorPleaseRefresh": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "findAClass": "Find a class (coming soon)",
+ "toggleIT": "Interactive Translation",
+ "@toggleIT": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleIGC": "Interactive Grammar Checking",
+ "@toggleIGC": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleToolSettingsDescription": "Here you can toggle your individual language tool settings. For chats within a space, the space settings will take precedence and may override these settings.",
+ "connectedToStaging": "You are connected to the staging server.",
+ "@connectedToStaging": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "learningSettings": "Learning Settings",
+ "classNameRequired": "Please enter a space name",
+ "@classNameRequired": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVoiceNotes": "Send Voice Notes",
+ "@sendVoiceNotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVoiceNotesDesc": "Toggle this on to allow students to send voice notes in chats.",
+ "@sendVoiceNotesDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatTopic": "Chat topic",
+ "@chatTopic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatTopicDesc": "Set a chat topic",
+ "@chatTopicDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classDescription": "Space Description",
+ "@classDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteStudentByUserNameDesc": "If your student already has an account, you can search for them.",
+ "@inviteStudentByUserNameDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classRoster": "Participants",
+ "@classRoster": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "almostPerfect": "That seems right! Here's what I would have said.",
+ "prettyGood": "Pretty good! Here's what I would have said.",
+ "letMeThink": "Hmm, let's see how you did!",
+ "clickMessageTitle": "Select messages for language help!",
+ "clickMessageBody": "Messages always show in your target language but you can select them to access definitions and translations!",
+ "understandingMessagesTitle": "Definitions and translations!",
+ "addToClass": "Add this chat to ",
+ "understandingMessagesBody": "Click underlined words for definitions. Translate with message options (upper right).",
+ "allDone": "All done!",
+ "vocab": "Vocabulary",
+
+ "low": "We have evidence the user does not understand these words.",
+ "medium": "These words have been used. It is unclear if the words are fully understood or not.",
+ "high": "We have evidence the user understands these words.",
+ "unknownProficiency": "These words have not been used in Pangea Chat.",
+ "changeView": "Switch views.",
+ "clearAll": "Clear all words?",
+ "generateVocabulary": "Generate vocabulary from title and description",
+ "generatePrompts": "Generate prompts",
+ "subscribe": "Subscribe",
+ "getAccess": "Unlock learning tools",
+ "subscriptionDesc": "Messaging is free! Subscribe to unlock interactive translation, grammar checking and learning analytics.",
+ "subscriptionManagement": "Subscription Management",
+ "currentSubscription": "Current Subscription",
+ "changeSubscription": "Change your subscription",
+ "cancelSubscription": "Cancel your subscription",
+ "selectYourPlan": "Select Your Plan",
+ "subsciptionPlatformTooltip": "Please login to your original device to manage your subscription plan",
+ "subscriptionManagementUnavailable": "Subscription management not available",
+ "paymentMethod": "Payment Method",
+ "paymentHistory": "Payment History",
+ "emptyChatDownloadWarning": "Cannot download empty chat",
+ "appUpdateAvailable": "Update Available",
+ "update": "Update",
+ "updateDesc": "You can now update this app from {localVersion} to {storeVersion}",
+ "@updateDesc": {
+ "type": "text",
+ "placeholders": {
+ "storeVersion": {},
+ "localVersion": {}
+ }
+ },
+ "maybeLater": "Maybe Later",
+ "mainMenu": "Main Menu",
+ "toggleImmersionMode": "Immersion Mode",
+ "toggleImmersionModeDesc": "When enabled, all messages are displayed in your target language and you can click the message to access definitions and translations.",
+ "itToggleDescription": "This language learning tool will identify words in your base language and help you translate them to your target language. Though rare, the AI can make translation errors.",
+ "igcToggleDescription": "This language learning tool will identify common spelling, grammar and punctuation errors in your message and suggest corrections. Though rare, the AI can make correction errors.",
+ "sendOnEnterDescription": "Turn this off to be able to add line spaces in messages. When the toggle is off on the browser app, you can press Shift + Enter to start a new line. When the toggle is off on mobile apps, just Enter will start a new line.",
+ "alreadyInClass": "You are already in this space.",
+ "pleaseLoginFirst": "Please login or sign up first and then you will be added to your class/exchange space.",
+ "originalMessage": "Original Message",
+ "sentMessage": "Sent Message",
+ "useType": "Use Type",
+ "notAvailable": "Not Available",
+ "taAndGaTooltip": "L2 use with translation assistance and grammar assistance",
+ "definitionsToolName": "Word Definitions",
+ "messageTranslationsToolName": "Message Translations",
+ "definitionsToolDescription": "When enabled, words underlined in blue can be clicked for definitions. Click messages to access definitions.",
+ "translationsToolDescrption": "When enabled, click a message and the translation icon to see a message in your base language.",
+ "welcomeBack": "Welcome back! If you were part of the 2023-2024 pilot, please contact us for your special pilot subscription. If you are a teacher who has (or whose institution has) purchased licenses for your class, contact us for your teacher subscription.",
+ "classExchanges": "Exchanges",
+ "createNewClass": "New class space",
+ "newExchange": "New exchange space",
+ "kickAllStudents": "Kick All Students",
+ "kickAllStudentsConfirmation": "Are you sure you want to kick all students?",
+ "inviteAllStudents": "Invite All Students",
+ "inviteAllStudentsConfirmation": "Are you sure you want to invite all students?",
+ "inviteStudentsFromOtherClasses": "Invite students from other spaces",
+ "inviteUsersFromPangea": "Add teachers",
+ "allExchanges": "All Exchanges",
+ "redeemPromoCode": "Redeem Promo Code",
+ "enterPromoCode": "Enter Promo Code",
+ "downloadTxtFile": "Download Text File",
+ "downloadCSVFile": "Download CSV File",
+ "promotionalSubscriptionDesc": "You currently have a lifetime promotional subscription. Message support@pangea.chat for help changing your subscription.",
+ "originalSubscriptionPlatform": "Subscription purchased through",
+ "oneWeekTrial": "One Week Trial",
+ "creatingSpacePleaseWait": "Creating space. Please wait...",
+ "downloadXLSXFile": "Download Excel File",
+ "abDisplayName": "Abkhaz",
+ "aaDisplayName": "Afar",
+ "afDisplayName": "Afrikaans",
+ "akDisplayName": "Akan",
+ "sqDisplayName": "Albanian",
+ "amDisplayName": "Amharic",
+ "arDisplayName": "Arabic",
+ "anDisplayName": "Aragonese",
+ "hyDisplayName": "Armenian",
+ "asDisplayName": "Assamese",
+ "avDisplayName": "Avaric",
+ "aeDisplayName": "Avestan",
+ "ayDisplayName": "Aymara",
+ "azDisplayName": "Azerbaijani",
+ "bmDisplayName": "Bambara",
+ "baDisplayName": "Bashkir",
+ "euDisplayName": "Basque",
+ "beDisplayName": "Belarusian",
+ "bnDisplayName": "Bengali",
+ "bhDisplayName": "Bihari",
+ "biDisplayName": "Bislama",
+ "bsDisplayName": "Bosnian",
+ "brDisplayName": "Breton",
+ "bgDisplayName": "Bulgarian",
+ "myDisplayName": "Burmese",
+ "caDisplayName": "Catalan, Valencian",
+ "chDisplayName": "Chamorro",
+ "ceDisplayName": "Chechen",
+ "nyDisplayName": "Chichewa, Chewa, Nyanja",
+ "zhDisplayName": "Chinese",
+ "cvDisplayName": "Chuvash",
+ "kwDisplayName": "Cornish",
+ "coDisplayName": "Corsican",
+ "crDisplayName": "Cree",
+ "hrDisplayName": "Croatian",
+ "csDisplayName": "Czech",
+ "daDisplayName": "Danish",
+ "dvDisplayName": "Divehi; Dhivehi; Maldivian;",
+ "nlDisplayName": "Dutch",
+ "enDisplayName": "English",
+ "eoDisplayName": "Esperanto",
+ "etDisplayName": "Estonian",
+ "eeDisplayName": "Ewe",
+ "foDisplayName": "Faroese",
+ "fjDisplayName": "Fijian",
+ "fiDisplayName": "Finnish",
+ "frDisplayName": "French",
+ "ffDisplayName": "Fula; Fulah; Pulaar; Pular",
+ "glDisplayName": "Galician",
+ "kaDisplayName": "Georgian",
+ "deDisplayName": "German",
+ "elDisplayName": "Greek, Modern",
+ "gnDisplayName": "Guaraní",
+ "guDisplayName": "Gujarati",
+ "htDisplayName": "Haitian, Haitian Creole",
+ "haDisplayName": "Hausa",
+ "heDisplayName": "Hebrew (modern)",
+ "hzDisplayName": "Herero",
+ "hiDisplayName": "Hindi",
+ "hoDisplayName": "Hiri Motu",
+ "huDisplayName": "Hungarian",
+ "iaDisplayName": "Interlingua",
+ "idDisplayName": "Indonesian",
+ "ieDisplayName": "Interlingue",
+ "gaDisplayName": "Irish",
+ "igDisplayName": "Igbo",
+ "ikDisplayName": "Inupiaq",
+ "ioDisplayName": "Ido",
+ "isDisplayName": "Icelandic",
+ "itDisplayName": "Italian",
+ "iuDisplayName": "Inuktitut",
+ "jaDisplayName": "Japanese",
+ "jvDisplayName": "Javanese",
+ "klDisplayName": "Kalaallisut, Greenlandic",
+ "knDisplayName": "Kannada",
+ "krDisplayName": "Kanuri",
+ "ksDisplayName": "Kashmiri",
+ "kkDisplayName": "Kazakh",
+ "kmDisplayName": "Khmer",
+ "kiDisplayName": "Kikuyu, Gikuyu",
+ "rwDisplayName": "Kinyarwanda",
+ "kyDisplayName": "Kirghiz, Kyrgyz",
+ "kvDisplayName": "Komi",
+ "kgDisplayName": "Kongo",
+ "koDisplayName": "Korean",
+ "kuDisplayName": "Kurdish",
+ "kjDisplayName": "Kwanyama, Kuanyama",
+ "laDisplayName": "Latin",
+ "lbDisplayName": "Luxembourgish, Letzeburgesch",
+ "lgDisplayName": "Luganda",
+ "liDisplayName": "Limburgish, Limburgan, Limburger",
+ "lnDisplayName": "Lingala",
+ "loDisplayName": "Lao",
+ "ltDisplayName": "Lithuanian",
+ "luDisplayName": "Luba-Katanga",
+ "lvDisplayName": "Latvian",
+ "gvDisplayName": "Manx",
+ "mkDisplayName": "Macedonian",
+ "mgDisplayName": "Malagasy",
+ "msDisplayName": "Malay",
+ "mlDisplayName": "Malayalam",
+ "mtDisplayName": "Maltese",
+ "miDisplayName": "Māori",
+ "mrDisplayName": "Marathi (Marāṭhī)",
+ "mhDisplayName": "Marshallese",
+ "mnDisplayName": "Mongolian",
+ "naDisplayName": "Nauru",
+ "nvDisplayName": "Navajo, Navaho",
+ "nbDisplayName": "Norwegian Bokmål",
+ "ndDisplayName": "North Ndebele",
+ "neDisplayName": "Nepali",
+ "ngDisplayName": "Ndonga",
+ "nnDisplayName": "Norwegian Nynorsk",
+ "noDisplayName": "Norwegian",
+ "iiDisplayName": "Nuosu",
+ "nrDisplayName": "South Ndebele",
+ "ocDisplayName": "Occitan",
+ "ojDisplayName": "Ojibwe, Ojibwa",
+ "cuDisplayName": "Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic",
+ "omDisplayName": "Oromo",
+ "orDisplayName": "Oriya",
+ "osDisplayName": "Ossetian, Ossetic",
+ "paDisplayName": "Panjabi, Punjabi",
+ "piDisplayName": "Pāli",
+ "faDisplayName": "Persian",
+ "plDisplayName": "Polish",
+ "psDisplayName": "Pashto, Pushto",
+ "ptDisplayName": "Portuguese",
+ "quDisplayName": "Quechua",
+ "rmDisplayName": "Romansh",
+ "rnDisplayName": "Kirundi",
+ "roDisplayName": "Romanian, Moldavian, Moldovan",
+ "ruDisplayName": "Russian",
+ "saDisplayName": "Sanskrit (Saṁskṛta)",
+ "scDisplayName": "Sardinian",
+ "sdDisplayName": "Sindhi",
+ "seDisplayName": "Northern Sami",
+ "smDisplayName": "Samoan",
+ "sgDisplayName": "Sango",
+ "srDisplayName": "Serbian",
+ "gdDisplayName": "Scottish Gaelic, Gaelic",
+ "snDisplayName": "Shona",
+ "siDisplayName": "Sinhala, Sinhalese",
+ "skDisplayName": "Slovak",
+ "slDisplayName": "Slovene",
+ "soDisplayName": "Somali",
+ "stDisplayName": "Southern Sotho",
+ "esDisplayName": "Spanish",
+ "suDisplayName": "Sundanese",
+ "swDisplayName": "Swahili",
+ "ssDisplayName": "Swati",
+ "svDisplayName": "Swedish",
+ "taDisplayName": "Tamil",
+ "teDisplayName": "Telugu",
+ "tgDisplayName": "Tajik",
+ "thDisplayName": "Thai",
+ "tiDisplayName": "Tigrinya",
+ "boDisplayName": "Tibetan Standard, Tibetan, Central",
+ "tkDisplayName": "Turkmen",
+ "tlDisplayName": "Tagalog",
+ "tnDisplayName": "Tswana",
+ "toDisplayName": "Tonga (Tonga Islands)",
+ "trDisplayName": "Turkish",
+ "tsDisplayName": "Tsonga",
+ "ttDisplayName": "Tatar",
+ "twDisplayName": "Twi",
+ "tyDisplayName": "Tahitian",
+ "ugDisplayName": "Uighur, Uyghur",
+ "ukDisplayName": "Ukrainian",
+ "urDisplayName": "Urdu",
+ "uzDisplayName": "Uzbek",
+ "veDisplayName": "Venda",
+ "viDisplayName": "Vietnamese",
+ "voDisplayName": "Volapük",
+ "waDisplayName": "Walloon",
+ "cyDisplayName": "Welsh",
+ "woDisplayName": "Wolof",
+ "fyDisplayName": "Western Frisian",
+ "xhDisplayName": "Xhosa",
+ "yiDisplayName": "Yiddish",
+ "yoDisplayName": "Yoruba",
+ "zaDisplayName": "Zhuang, Chuang",
+ "unkDisplayName": "Unknown",
+ "zuDisplayName": "Zulu",
+ "hawDisplayName": "Hawaiian",
+ "hmnDisplayName": "Hmong",
+ "multiDisplayName": "Multi",
+ "cebDisplayName": "Cebuano",
+ "dzDisplayName": "Dzongkha",
+ "iwDisplayName": "Hebrew",
+ "jwDisplayName": "Javanese",
+ "moDisplayName": "Moldavian",
+ "shDisplayName": "Serbo-Croatian",
+ "wwCountryDisplayName": "World Wide",
+ "afCountryDisplayName": "Afghanistan",
+ "axCountryDisplayName": "Aland Islands",
+ "alCountryDisplayName": "Albania",
+ "dzCountryDisplayName": "Algeria",
+ "asCountryDisplayName": "American Samoa",
+ "adCountryDisplayName": "Andorra",
+ "aoCountryDisplayName": "Angola",
+ "aiCountryDisplayName": "Anguilla",
+ "agCountryDisplayName": "Antigua and Barbuda",
+ "arCountryDisplayName": "Argentina",
+ "amCountryDisplayName": "Armenia",
+ "awCountryDisplayName": "Aruba",
+ "acCountryDisplayName": "Ascension Island",
+ "auCountryDisplayName": "Australia",
+ "atCountryDisplayName": "Austria",
+ "azCountryDisplayName": "Azerbaijan",
+ "bsCountryDisplayName": "Bahamas",
+ "bhCountryDisplayName": "Bahrain",
+ "bdCountryDisplayName": "Bangladesh",
+ "bbCountryDisplayName": "Barbados",
+ "byCountryDisplayName": "Belarus",
+ "beCountryDisplayName": "Belgium",
+ "bzCountryDisplayName": "Belize",
+ "bjCountryDisplayName": "Benin",
+ "bmCountryDisplayName": "Bermuda",
+ "btCountryDisplayName": "Bhutan",
+ "boCountryDisplayName": "Bolivia",
+ "baCountryDisplayName": "Bosnia and Herzegovina",
+ "bwCountryDisplayName": "Botswana",
+ "brCountryDisplayName": "Brazil",
+ "ioCountryDisplayName": "British Indian Ocean Territory",
+ "vgCountryDisplayName": "British Virgin Islands",
+ "bnCountryDisplayName": "Brunei",
+ "bgCountryDisplayName": "Bulgaria",
+ "bfCountryDisplayName": "Burkina Faso",
+ "biCountryDisplayName": "Burundi",
+ "khCountryDisplayName": "Cambodia",
+ "cmCountryDisplayName": "Cameroon",
+ "caCountryDisplayName": "Canada",
+ "cvCountryDisplayName": "Cape Verde",
+ "bqCountryDisplayName": "Caribbean Netherlands",
+ "kyCountryDisplayName": "Cayman Islands",
+ "cfCountryDisplayName": "Central African Republic",
+ "tdCountryDisplayName": "Chad",
+ "clCountryDisplayName": "Chile",
+ "cnCountryDisplayName": "China",
+ "cxCountryDisplayName": "Christmas Island",
+ "ccCountryDisplayName": "Cocos [Keeling] Islands",
+ "coCountryDisplayName": "Colombia",
+ "kmCountryDisplayName": "Comoros",
+ "cdCountryDisplayName": "Democratic Republic Congo",
+ "cgCountryDisplayName": "Republic of Congo",
+ "ckCountryDisplayName": "Cook Islands",
+ "crCountryDisplayName": "Costa Rica",
+ "ciCountryDisplayName": "Côte d'Ivoire",
+ "hrCountryDisplayName": "Croatia",
+ "cuCountryDisplayName": "Cuba",
+ "cwCountryDisplayName": "Curaçao",
+ "cyCountryDisplayName": "Cyprus",
+ "czCountryDisplayName": "Czech Republic",
+ "dkCountryDisplayName": "Denmark",
+ "djCountryDisplayName": "Djibouti",
+ "dmCountryDisplayName": "Dominica",
+ "doCountryDisplayName": "Dominican Republic",
+ "tlCountryDisplayName": "East Timor",
+ "ecCountryDisplayName": "Ecuador",
+ "egCountryDisplayName": "Egypt",
+ "svCountryDisplayName": "El Salvador",
+ "gqCountryDisplayName": "Equatorial Guinea",
+ "erCountryDisplayName": "Eritrea",
+ "eeCountryDisplayName": "Estonia",
+ "szCountryDisplayName": "Eswatini",
+ "etCountryDisplayName": "Ethiopia",
+ "fkCountryDisplayName": "Falkland Islands",
+ "foCountryDisplayName": "Faroe Islands",
+ "fjCountryDisplayName": "Fiji",
+ "fiCountryDisplayName": "Finland",
+ "frCountryDisplayName": "France",
+ "gfCountryDisplayName": "French Guiana",
+ "pfCountryDisplayName": "French Polynesia",
+ "gaCountryDisplayName": "Gabon",
+ "gmCountryDisplayName": "Gambia",
+ "geCountryDisplayName": "Georgia",
+ "deCountryDisplayName": "Germany",
+ "ghCountryDisplayName": "Ghana",
+ "giCountryDisplayName": "Gibraltar",
+ "grCountryDisplayName": "Greece",
+ "glCountryDisplayName": "Greenland",
+ "gdCountryDisplayName": "Grenada",
+ "gpCountryDisplayName": "Guadeloupe",
+ "guCountryDisplayName": "Guam",
+ "gtCountryDisplayName": "Guatemala",
+ "ggCountryDisplayName": "Guernsey",
+ "gnCountryDisplayName": "Guinea Conakry",
+ "gwCountryDisplayName": "Guinea-Bissau",
+ "gyCountryDisplayName": "Guyana",
+ "htCountryDisplayName": "Haiti",
+ "hmCountryDisplayName": "Heard Island and McDonald Islands",
+ "hnCountryDisplayName": "Honduras",
+ "hkCountryDisplayName": "Hong Kong",
+ "huCountryDisplayName": "Hungary",
+ "isCountryDisplayName": "Iceland",
+ "inCountryDisplayName": "India",
+ "idCountryDisplayName": "Indonesia",
+ "irCountryDisplayName": "Iran",
+ "iqCountryDisplayName": "Iraq",
+ "ieCountryDisplayName": "Ireland",
+ "imCountryDisplayName": "Isle of Man",
+ "ilCountryDisplayName": "Israel",
+ "itCountryDisplayName": "Italy",
+ "jmCountryDisplayName": "Jamaica",
+ "jpCountryDisplayName": "Japan",
+ "jeCountryDisplayName": "Jersey",
+ "joCountryDisplayName": "Jordan",
+ "kzCountryDisplayName": "Kazakhstan",
+ "keCountryDisplayName": "Kenya",
+ "kiCountryDisplayName": "Kiribati",
+ "xkCountryDisplayName": "Kosovo",
+ "kwCountryDisplayName": "Kuwait",
+ "kgCountryDisplayName": "Kyrgyzstan",
+ "laCountryDisplayName": "Laos",
+ "lvCountryDisplayName": "Latvia",
+ "lbCountryDisplayName": "Lebanon",
+ "lsCountryDisplayName": "Lesotho",
+ "lrCountryDisplayName": "Liberia",
+ "lyCountryDisplayName": "Libya",
+ "liCountryDisplayName": "Liechtenstein",
+ "ltCountryDisplayName": "Lithuania",
+ "luCountryDisplayName": "Luxembourg",
+ "moCountryDisplayName": "Macau",
+ "mkCountryDisplayName": "Macedonia",
+ "mgCountryDisplayName": "Madagascar",
+ "mwCountryDisplayName": "Malawi",
+ "myCountryDisplayName": "Malaysia",
+ "mvCountryDisplayName": "Maldives",
+ "mlCountryDisplayName": "Mali",
+ "mtCountryDisplayName": "Malta",
+ "mhCountryDisplayName": "Marshall Islands",
+ "mqCountryDisplayName": "Martinique",
+ "mrCountryDisplayName": "Mauritania",
+ "muCountryDisplayName": "Mauritius",
+ "ytCountryDisplayName": "Mayotte",
+ "mxCountryDisplayName": "Mexico",
+ "fmCountryDisplayName": "Micronesia",
+ "mdCountryDisplayName": "Moldova",
+ "mcCountryDisplayName": "Monaco",
+ "mnCountryDisplayName": "Mongolia",
+ "meCountryDisplayName": "Montenegro",
+ "msCountryDisplayName": "Montserrat",
+ "maCountryDisplayName": "Morocco",
+ "mzCountryDisplayName": "Mozambique",
+ "mmCountryDisplayName": "Myanmar (Burma)",
+ "naCountryDisplayName": "Namibia",
+ "nrCountryDisplayName": "Nauru",
+ "npCountryDisplayName": "Nepal",
+ "nlCountryDisplayName": "Netherlands",
+ "ncCountryDisplayName": "New Caledonia",
+ "nzCountryDisplayName": "New Zealand",
+ "niCountryDisplayName": "Nicaragua",
+ "neCountryDisplayName": "Niger",
+ "ngCountryDisplayName": "Nigeria",
+ "nuCountryDisplayName": "Niue",
+ "nfCountryDisplayName": "Norfolk Island",
+ "kpCountryDisplayName": "North Korea",
+ "mpCountryDisplayName": "Northern Mariana Islands",
+ "noCountryDisplayName": "Norway",
+ "omCountryDisplayName": "Oman",
+ "pkCountryDisplayName": "Pakistan",
+ "pwCountryDisplayName": "Palau",
+ "psCountryDisplayName": "Palestinian Territories",
+ "paCountryDisplayName": "Panama",
+ "pgCountryDisplayName": "Papua New Guinea",
+ "pyCountryDisplayName": "Paraguay",
+ "peCountryDisplayName": "Peru",
+ "phCountryDisplayName": "Philippines",
+ "plCountryDisplayName": "Poland",
+ "ptCountryDisplayName": "Portugal",
+ "prCountryDisplayName": "Puerto Rico",
+ "qaCountryDisplayName": "Qatar",
+ "reCountryDisplayName": "Réunion",
+ "roCountryDisplayName": "Romania",
+ "ruCountryDisplayName": "Russia",
+ "rwCountryDisplayName": "Rwanda",
+ "blCountryDisplayName": "Saint Barthélemy",
+ "shCountryDisplayName": "Saint Helena",
+ "knCountryDisplayName": "St. Kitts",
+ "lcCountryDisplayName": "St. Lucia",
+ "mfCountryDisplayName": "Saint Martin",
+ "pmCountryDisplayName": "Saint Pierre and Miquelon",
+ "vcCountryDisplayName": "St. Vincent",
+ "wsCountryDisplayName": "Samoa",
+ "smCountryDisplayName": "San Marino",
+ "stCountryDisplayName": "São Tomé and Príncipe",
+ "saCountryDisplayName": "Saudi Arabia",
+ "snCountryDisplayName": "Senegal",
+ "rsCountryDisplayName": "Serbia",
+ "scCountryDisplayName": "Seychelles",
+ "slCountryDisplayName": "Sierra Leone",
+ "sgCountryDisplayName": "Singapore",
+ "sxCountryDisplayName": "Sint Maarten",
+ "skCountryDisplayName": "Slovakia",
+ "siCountryDisplayName": "Slovenia",
+ "sbCountryDisplayName": "Solomon Islands",
+ "soCountryDisplayName": "Somalia",
+ "zaCountryDisplayName": "South Africa",
+ "gsCountryDisplayName": "South Georgia and the South Sandwich Islands",
+ "krCountryDisplayName": "South Korea",
+ "ssCountryDisplayName": "South Sudan",
+ "esCountryDisplayName": "Spain",
+ "lkCountryDisplayName": "Sri Lanka",
+ "sdCountryDisplayName": "Sudan",
+ "srCountryDisplayName": "Suriname",
+ "sjCountryDisplayName": "Svalbard and Jan Mayen",
+ "seCountryDisplayName": "Sweden",
+ "chCountryDisplayName": "Switzerland",
+ "syCountryDisplayName": "Syria",
+ "twCountryDisplayName": "Taiwan",
+ "tjCountryDisplayName": "Tajikistan",
+ "tzCountryDisplayName": "Tanzania",
+ "thCountryDisplayName": "Thailand",
+ "tgCountryDisplayName": "Togo",
+ "tkCountryDisplayName": "Tokelau",
+ "toCountryDisplayName": "Tonga",
+ "ttCountryDisplayName": "Trinidad/Tobago",
+ "tnCountryDisplayName": "Tunisia",
+ "trCountryDisplayName": "Turkey",
+ "tmCountryDisplayName": "Turkmenistan",
+ "tcCountryDisplayName": "Turks and Caicos Islands",
+ "tvCountryDisplayName": "Tuvalu",
+ "viCountryDisplayName": "U.S. Virgin Islands",
+ "ugCountryDisplayName": "Uganda",
+ "uaCountryDisplayName": "Ukraine",
+ "aeCountryDisplayName": "United Arab Emirates",
+ "gbCountryDisplayName": "United Kingdom",
+ "usCountryDisplayName": "United States",
+ "uyCountryDisplayName": "Uruguay",
+ "uzCountryDisplayName": "Uzbekistan",
+ "vuCountryDisplayName": "Vanuatu",
+ "vaCountryDisplayName": "Vatican City",
+ "veCountryDisplayName": "Venezuela",
+ "vnCountryDisplayName": "Vietnam",
+ "wfCountryDisplayName": "Wallis and Futuna",
+ "ehCountryDisplayName": "Western Sahara",
+ "yeCountryDisplayName": "Yemen",
+ "zmCountryDisplayName": "Zambia",
+ "zwCountryDisplayName": "Zimbabwe",
+ "pay": "Pay",
+ "allPrivateChats": "All private chats in space (including with Pangea Bot)",
+ "unknownPrivateChat": "Unknown private chat",
+ "copyClassCodeDesc": "Students who are already in the app can 'Join class or exchange' via the main menu.",
+ "addToClass": "Add exchange to class",
+ "addToClassDesc": "Adding an exchange to a class will make the exchange appear within the class for students and give them access to all chats within the exchange.",
+ "addToClassOrExchange": "Add chat to class or exchange",
+ "addToClassOrExchangeDesc":
+ "Adding a chat to a class or exchange will make the chat appear within the class or exchange for students and give them access.",
+ "invitedToClassOrExchange": "{user} has invited you to join a space: {classOrExchange}! Do you wish to accept?",
+ "@invitedToClassOrExchange": {
+ "placeholders": {
+ "classOrExchange": {},
+ "user": {}
+ }
+ },
+ "decline": "Decline",
+ "declinedInvitation": "Declined invitation",
+ "acceptedInvitation": "Accepted invitation",
+ "youreInvited": "📩 You're invited!",
+ "studentPermissionsDesc": "Set permissions for this space. They will only apply to the class/exchange space. They will override individual user settings.",
+ "noEligibleSpaces": "There are no eligible spaces to add this to.",
+ "youAddedToSpace": "You added {child} to {space}",
+ "@youAddedToSpace": {
+ "placeholders": {
+ "child": {},
+ "space": {}
+ }
+ },
+ "youRemovedFromSpace": "You removed {child} from {space}",
+ "@youRemovedFromSpace": {
+ "placeholders": {
+ "child": {},
+ "space": {}
+ }
+ },
+ "invitedToChat": "{user} has invited you to join a chat: {name}! Do you wish to accept?",
+ "@invitedToChat": {
+ "placeholders": {
+ "name": {},
+ "user": {}
+ }
+ },
+ "monthlySubscription": "Monthly",
+ "yearlySubscription": "Yearly",
+ "defaultSubscription": "Pangea Chat Subscription",
+ "freeTrial": "Free Trial",
+ "grammarAnalytics": "Error Analytics",
+ "total": "Total: ",
+ "noDataFound": "No data found",
+ "promoSubscriptionExpirationDesc": "Your current subscription is promotional and expires on {expiration}. Message support@pangea.chat for help changing your subscription.",
+ "@promoSubscriptionExpirationDesc": {
+ "placeholders": {
+ "expiration": {}
+ }
+ },
+ "emptyChatNameWarning": "Please enter a name for this chat",
+ "emptyClassNameWarning": "Please enter a name for this class",
+ "emptyExchangeNameWarning": "Please enter a name for this exchange",
+ "blurMeansTranslateTitle": "Why is the message blurred?",
+ "blurMeansTranslateBody": "While Immersion Mode is on, messages that are sent in your base language will be blurred while Pangea Bot translates them to your target language. Immersion Mode can be toggled in individual and class settings.",
+ "someErrorTitle": "Hm, something's not right",
+ "someErrorBody": "It could be an error or something in your base language.",
+ "bestCorrectionFeedback": "That's correct!",
+ "distractorFeedback": "That's not quite right.",
+ "bestAnswerFeedback": "That's correct!",
+ "definitionDefaultPrompt": "What does this word mean?",
+ "practiceDefaultPrompt": "What is the best answer?",
+ "correctionDefaultPrompt": "What is the best correction?",
+ "itStartDefaultPrompt": "Do you want help translating?",
+ "languageLevelWarning": "Please select a class language level",
+ "lockedChatWarning": "🔒 This chat has been locked",
+ "lockSpace": "Lock Space",
+ "lockChat": "Lock Chat",
+ "archiveSpace": "Archive Space",
+ "suggestTo": "Suggest to {spaceName}",
+ "@suggestTo": {
+ "placeholders": {
+ "spaceName": {}
+ }
+ },
+ "suggestChatDesc": "Suggested chats will appear in the chat list for {spaceName}",
+ "@suggestToDesc": {
+ "placeholders": {
+ "spaceName": {}
+ }
+ },
+ "suggestExchangeDesc": "Suggested exchanges will appear in the chat list for {spaceName}",
+ "@suggestToExchangeDesc": {
+ "placeholders": {
+ "spaceName": {}
+ }
+ },
+ "acceptSelection": "Accept Correction",
+ "acceptSelectionAnyway": "Use this anyway",
+ "replace": "Make correction",
+ "makingActivity": "Making activity",
+ "why": "Why?",
+ "definition": "Definition",
+ "exampleSentence": "Example Sentence",
+ "addToClassTitle": "Add Exchange to Class",
+ "reportToTeacher": "Who do you want to report this message to?",
+ "reportMessageTitle": "{reportingUserId} has reported a message from {reportedUserId} in the chat {roomName}",
+ "@reportMessageTitle": {
+ "placeholders": {
+ "reportingUserId": {},
+ "reportedUserId": {},
+ "roomName": {}
+ }
+ },
+ "reportMessageBody": "Message: {reportedMessage}\nReason: {reason}",
+ "@reportMessageBody": {
+ "placeholders": {
+ "reportedMessage": {},
+ "reason": {}
+ }
+ },
+ "noTeachersFound": "No teachers found to report to",
+ "pushNotificationsNotAvailable": "Push notifications not available",
+ "learnMore": "Learn more",
+ "banUserDescription": "The user will be banned from the chat and will not be able to enter the chat again until they are unbanned.",
+ "unbanUserDescription": "The user will be able to enter the chat again if they try.",
+ "kickUserDescription": "The user is kicked out of the chat but not banned. In public chats, the user can rejoin at any time.",
+ "makeAdminDescription": "Once you make this user admin, you may not be able to undo this as they will then have the same permissions as you.",
+ "pleaseEnterANumber": "Please enter a number greater than 0",
+ "archiveRoomDescription": "The chat will be moved to the archive. Other users will be able to see that you have left the chat.",
+ "roomUpgradeDescription": "The chat will then be recreated with the new room version. All participants will be notified that they need to switch to the new chat. You can find out more about room versions at https://spec.matrix.org/latest/rooms/",
+ "removeDevicesDescription": "You will be logged out of this device and will no longer be able to receive messages.",
+ "banUserDescription": "The user will be banned from the chat and will not be able to enter the chat again until they are unbanned.",
+ "unbanUserDescription": "The user will be able to enter the chat again if they try.",
+ "kickUserDescription": "The user is kicked out of the chat but not banned. In public chats, the user can rejoin at any time.",
+ "makeAdminDescription": "Once you make this user admin, you may not be able to undo this as they will then have the same permissions as you.",
+ "pushNotificationsNotAvailable": "Push notifications not available",
+ "learnMore": "Learn more",
+ "todoLists": "(Beta) Todolists",
+ "newTodo": "New todo",
+ "noTodosYet": "No todos have been added to this chat yet. Create your first todo and start cooperating with others. 📝",
+ "editTodo": "Edit todo",
+ "pleaseAddATitle": "Please add a title",
+ "todoListChangedError": "Oops... The todo list has been changed while you edited it.",
+ "todosUnencrypted": "Please notice that todos are visible by everyone in the chat and are not end to end encrypted.",
+ "noAddToSpacePermissions": "You can't add a chat to this space",
+ "alreadyInSpace": "The chat is already in this space",
+ "yourGlobalUserIdIs": "Your global user-ID is: ",
+ "noUsersFoundWithQuery": "Unfortunately no user could be found with \"{query}\". Please check whether you made a typo.",
+ "@noUsersFoundWithQuery": {
"type": "text",
"placeholders": {
- "seconds": {}
+ "query": {}
}
- }
+ },
+ "searchChatsRooms": "Search for #chats, @users...",
+ "groupName": "Group name",
+ "createGroupAndInviteUsers": "Create a group and invite users",
+ "groupCanBeFoundViaSearch": "Group can be found via search",
+ "inNoSpaces": "You are not a member of any classes or exchanges"
}
diff --git a/assets/l10n/intl_eo.arb b/assets/l10n/intl_eo.arb
index 523374e4b..946c58f96 100644
--- a/assets/l10n/intl_eo.arb
+++ b/assets/l10n/intl_eo.arb
@@ -1,2036 +1,2658 @@
{
- "@@last_modified": "2021-08-14 12:41:10.107750",
- "about": "Prio",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Akcepti",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} akceptis la inviton",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "Konto",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "{username} aktivigis tutvojan ĉifradon",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addEmail": "Aldoni retpoŝtadreson",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "addGroupDescription": "Aldoni priskribon de grupo",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Administranto",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "kromnomo",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Ĉio",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "allChats": "Ĉiuj babiloj",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} respondis la vokon",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "Ĉiu ajn povas aliĝi",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "Ŝlosado",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Arĥivo",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "Ĉu gastoj rajtas aliĝi",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Ĉu vi certas?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSureYouWantToLogout": "Ĉu vi certe volas adiaŭi?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "Por ke vi povu kontroli (subskribi) la alian personon, bonvolu enigi pasfrazon de via sekreta deponejo aŭ vian rehavan ŝlosilon.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Ĉu akcepti ĉi tiun kontrolpeton de {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "badServerLoginTypesException": "La hejmservilo subtenas la jenajn specojn de salutoj:\n{serverVersions}\nSed ĉi tiu aplikaĵo subtenas nur:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "badServerVersionsException": "La hejmservilo subtenas la jenajn version de la specifaĵo:\n{serverVersions}\nSed ĉi tiu aplikaĵo subtenas nur {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "banFromChat": "Forbari de babilo",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Forbarita",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} forbaris uzanton {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "Bloki aparaton",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "Blokita",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Mesaĝoj de robotoj",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Nuligi",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "Ne povis malfermi URI {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "changeDeviceName": "Ŝanĝi nomon de aparato",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "{username} ŝanĝis bildon de la babilo",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} ŝanĝis priskribon de la babilo al: «{description}»",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatNameTo": "{username} ŝanĝis nomon de la babilo al: «{chatname}»",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatPermissions": "{username} ŝanĝis permesojn pri la babilo",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} ŝanĝis sian prezentan nomon al: {username}",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRules": "{username} ŝanĝis regulojn pri aliro de gastoj",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} ŝanĝis regulojn pri aliro de gastoj al: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibility": "{username} ŝanĝis videblecon de la historio",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} ŝanĝis videblecon de la historio al: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} ŝanĝis regulojn pri aliĝado",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username} ŝanĝis regulojn pri aliĝado al: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} ŝanĝis sian profilbildon",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} ŝanĝis la kromnomojn de la ĉambro",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} ŝanĝis la invitan ligilon",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "Ŝanĝi pasvorton",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Ŝanĝi hejmservilon",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Ŝanĝu la haŭton",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Ŝanĝi nomon de la grupo",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Ŝanĝi fonbildon",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "Ŝanĝi vian profilbildon",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "La ĉifrado estas difektita",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Babilo",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackup": "Savkopiado de babilo",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "Via savkopio de babilo estas sekurigita per sekureca ŝlosilo. Bonvolu certigi, ke vi ne perdos ĝin.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Detaloj pri babilo",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chats": "Babiloj",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Elektu fortan pasvorton",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Elektu uzantonomon",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "clearArchive": "Vakigi arĥivon",
- "@clearArchive": {},
- "close": "Fermi",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_ban": "Forbari la donitan uzanton de ĉi tiu ĉambro",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_html": "Sendi tekston formatan je HTML",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_invite": "Inviti la donitan uzanton al ĉi tiu ĉambro",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "commandHint_join": "Aliĝi al la donita ĉambro",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_kick": "Forigi la donitan uzanton de ĉi tiu ĉambro",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_leave": "Foriri de ĉi tiu ĉambro",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_me": "Priskribu vian agon",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "commandHint_myroomavatar": "Agordi vian profilbildon por ĉi tiu ĉambro (laŭ mxc-uri)",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_myroomnick": "Agordi vian prezentan nomon en ĉi tiu ĉambro",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "commandHint_op": "Agordi povnivelon de la donita uzanto (implicite: 50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_plain": "Sendi senformatan tekston",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_react": "Sendi respondon kiel reagon",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "commandHint_unban": "Malforbari la donitan uzanton de ĉi tiu ĉambro",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "commandInvalid": "Nevalida ordono",
- "@commandInvalid": {
- "type": "text"
- },
- "commandMissing": "{command} ne estas ordono.",
- "@commandMissing": {
- "type": "text",
- "placeholders": {
- "command": {}
- },
- "description": "State that {command} is not a valid /command."
- },
- "compareEmojiMatch": "Komparu kaj certigu, ke la jenaj bildosignoj samas en ambaŭ aparatoj:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Komparu kaj certigu, ke la jenaj numeroj samas en ambaŭ aparatoj:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "Agordi babilon",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Konfirmi",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Konektiĝi",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "Kontakto invitiĝis al la grupo",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Enhavas prezentan nomon",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Enhavas uzantonomon",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "La enhavo raportiĝis al la administrantoj de la servilo",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "Kopiite al tondujo",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Kopii",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Kopii al tondujo",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "Ne povis malĉifri mesaĝon: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "{count} partoprenantoj",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "Krei",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "{username} kreis la babilon",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "createNewGroup": "Krei novan grupon",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "createNewSpace": "Nova aro",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Nun aktiva",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Malhela",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{day}a de la {month}a",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateWithYear": "{day}a de la {month}a de {year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "deactivateAccountWarning": "Ĉi tio malaktivigos vian konton de uzanto. Ne eblas tion malfari! Ĉu certe vi certas?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "Norma nivelo de permesoj",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Forigi",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Forigi konton",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Forigi mesaĝon",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Malakcepti",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Aparato",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "Identigilo de aparato",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Aparatoj",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Rektaj babiloj",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "Prezenta nomo ŝanĝiĝis",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Elŝuti dosieron",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Redakti",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "Redakti blokitajn servilojn",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "Redakti permesojn de babilo",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Redakti prezentan nomon",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAliases": "Ŝanĝi kromnomojn de ĉambro",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "Redakti bildon de ĉambro",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "Mieneto jam ekzistas!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "Nevalida mallongigo de mieneto!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "Mienetaroj por la ĉambro",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Agordoj pri mienetoj",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "Mallongigo de mieneto",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "Vi devas elekti mallongigon de mieneto kaj bildon!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "Malplena babilo",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "Ŝalti mienetaron ĉie",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Ŝalti ĉifradon",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "Vi ne povos malŝalti la ĉifradon. Ĉu vi certas?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Ĉifrite",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "Ĉifrado",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "Ĉifrado ne estas ŝaltita",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} finis la vokon",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "enterAGroupName": "Enigu nomon de grupo",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "Enigu retpoŝtadreson",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterASpacepName": "Enigi nomon de aro",
- "@enterASpacepName": {},
- "enterYourHomeserver": "Enigu vian hejmservilon",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "errorObtainingLocation": "Eraris akirado de loko: {error}",
- "@errorObtainingLocation": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "everythingReady": "Ĉio pretas!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Tre ofenda",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Dosiernomo",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "Grandeco de tiparo",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "Plusendi",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "Ekde aliĝo",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "Ekde la invito",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "goToTheNewRoom": "Iri al la nova ĉambro",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "group": "Grupo",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Priskribo de grupo",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "Priskribo de grupo ŝanĝiĝis",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "Grupo estas publika",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "Grupoj",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "Grupo kun {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "guestsAreForbidden": "Gastoj estas malpermesitaj",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "Gastoj povas aliĝi",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "{username} nuligis la inviton por {targetName}",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "help": "Helpo",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "Kaŝi obskurigitajn eventojn",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Kaŝi nekonatajn eventojn",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "Kiel ofenda estas ĉi tiu enhavo?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "id": "Identigilo",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Identeco",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Malatenti",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Malatentitaj uzantoj",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "Vi povas malatenti uzantojn, kiuj vin ĝenas. Vi ne povos ricevi mesaĝojn nek invitojn al ĉambroj de la uzantoj sur via listo de malatentatoj.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Malatenti uzantonomon",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "Mi klakis la ligilon",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "Neĝusta pasfrazo aŭ rehava ŝlosilo",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "Neofenda",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Inviti kontakton",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "Inviti kontakton al {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "invited": "Invitita",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "{username} invitis uzanton {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invitedUsersOnly": "Nur invititoj",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "Invito por mi",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username} invitis vin al FluffyChat. \n1. Instalu la aplikaĵon FluffyChat: https://fluffychat.im \n2. Registriĝu aŭ salutu \n3. Malfermu la invitan ligilon: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "isTyping": "tajpas…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "{username} aliĝis al la babilo",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "joinRoom": "Aliĝi al ĉambro",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "{username} forpelis uzanton {targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "{username} forpelis kaj forbaris uzanton {targetName}",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickFromChat": "Forpeli de babilo",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "Lastafoje aktiva: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "lastSeenLongTimeAgo": "Vidita antaŭ longe",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Foriri",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "Foriris de la ĉambro",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Permesilo",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "Hela",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "Enlegi {count} pliajn partoprenantojn",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "loadingPleaseWait": "Enlegante… bonvolu atendi.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Enlegi pli…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Saluti",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "logInTo": "Saluti servilon {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "loginWith": "Saluti per {brand}",
- "@loginWith": {
- "type": "text",
- "placeholders": {
- "brand": {}
- }
- },
- "logout": "Adiaŭi",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "Certigu, ke la identigilo estas valida",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Ŝanĝoj de anoj",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "Mencii",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Mesaĝoj",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "Mesaĝo foriĝos por ĉiuj partoprenantoj",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Reguligisto",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Silentigi babilon",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "Bonvolu scii, ke vi ankoraŭ bezonas la programon Pantalaimon por uzi tutvojan ĉifradon.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Nova babilo",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "Nova mesaĝo en FluffyChat",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Nova kontrolpeto!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Sekva",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "Ne",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "Neniu konekto al la servilo",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "Neniuj mienetoj troviĝis. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "Vi nur povas aktivigi ĉifradon kiam la ĉambro ne plu estas publike alirebla.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "Ŝajnas, ke via telefono ne havas servojn de Google. Tio estas bona decido por via privateco! Por ricevadi pasivajn sciigojn en FluffyChat, ni rekomendas, ke vi uzu la https://microg.org/ aŭ https://unifiedpush.org/.",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "none": "Neniu",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "Vi ankoraŭ ne aldonis manieron rehavi vian pasvorton.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Neniu permeso",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "Neniuj ĉambroj troviĝis…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Sciigoj",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "Sciigoj ŝaltiĝis por ĉi tiu konto",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "{count} uzantoj tajpas…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "obtainingLocation": "Akirante lokon…",
- "@obtainingLocation": {
- "type": "text",
- "placeholders": {}
- },
- "offensive": "Ofenda",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "Eksterrete",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "bone",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "online": "Enrete",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "Enreta savkopiado de ŝlosiloj estas ŝaltita",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "oopsPushError": "Oj! Bedaŭrinde eraris la agordado de pasivaj sciigoj.",
- "@oopsPushError": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "Oj! Io misokazis…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "Malfermu la aplikaĵon por legi mesaĝojn",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Malfermi fotilon",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "(Malnepra) Nomo de grupo",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "or": "Aŭ",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "participant": "Partoprenanto",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "pasfrazo aŭ rehava ŝlosilo",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Pasvorto",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Forgesita pasvorto",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "Pasvorto ŝanĝiĝis",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "Rehavo de pasvorto",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "people": "Personoj",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "Elekti bildon",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Fiksi",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "play": "Ludi {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseChoose": "Bonvolu elekti",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAPasscode": "Bonvolu elekti paskodon",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "Bonvolu elekti uzantonomon",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "Bonvolu klaki la ligilon en la retletero kaj pluiĝi.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "Bonvolu enigi 4 ciferojn, aŭ nenion por malŝalti ŝlosadon de la aplikaĵo.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Bonvolu enigi identigilon de Matrix.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "Bonvolu enigi vian pasvorton",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPin": "Bonvolu enigi vian personan identigan numeron",
- "@pleaseEnterYourPin": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "Bonvolu enigi vian uzantonomon",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "Bonvolu sekvi la instrukciojn de la retejo kaj tuŝetu al «Sekva».",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Privateco",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "Publikaj ĉambroj",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "pushRules": "Reguloj de pasivaj sciigoj",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Kialo",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "Registrante",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "redactedAnEvent": "{username} obskurigis eventon",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "redactMessage": "Obskurigi mesaĝon",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "register": "Registriĝi",
- "@register": {
- "type": "text",
- "placeholders": {}
- },
- "reject": "Rifuzi",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "{username} rifuzis la inviton",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "rejoin": "Ree aliĝi",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Forigi",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "removeAllOtherDevices": "Forigi ĉiujn aliajn aparatojn",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "Forigita de {username}",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeDevice": "Forigi aparaton",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "Malforbari",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "removeYourAvatar": "Forigi vian profilbildon",
- "@removeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "Bildigi riĉforman enhavon de mesaĝoj",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "replaceRoomWithNewerVersion": "Anstataŭigi ĉambron per nova versio",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Respondi",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "Raporti mesaĝon",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Peti permeson",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "Ĉambro gradaltiĝis",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "Versio de ĉambro",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "saveFile": "Konservi dosieron",
- "@saveFile": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Serĉi",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "security": "Sekureco",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "Vidita de {username}",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "seenByUserAndCountOthers": "{count, plural, other{Vidita de {username} kaj {count} aliaj}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "seenByUserAndUser": "Vidita de {username} kaj {username2}",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "send": "Sendi",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "sendAMessage": "Sendi mesaĝon",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "Sendi sondosieron",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "Sendi dosieron",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Sendi bildon",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "Sendi mesaĝojn",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Sendi originalon",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendSticker": "Sendi glumarkon",
- "@sendSticker": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Sendi filmon",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sentAFile": "{username} sendis dosieron",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "{username} sendis sondosieron",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "{username} sendis bildon",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "{username} sendis glumarkon",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAVideo": "{username} sendis filmon",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentCallInformations": "{senderName} sendis informojn pri voko",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "setAsCanonicalAlias": "Agordi kiel ĉefan kromnomon",
- "@setAsCanonicalAlias": {
- "type": "text",
- "placeholders": {}
- },
- "setCustomEmotes": "Agordi proprajn mienetojn",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "setGroupDescription": "Agordi priskribon de grupo",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "Agordi invitan ligilon",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "setPermissionsLevel": "Agordi nivelon de permesoj",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "Agordi staton",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "Agordoj",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "share": "Konigi",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "sharedTheLocation": "{username} konigis sian lokon",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "shareLocation": "Konigi lokon",
- "@shareLocation": {
- "type": "text",
- "placeholders": {}
- },
- "showPassword": "Montri pasvorton",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "signUp": "Registriĝi",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "singlesignon": "Ununura saluto",
- "@singlesignon": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "Preterpasi",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "Fontkodo",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "spaceIsPublic": "Aro estas publika",
- "@spaceIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "spaceName": "Nomo de aro",
- "@spaceName": {
- "type": "text",
- "placeholders": {}
- },
- "startedACall": "{senderName} komencis vokon",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "status": "Stato",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "statusExampleMessage": "Kiel vi fartas?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "Sendi",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "synchronizingPleaseWait": "Spegulante… Bonvolu atendi.",
- "@synchronizingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "Sistema",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "theyDontMatch": "Ili ne akordas",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "Ili akordas",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "toggleFavorite": "Baskuli elstarigon",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "Basklui silentigon",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "Baskuli legitecon",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "Tro multaj petoj. Bonvolu reprovi poste!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "Transporti de alia aparato",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "tryToSendAgain": "Reprovi sendi",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "Nedisponeble",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "{username} malforbaris uzanton {targetName}",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "unblockDevice": "Malbloki aparaton",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "Nekonata aparato",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEncryptionAlgorithm": "Nekonata ĉifra algoritmo",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEvent": "Nekonata evento «{type}»",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "unmuteChat": "Malsilentigi babilon",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "Malfiksi",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "unreadChats": "{unreadCount, plural, =1{1 nelegita babilo} other{{unreadCount} nelegitaj babiloj}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "userAndOthersAreTyping": "{username} kaj {count} aliaj tajpas…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "userAndUserAreTyping": "{username} kaj {username2} tajpas…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userIsTyping": "{username} tajpas…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userLeftTheChat": "{username} foriris de la babilo",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "username": "Uzantonomo",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "userSentUnknownEvent": "{username} sendis eventon de speco {type}",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "verified": "Kontrolita",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "verify": "Kontroli",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "Komenci kontrolon",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "Vi sukcese kontrolis!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "Kontrolante alian konton",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "Vidvoko",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "Videbleco de historio de la babilo",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "Videbla al ĉiuj partoprenantoj",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "Videbla al ĉiuj",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "Voĉmesaĝo",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerAcceptRequest": "Atendante konfirmon de peto de la kunulo…",
- "@waitingPartnerAcceptRequest": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerEmoji": "Atendante akcepton de la bildosignoj de la kunulo…",
- "@waitingPartnerEmoji": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "Atendante akcepton de la numeroj, de la kunulo…",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "Fonbildo",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "Averto!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "Ni sendis retleteron al vi",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "Kiu povas kion",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "Kiu rajtas aliĝi al ĉi tiu grupo",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "Kial vi volas tion ĉi raporti?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "wipeChatBackup": "Ĉu forviŝi la savkopion de via babilo por krei novan sekurecan ŝlosilon?",
- "@wipeChatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "Per tiuj ĉi adresoj vi povas rehavi vian pasvorton.",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "Skribi mesaĝon…",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "Jes",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "you": "Vi",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "Vi estas invitita al ĉi tiu babilo",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "Vi ne plu partoprenas ĉi tiun babilon",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "Vi ne povas inviti vin mem",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "Vi estas forbarita de ĉi tiu babilo",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "Via publika ŝlosilo",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
- },
- "sendAsText": "Sendi kiel tekston",
- "@sendAsText": {
- "type": "text"
- },
- "noMatrixServer": "{server1} ne estas matriksa servilo, eble provu anstataŭe servilon {server2}?",
- "@noMatrixServer": {
- "type": "text",
- "placeholders": {
- "server1": {},
- "server2": {}
- }
- },
- "commandHint_send": "Sendi tekston",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "chatHasBeenAddedToThisSpace": "Babilo aldoniĝis al ĉi tiu aro",
- "@chatHasBeenAddedToThisSpace": {},
- "autoplayImages": "Memage ludi movbildajn glumarkojn kaj mienetojn",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "addToSpace": "Aldoni al aro",
- "@addToSpace": {},
- "homeserver": "Hejmservilo",
- "@homeserver": {},
- "sendOnEnter": "Sendi per eniga klavo",
- "@sendOnEnter": {}
-}
\ No newline at end of file
+ "@@last_modified": "2021-08-14 12:41:10.107750",
+ "about": "Prio",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Akcepti",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} akceptis la inviton",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "account": "Konto",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "{username} aktivigis tutvojan ĉifradon",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addEmail": "Aldoni retpoŝtadreson",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addGroupDescription": "Aldoni priskribon de grupo",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Administranto",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "kromnomo",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Ĉio",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "Ĉiuj babiloj",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} respondis la vokon",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "Ĉiu ajn povas aliĝi",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "Ŝlosado",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Arĥivo",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "Ĉu gastoj rajtas aliĝi",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Ĉu vi certas?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSureYouWantToLogout": "Ĉu vi certe volas adiaŭi?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "Por ke vi povu kontroli (subskribi) la alian personon, bonvolu enigi pasfrazon de via sekreta deponejo aŭ vian rehavan ŝlosilon.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Ĉu akcepti ĉi tiun kontrolpeton de {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "badServerLoginTypesException": "La hejmservilo subtenas la jenajn specojn de salutoj:\n{serverVersions}\nSed ĉi tiu aplikaĵo subtenas nur:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "badServerVersionsException": "La hejmservilo subtenas la jenajn version de la specifaĵo:\n{serverVersions}\nSed ĉi tiu aplikaĵo subtenas nur {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "banFromChat": "Forbari de babilo",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Forbarita",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} forbaris uzanton {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "Bloki aparaton",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "Blokita",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Mesaĝoj de robotoj",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Nuligi",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "Ne povis malfermi URI {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "changeDeviceName": "Ŝanĝi nomon de aparato",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "{username} ŝanĝis bildon de la babilo",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} ŝanĝis priskribon de la babilo al: «{description}»",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} ŝanĝis nomon de la babilo al: «{chatname}»",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} ŝanĝis permesojn pri la babilo",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} ŝanĝis sian prezentan nomon al: {username}",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} ŝanĝis regulojn pri aliro de gastoj",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} ŝanĝis regulojn pri aliro de gastoj al: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username} ŝanĝis videblecon de la historio",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} ŝanĝis videblecon de la historio al: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} ŝanĝis regulojn pri aliĝado",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} ŝanĝis regulojn pri aliĝado al: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} ŝanĝis sian profilbildon",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} ŝanĝis la kromnomojn de la ĉambro",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} ŝanĝis la invitan ligilon",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "Ŝanĝi pasvorton",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Ŝanĝi hejmservilon",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Ŝanĝu la haŭton",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Ŝanĝi nomon de la grupo",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Ŝanĝi fonbildon",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "Ŝanĝi vian profilbildon",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "La ĉifrado estas difektita",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Babilo",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackup": "Savkopiado de babilo",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "Via savkopio de babilo estas sekurigita per sekureca ŝlosilo. Bonvolu certigi, ke vi ne perdos ĝin.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Detaloj pri babilo",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chats": "Babiloj",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Elektu fortan pasvorton",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Elektu uzantonomon",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "clearArchive": "Vakigi arĥivon",
+ "@clearArchive": {},
+ "close": "Fermi",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "Forbari la donitan uzanton de ĉi tiu ĉambro",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_html": "Sendi tekston formatan je HTML",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_invite": "Inviti la donitan uzanton al ĉi tiu ĉambro",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "commandHint_join": "Aliĝi al la donita ĉambro",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_kick": "Forigi la donitan uzanton de ĉi tiu ĉambro",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_leave": "Foriri de ĉi tiu ĉambro",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_me": "Priskribu vian agon",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "commandHint_myroomavatar": "Agordi vian profilbildon por ĉi tiu ĉambro (laŭ mxc-uri)",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_myroomnick": "Agordi vian prezentan nomon en ĉi tiu ĉambro",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "commandHint_op": "Agordi povnivelon de la donita uzanto (implicite: 50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_plain": "Sendi senformatan tekston",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_react": "Sendi respondon kiel reagon",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_unban": "Malforbari la donitan uzanton de ĉi tiu ĉambro",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "commandInvalid": "Nevalida ordono",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "commandMissing": "{command} ne estas ordono.",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "compareEmojiMatch": "Komparu kaj certigu, ke la jenaj bildosignoj samas en ambaŭ aparatoj:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Komparu kaj certigu, ke la jenaj numeroj samas en ambaŭ aparatoj:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "Agordi babilon",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Konfirmi",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Konektiĝi",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "Kontakto invitiĝis al la grupo",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Enhavas prezentan nomon",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Enhavas uzantonomon",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "La enhavo raportiĝis al la administrantoj de la servilo",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Kopiite al tondujo",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Kopii",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Kopii al tondujo",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "Ne povis malĉifri mesaĝon: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "{count} partoprenantoj",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "Krei",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "{username} kreis la babilon",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "createNewGroup": "Krei novan grupon",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "Nova aro",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Nun aktiva",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Malhela",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{day}a de la {month}a",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithYear": "{day}a de la {month}a de {year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "deactivateAccountWarning": "Ĉi tio malaktivigos vian konton de uzanto. Ne eblas tion malfari! Ĉu certe vi certas?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "Norma nivelo de permesoj",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Forigi",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Forigi konton",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Forigi mesaĝon",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Malakcepti",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Aparato",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "Identigilo de aparato",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Aparatoj",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Rektaj babiloj",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "Prezenta nomo ŝanĝiĝis",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Elŝuti dosieron",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Redakti",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "Redakti blokitajn servilojn",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "Redakti permesojn de babilo",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Redakti prezentan nomon",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "Ŝanĝi kromnomojn de ĉambro",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "Redakti bildon de ĉambro",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "Mieneto jam ekzistas!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "Nevalida mallongigo de mieneto!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "Mienetaroj por la ĉambro",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Agordoj pri mienetoj",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "Mallongigo de mieneto",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "Vi devas elekti mallongigon de mieneto kaj bildon!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "Malplena babilo",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "Ŝalti mienetaron ĉie",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Ŝalti ĉifradon",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "Vi ne povos malŝalti la ĉifradon. Ĉu vi certas?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Ĉifrite",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "Ĉifrado",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "Ĉifrado ne estas ŝaltita",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} finis la vokon",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "enterAGroupName": "Enigu nomon de grupo",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "Enigu retpoŝtadreson",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterASpacepName": "Enigi nomon de aro",
+ "@enterASpacepName": {},
+ "enterYourHomeserver": "Enigu vian hejmservilon",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorObtainingLocation": "Eraris akirado de loko: {error}",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "everythingReady": "Ĉio pretas!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Tre ofenda",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Dosiernomo",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "Grandeco de tiparo",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "Plusendi",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "Ekde aliĝo",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "Ekde la invito",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "Iri al la nova ĉambro",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "Grupo",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Priskribo de grupo",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "Priskribo de grupo ŝanĝiĝis",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "Grupo estas publika",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "Grupoj",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "Grupo kun {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "guestsAreForbidden": "Gastoj estas malpermesitaj",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "Gastoj povas aliĝi",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "{username} nuligis la inviton por {targetName}",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "help": "Helpo",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "Kaŝi obskurigitajn eventojn",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Kaŝi nekonatajn eventojn",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "Kiel ofenda estas ĉi tiu enhavo?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "Identigilo",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Identeco",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Malatenti",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Malatentitaj uzantoj",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "Vi povas malatenti uzantojn, kiuj vin ĝenas. Vi ne povos ricevi mesaĝojn nek invitojn al ĉambroj de la uzantoj sur via listo de malatentatoj.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Malatenti uzantonomon",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "Mi klakis la ligilon",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "Neĝusta pasfrazo aŭ rehava ŝlosilo",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "Neofenda",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Inviti kontakton",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "Inviti kontakton al {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "invited": "Invitita",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "{username} invitis uzanton {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invitedUsersOnly": "Nur invititoj",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "Invito por mi",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username} invitis vin al FluffyChat. \n1. Instalu la aplikaĵon FluffyChat: https://fluffychat.im \n2. Registriĝu aŭ salutu \n3. Malfermu la invitan ligilon: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "isTyping": "tajpas…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "{username} aliĝis al la babilo",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "joinRoom": "Aliĝi al ĉambro",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "{username} forpelis uzanton {targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "{username} forpelis kaj forbaris uzanton {targetName}",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "Forpeli de babilo",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "Lastafoje aktiva: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "Vidita antaŭ longe",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Foriri",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "Foriris de la ĉambro",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Permesilo",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "Hela",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "Enlegi {count} pliajn partoprenantojn",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "loadingPleaseWait": "Enlegante… bonvolu atendi.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Enlegi pli…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Saluti",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "Saluti servilon {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "loginWith": "Saluti per {brand}",
+ "@loginWith": {
+ "type": "text",
+ "placeholders": {
+ "brand": {}
+ }
+ },
+ "logout": "Adiaŭi",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "Certigu, ke la identigilo estas valida",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Ŝanĝoj de anoj",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "Mencii",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Mesaĝoj",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "Mesaĝo foriĝos por ĉiuj partoprenantoj",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Reguligisto",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Silentigi babilon",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "Bonvolu scii, ke vi ankoraŭ bezonas la programon Pantalaimon por uzi tutvojan ĉifradon.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Nova babilo",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "Nova mesaĝo en FluffyChat",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Nova kontrolpeto!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Sekva",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "Ne",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "Neniu konekto al la servilo",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "Neniuj mienetoj troviĝis. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "Vi nur povas aktivigi ĉifradon kiam la ĉambro ne plu estas publike alirebla.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "Ŝajnas, ke via telefono ne havas servojn de Google. Tio estas bona decido por via privateco! Por ricevadi pasivajn sciigojn en FluffyChat, ni rekomendas, ke vi uzu la https://microg.org/ aŭ https://unifiedpush.org/.",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "Neniu",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "Vi ankoraŭ ne aldonis manieron rehavi vian pasvorton.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Neniu permeso",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "Neniuj ĉambroj troviĝis…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Sciigoj",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "Sciigoj ŝaltiĝis por ĉi tiu konto",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "{count} uzantoj tajpas…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "obtainingLocation": "Akirante lokon…",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "Ofenda",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "Eksterrete",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "bone",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "Enrete",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "Enreta savkopiado de ŝlosiloj estas ŝaltita",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "Oj! Bedaŭrinde eraris la agordado de pasivaj sciigoj.",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "Oj! Io misokazis…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "Malfermu la aplikaĵon por legi mesaĝojn",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Malfermi fotilon",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "(Malnepra) Nomo de grupo",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "Aŭ",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "participant": "Partoprenanto",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "pasfrazo aŭ rehava ŝlosilo",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Pasvorto",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Forgesita pasvorto",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "Pasvorto ŝanĝiĝis",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "Rehavo de pasvorto",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "Personoj",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "Elekti bildon",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Fiksi",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "Ludi {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseChoose": "Bonvolu elekti",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "Bonvolu elekti paskodon",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "Bonvolu elekti uzantonomon",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "Bonvolu klaki la ligilon en la retletero kaj pluiĝi.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "Bonvolu enigi 4 ciferojn, aŭ nenion por malŝalti ŝlosadon de la aplikaĵo.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Bonvolu enigi identigilon de Matrix.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "Bonvolu enigi vian pasvorton",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "Bonvolu enigi vian personan identigan numeron",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "Bonvolu enigi vian uzantonomon",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "Bonvolu sekvi la instrukciojn de la retejo kaj tuŝetu al «Sekva».",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Privateco",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Publikaj ĉambroj",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "Reguloj de pasivaj sciigoj",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Kialo",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "Registrante",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "{username} obskurigis eventon",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactMessage": "Obskurigi mesaĝon",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "Registriĝi",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reject": "Rifuzi",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "{username} rifuzis la inviton",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "rejoin": "Ree aliĝi",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Forigi",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "Forigi ĉiujn aliajn aparatojn",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "Forigita de {username}",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeDevice": "Forigi aparaton",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "Malforbari",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "Forigi vian profilbildon",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "Bildigi riĉforman enhavon de mesaĝoj",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replaceRoomWithNewerVersion": "Anstataŭigi ĉambron per nova versio",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Respondi",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "Raporti mesaĝon",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Peti permeson",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "Ĉambro gradaltiĝis",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "Versio de ĉambro",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "Konservi dosieron",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Serĉi",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "Sekureco",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "Vidita de {username}",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{Vidita de {username} kaj {count} aliaj}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "seenByUserAndUser": "Vidita de {username} kaj {username2}",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "send": "Sendi",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAMessage": "Sendi mesaĝon",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "Sendi sondosieron",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "Sendi dosieron",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Sendi bildon",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "Sendi mesaĝojn",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Sendi originalon",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendSticker": "Sendi glumarkon",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Sendi filmon",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "{username} sendis dosieron",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "{username} sendis sondosieron",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "{username} sendis bildon",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "{username} sendis glumarkon",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "{username} sendis filmon",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentCallInformations": "{senderName} sendis informojn pri voko",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "setAsCanonicalAlias": "Agordi kiel ĉefan kromnomon",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "Agordi proprajn mienetojn",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setGroupDescription": "Agordi priskribon de grupo",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "Agordi invitan ligilon",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "Agordi nivelon de permesoj",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "Agordi staton",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "Agordoj",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "Konigi",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "{username} konigis sian lokon",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "shareLocation": "Konigi lokon",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "Montri pasvorton",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signUp": "Registriĝi",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "Ununura saluto",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "Preterpasi",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "Fontkodo",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "Aro estas publika",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceName": "Nomo de aro",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "{senderName} komencis vokon",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "status": "Stato",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "Kiel vi fartas?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "Sendi",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "Spegulante… Bonvolu atendi.",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "Sistema",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyDontMatch": "Ili ne akordas",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "Ili akordas",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "Baskuli elstarigon",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "Basklui silentigon",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "Baskuli legitecon",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "Tro multaj petoj. Bonvolu reprovi poste!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "Transporti de alia aparato",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "Reprovi sendi",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "Nedisponeble",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "{username} malforbaris uzanton {targetName}",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "unblockDevice": "Malbloki aparaton",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "Nekonata aparato",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEncryptionAlgorithm": "Nekonata ĉifra algoritmo",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "Nekonata evento «{type}»",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "unmuteChat": "Malsilentigi babilon",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "Malfiksi",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unreadChats": "{unreadCount, plural, =1{1 nelegita babilo} other{{unreadCount} nelegitaj babiloj}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "userAndOthersAreTyping": "{username} kaj {count} aliaj tajpas…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "userAndUserAreTyping": "{username} kaj {username2} tajpas…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userIsTyping": "{username} tajpas…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userLeftTheChat": "{username} foriris de la babilo",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "username": "Uzantonomo",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userSentUnknownEvent": "{username} sendis eventon de speco {type}",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "verified": "Kontrolita",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "Kontroli",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "Komenci kontrolon",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "Vi sukcese kontrolis!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "Kontrolante alian konton",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "Vidvoko",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "Videbleco de historio de la babilo",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "Videbla al ĉiuj partoprenantoj",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "Videbla al ĉiuj",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "Voĉmesaĝo",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "Atendante konfirmon de peto de la kunulo…",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "Atendante akcepton de la bildosignoj de la kunulo…",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "Atendante akcepton de la numeroj, de la kunulo…",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "Fonbildo",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "Averto!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "Ni sendis retleteron al vi",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "Kiu povas kion",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "Kiu rajtas aliĝi al ĉi tiu grupo",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "Kial vi volas tion ĉi raporti?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "Ĉu forviŝi la savkopion de via babilo por krei novan sekurecan ŝlosilon?",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "Per tiuj ĉi adresoj vi povas rehavi vian pasvorton.",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "Skribi mesaĝon…",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "Jes",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "Vi",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "Vi estas invitita al ĉi tiu babilo",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "Vi ne plu partoprenas ĉi tiun babilon",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "Vi ne povas inviti vin mem",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "Vi estas forbarita de ĉi tiu babilo",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "Via publika ŝlosilo",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "Sendi kiel tekston",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "noMatrixServer": "{server1} ne estas matriksa servilo, eble provu anstataŭe servilon {server2}?",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "commandHint_send": "Sendi tekston",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "chatHasBeenAddedToThisSpace": "Babilo aldoniĝis al ĉi tiu aro",
+ "@chatHasBeenAddedToThisSpace": {},
+ "autoplayImages": "Memage ludi movbildajn glumarkojn kaj mienetojn",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "addToSpace": "Aldoni al aro",
+ "@addToSpace": {},
+ "homeserver": "Hejmservilo",
+ "@homeserver": {},
+ "sendOnEnter": "Sendi per eniga klavo",
+ "@sendOnEnter": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "addAccount": "",
+ "@addAccount": {},
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addToBundle": "",
+ "@addToBundle": {},
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "reportUser": "",
+ "@reportUser": {},
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "yourStory": "",
+ "@yourStory": {},
+ "unverified": "",
+ "@unverified": {},
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "emojis": "",
+ "@emojis": {},
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/l10n/intl_es.arb b/assets/l10n/intl_es.arb
index d19c8410d..630db9401 100644
--- a/assets/l10n/intl_es.arb
+++ b/assets/l10n/intl_es.arb
@@ -23,6 +23,11 @@
"type": "text",
"placeholders": {}
},
+ "accountInformation": "Información de la cuenta",
+ "@accountInformation": {
+ "type": "text",
+ "placeholders": {}
+ },
"activatedEndToEndEncryption": "{username} activó el cifrado de extremo a extremo",
"@activatedEndToEndEncryption": {
"type": "text",
@@ -50,6 +55,11 @@
"type": "text",
"placeholders": {}
},
+ "alreadyHaveAnAccount": "¿Ya tiene una cuenta?",
+ "@alreadyHaveAnAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
"answeredTheCall": "{senderName} respondió a la llamada",
"@answeredTheCall": {
"type": "text",
@@ -67,33 +77,58 @@
"type": "text",
"placeholders": {}
},
+ "archivedRoom": "",
+ "@archivedRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
"areGuestsAllowedToJoin": "¿Pueden unirse los usuarios visitantes?",
"@areGuestsAllowedToJoin": {
"type": "text",
"placeholders": {}
},
- "areYouSure": "¿Estás seguro?",
+ "areYouSure": "¿Está seguro?",
"@areYouSure": {
"type": "text",
"placeholders": {}
},
- "areYouSureYouWantToLogout": "¿Confirma que quiere cerrar sesión?",
+ "areYouSureYouWantToLogout": "¿Está seguro que quiere cerrar sesión?",
"@areYouSureYouWantToLogout": {
"type": "text",
"placeholders": {}
},
+ "askSSSSCache": "Ingrese su contraseña de almacenamiento segura (SSSS) o la clave de recuperación para almacenar en caché las claves.",
+ "@askSSSSCache": {
+ "type": "text",
+ "placeholders": {}
+ },
"askSSSSSign": "Para poder confirmar a la otra persona, ingrese su contraseña de almacenamiento segura o la clave de recuperación.",
"@askSSSSSign": {
"type": "text",
"placeholders": {}
},
- "askVerificationRequest": "¿Aceptar esta solicitud de verificación de {username}?",
+ "askSSSSVerify": "",
+ "@askSSSSVerify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "¿Acepta esta solicitud de verificación de {username}?",
"@askVerificationRequest": {
"type": "text",
"placeholders": {
"username": {}
}
},
+ "authentication": "Autenticación",
+ "@authentication": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "avatarHasBeenChanged": "Imagen de perfil modificada",
+ "@avatarHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
"badServerLoginTypesException": "El servidor soporta los siguientes mecanismos para autenticación:\n{serverVersions}\npero esta aplicación sólo soporta:\n{supportedVersions}",
"@badServerLoginTypesException": {
"type": "text",
@@ -138,6 +173,11 @@
"type": "text",
"placeholders": {}
},
+ "cachedKeys": "Claves almacenadas en caché",
+ "@cachedKeys": {
+ "type": "text",
+ "placeholders": {}
+ },
"cancel": "Cancelar",
"@cancel": {
"type": "text",
@@ -238,7 +278,7 @@
"username": {}
}
},
- "changedTheRoomAliases": "{username} cambió el alias de la sala",
+ "changedTheRoomAliases": "{username} cambió el alias del chat",
"@changedTheRoomAliases": {
"type": "text",
"placeholders": {
@@ -252,11 +292,21 @@
"username": {}
}
},
+ "changelog": "Registro de cambios",
+ "@changelog": {
+ "type": "text",
+ "placeholders": {}
+ },
"changePassword": "Cambiar la contraseña",
"@changePassword": {
"type": "text",
"placeholders": {}
},
+ "changesHaveBeenSaved": "Los cambios se han guardado",
+ "@changesHaveBeenSaved": {
+ "type": "text",
+ "placeholders": {}
+ },
"changeTheHomeserver": "Cambiar el servidor",
"@changeTheHomeserver": {
"type": "text",
@@ -272,6 +322,11 @@
"type": "text",
"placeholders": {}
},
+ "changeTheServer": "Cambiar el servidor",
+ "@changeTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
"changeWallpaper": "Cambiar el fondo de pantalla",
"@changeWallpaper": {
"type": "text",
@@ -302,7 +357,7 @@
"type": "text",
"placeholders": {}
},
- "chats": "Conversaciones",
+ "chats": "Chats de Groupos",
"@chats": {
"type": "text",
"placeholders": {}
@@ -324,12 +379,12 @@
"type": "text",
"placeholders": {}
},
- "compareEmojiMatch": "Por favor compare los emojis",
+ "compareEmojiMatch": "Compare y asegúrese de que los siguientes emoji coincidan con los del otro dispositivo:",
"@compareEmojiMatch": {
"type": "text",
"placeholders": {}
},
- "compareNumbersMatch": "Por favor compare los números",
+ "compareNumbersMatch": "Compare y asegúrese de que los siguientes números coincidan con los del otro dispositivo:",
"@compareNumbersMatch": {
"type": "text",
"placeholders": {}
@@ -339,17 +394,27 @@
"type": "text",
"placeholders": {}
},
- "connect": "Conectar",
+ "connect": "Iniciar",
"@connect": {
"type": "text",
"placeholders": {}
},
- "contactHasBeenInvitedToTheGroup": "El contacto ha sido invitado al grupo",
+ "connectionAttemptFailed": "Falló el intento de conexión",
+ "@connectionAttemptFailed": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "El contacto ha sido invitado",
"@contactHasBeenInvitedToTheGroup": {
"type": "text",
"placeholders": {}
},
- "copiedToClipboard": "Copiado al portapapeles",
+ "contentViewer": "Visor de contenido",
+ "@contentViewer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Copiado al portapapeles!",
"@copiedToClipboard": {
"type": "text",
"placeholders": {}
@@ -371,6 +436,16 @@
"error": {}
}
},
+ "couldNotSetAvatar": "No se pudo establecer la imagen de perfil",
+ "@couldNotSetAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotSetDisplayname": "No se pudo establecer el nombre visible",
+ "@couldNotSetDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
"countParticipants": "{count} participantes",
"@countParticipants": {
"type": "text",
@@ -390,11 +465,26 @@
"username": {}
}
},
- "createNewGroup": "Crear grupo nuevo",
+ "createAccountNow": "Crear cuenta ahora",
+ "@createAccountNow": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewGroup": "Crear nuevo chat",
"@createNewGroup": {
"type": "text",
"placeholders": {}
},
+ "crossSigningDisabled": "La confirmación cruzada está deshabilitada",
+ "@crossSigningDisabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "crossSigningEnabled": "La confirmación cruzada está habilitada",
+ "@crossSigningEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
"currentlyActive": "Actualmente activo",
"@currentlyActive": {
"type": "text",
@@ -465,11 +555,26 @@
"type": "text",
"placeholders": {}
},
+ "deviceVerifyDescription": "El cifrado solo es seguro cuando se han verificado todos los dispositivos.",
+ "@deviceVerifyDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "discardPicture": "Descartar imagen",
+ "@discardPicture": {
+ "type": "text",
+ "placeholders": {}
+ },
"displaynameHasBeenChanged": "El nombre visible ha cambiado",
"@displaynameHasBeenChanged": {
"type": "text",
"placeholders": {}
},
+ "donate": "Donar",
+ "@donate": {
+ "type": "text",
+ "placeholders": {}
+ },
"downloadFile": "Descargar archivo",
"@downloadFile": {
"type": "text",
@@ -480,7 +585,12 @@
"type": "text",
"placeholders": {}
},
- "editRoomAliases": "Editar alias de la sala",
+ "editJitsiInstance": "Cambiar la instancia de Jitsi",
+ "@editJitsiInstance": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "Editar alias del chat",
"@editRoomAliases": {
"type": "text",
"placeholders": {}
@@ -495,7 +605,7 @@
"type": "text",
"placeholders": {}
},
- "emotePacks": "Paquetes de emoticonos para la habitación",
+ "emotePacks": "Paquetes de emoticonos para el chat",
"@emotePacks": {
"type": "text",
"placeholders": {}
@@ -535,11 +645,21 @@
"type": "text",
"placeholders": {}
},
+ "encryptionAlgorithm": "Algoritmo de cifrado",
+ "@encryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
"encryptionNotEnabled": "El cifrado no está habilitado",
"@encryptionNotEnabled": {
"type": "text",
"placeholders": {}
},
+ "end2endEncryptionSettings": "Configuración del cifrado de extremo a extremo",
+ "@end2endEncryptionSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
"endedTheCall": "{senderName} terminó la llamada",
"@endedTheCall": {
"type": "text",
@@ -547,16 +667,21 @@
"senderName": {}
}
},
- "enterAGroupName": "Ingrese un nombre de grupo",
+ "enterAGroupName": "Ingrese el nombre del chat",
"@enterAGroupName": {
"type": "text",
"placeholders": {}
},
- "enterAnEmailAddress": "Introducir una dirección de correo electrónico",
+ "enterAnEmailAddress": "Introduzca un correo electrónico",
"@enterAnEmailAddress": {
"type": "text",
"placeholders": {}
},
+ "enterAUsername": "Ingrese un nombre de usuario",
+ "@enterAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
"enterYourHomeserver": "Ingrese su servidor",
"@enterYourHomeserver": {
"type": "text",
@@ -572,6 +697,11 @@
"type": "text",
"placeholders": {}
},
+ "fileSize": "Tamaño del archivo",
+ "@fileSize": {
+ "type": "text",
+ "placeholders": {}
+ },
"fluffychat": "FluffyChat",
"@fluffychat": {
"type": "text",
@@ -582,6 +712,11 @@
"type": "text",
"placeholders": {}
},
+ "friday": "Viernes",
+ "@friday": {
+ "type": "text",
+ "placeholders": {}
+ },
"fromJoining": "Desde que se unió",
"@fromJoining": {
"type": "text",
@@ -619,12 +754,12 @@
"displayname": {}
}
},
- "guestsAreForbidden": "Los visitantes están prohibidos",
+ "guestsAreForbidden": "Los usuarios visitantes están prohibidos",
"@guestsAreForbidden": {
"type": "text",
"placeholders": {}
},
- "guestsCanJoin": "Los visitantes pueden unirse",
+ "guestsCanJoin": "Los usuarios visitantes pueden unirse",
"@guestsCanJoin": {
"type": "text",
"placeholders": {}
@@ -652,6 +787,11 @@
"type": "text",
"placeholders": {}
},
+ "homeserverIsNotCompatible": "El servidor no es compatible",
+ "@homeserverIsNotCompatible": {
+ "type": "text",
+ "placeholders": {}
+ },
"id": "Identificación",
"@id": {
"type": "text",
@@ -662,17 +802,17 @@
"type": "text",
"placeholders": {}
},
- "ignoredUsers": "Usuarios ignorados",
+ "ignoredUsers": "Usuarios bloqueados",
"@ignoredUsers": {
"type": "text",
"placeholders": {}
},
- "ignoreListDescription": "Puede ignorar a los usuarios que le molesten. No podrá recibir mensajes ni invitaciones a salas de los usuarios de su lista personal de ignorados.",
+ "ignoreListDescription": "Puede bloquear a los usuarios que le molesten. No podrá recibir mensajes ni invitaciones a chats de los usuarios de su lista personal de bloqueados.",
"@ignoreListDescription": {
"type": "text",
"placeholders": {}
},
- "ignoreUsername": "Ignorar nombre de usuario",
+ "ignoreUsername": "Bloquear nombre de usuario",
"@ignoreUsername": {
"type": "text",
"placeholders": {}
@@ -712,7 +852,7 @@
"type": "text",
"placeholders": {}
},
- "inviteText": "{username} te invitó a FluffyChat.\n1. Instale FluffyChat: https://fluffychat.im\n2. Regístrate o inicia sesión \n3. Abra el enlace de invitación: {link}",
+ "inviteText": "{username} le invitó a FluffyChat.\n1. Instale FluffyChat: https://fluffychat.im\n2. Regístrese o inicia sesión \n3. Abra el enlace de invitación: {link}",
"@inviteText": {
"type": "text",
"placeholders": {
@@ -720,6 +860,11 @@
"link": {}
}
},
+ "isDeviceKeyCorrect": "¿Es correcta la siguiente clave de dispositivo?",
+ "@isDeviceKeyCorrect": {
+ "type": "text",
+ "placeholders": {}
+ },
"isTyping": "está escribiendo…",
"@isTyping": {
"type": "text",
@@ -732,11 +877,21 @@
"username": {}
}
},
- "joinRoom": "Unirse a la sala",
+ "joinRoom": "Unirse al chat",
"@joinRoom": {
"type": "text",
"placeholders": {}
},
+ "keysCached": "Las claves están en caché",
+ "@keysCached": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "keysMissing": "Faltan las claves",
+ "@keysMissing": {
+ "type": "text",
+ "placeholders": {}
+ },
"kicked": "👞{username} echó a {targetName}",
"@kicked": {
"type": "text",
@@ -753,7 +908,7 @@
"targetName": {}
}
},
- "kickFromChat": "Echar del chat",
+ "kickFromChat": "Eliminar del chat",
"@kickFromChat": {
"type": "text",
"placeholders": {}
@@ -765,6 +920,11 @@
"localizedTimeShort": {}
}
},
+ "lastSeenIp": "Última dirección IP vista",
+ "@lastSeenIp": {
+ "type": "text",
+ "placeholders": {}
+ },
"lastSeenLongTimeAgo": "Visto hace mucho tiempo",
"@lastSeenLongTimeAgo": {
"type": "text",
@@ -807,7 +967,7 @@
"type": "text",
"placeholders": {}
},
- "login": "Acceso",
+ "login": "Iniciar sesión",
"@login": {
"type": "text",
"placeholders": {}
@@ -824,6 +984,16 @@
"type": "text",
"placeholders": {}
},
+ "makeAModerator": "Hacer un moderador/a",
+ "@makeAModerator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAnAdmin": "Hacer un administrador/a",
+ "@makeAnAdmin": {
+ "type": "text",
+ "placeholders": {}
+ },
"makeSureTheIdentifierIsValid": "Asegúrese de que el identificador es válido",
"@makeSureTheIdentifierIsValid": {
"type": "text",
@@ -844,6 +1014,18 @@
"type": "text",
"placeholders": {}
},
+ "monday": "Lunes",
+ "@monday": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moreEvents": "{count,plural, =1{1 evento más} other{{count} más eventos}}",
+ "@moreEvents": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
"muteChat": "Silenciar chat",
"@muteChat": {
"type": "text",
@@ -874,12 +1056,17 @@
"type": "text",
"placeholders": {}
},
+ "noCrossSignBootstrap": "Fluffychat actualmente no soporta la activación de Cross-Signing. Por favor, actívelo dentro de Riot.",
+ "@noCrossSignBootstrap": {
+ "type": "text",
+ "placeholders": {}
+ },
"noEmotesFound": "Ningún emote encontrado. 😕",
"@noEmotesFound": {
"type": "text",
"placeholders": {}
},
- "noEncryptionForPublicRooms": "Sólo se puede activar el cifrado en cuanto la sala deja de ser de acceso público.",
+ "noEncryptionForPublicRooms": "Sólo se puede activar el cifrado en cuanto el chat deja de ser de acceso público.",
"@noEncryptionForPublicRooms": {
"type": "text",
"placeholders": {}
@@ -889,6 +1076,11 @@
"type": "text",
"placeholders": {}
},
+ "noMegolmBootstrap": "Fluffychat actualmente no soporta la activación de Online Key Backup. Por favor, actívelo dentro de Riot.",
+ "@noMegolmBootstrap": {
+ "type": "text",
+ "placeholders": {}
+ },
"none": "Ninguno",
"@none": {
"type": "text",
@@ -899,11 +1091,28 @@
"type": "text",
"placeholders": {}
},
- "noRoomsFound": "Ninguna sala encontrada…",
+ "noPublicRoomsFound": "Sin chats públicos…",
+ "@noPublicRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "Ningún chat encontrado…",
"@noRoomsFound": {
"type": "text",
"placeholders": {}
},
+ "notSupportedInWeb": "No es compatible con la versión web",
+ "@notSupportedInWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numberSelected": "{number} seleccionado(s)",
+ "@numberSelected": {
+ "type": "text",
+ "placeholders": {
+ "number": {}
+ }
+ },
"offline": "Desconectado",
"@offline": {
"type": "text",
@@ -919,6 +1128,11 @@
"type": "text",
"placeholders": {}
},
+ "onlineKeyBackupDisabled": "La copia de seguridad de la clave en línea está deshabilitada",
+ "@onlineKeyBackupDisabled": {
+ "type": "text",
+ "placeholders": {}
+ },
"onlineKeyBackupEnabled": "La copia de seguridad de la clave en línea está habilitada",
"@onlineKeyBackupEnabled": {
"type": "text",
@@ -939,11 +1153,16 @@
"type": "text",
"placeholders": {}
},
- "optionalGroupName": "(Opcional) Nombre del grupo",
+ "optionalGroupName": "Nombre del chat",
"@optionalGroupName": {
"type": "text",
"placeholders": {}
},
+ "participatingUserDevices": "Dispositivos de usuario participantes",
+ "@participatingUserDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
"passphraseOrKey": "contraseña o clave de recuperación",
"@passphraseOrKey": {
"type": "text",
@@ -996,6 +1215,11 @@
"type": "text",
"placeholders": {}
},
+ "pleaseEnterSecurityKey": "Por favor, introduzca su clave de seguridad:",
+ "@pleaseEnterSecurityKey": {
+ "type": "text",
+ "placeholders": {}
+ },
"pleaseEnterYourPassword": "Por favor ingrese su contraseña",
"@pleaseEnterYourPassword": {
"type": "text",
@@ -1016,7 +1240,12 @@
"type": "text",
"placeholders": {}
},
- "publicRooms": "Salas públicas",
+ "publicGroups": "Grupos públicos",
+ "@publicGroups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Chats públicos",
"@publicRooms": {
"type": "text",
"placeholders": {}
@@ -1077,6 +1306,11 @@
"type": "text",
"placeholders": {}
},
+ "removeMessage": "Eliminar mensaje",
+ "@removeMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
"renderRichContent": "Mostrar el contenido con mensajes enriquecidos",
"@renderRichContent": {
"type": "text",
@@ -1092,16 +1326,46 @@
"type": "text",
"placeholders": {}
},
- "roomHasBeenUpgraded": "La sala ha subido de categoría",
+ "requestToReadOlderMessages": "Solicitar poder leer mensajes antiguos",
+ "@requestToReadOlderMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "revokeAllPermissions": "Revocar todos los permisos",
+ "@revokeAllPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "El chat ha subido de categoría",
"@roomHasBeenUpgraded": {
"type": "text",
"placeholders": {}
},
- "roomVersion": "Versión de sala",
+ "roomVersion": "Versión de chat",
"@roomVersion": {
"type": "text",
"placeholders": {}
},
+ "saturday": "Sábado",
+ "@saturday": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "searchForAChat": "Buscar un chat",
+ "@searchForAChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "securityKey": "Clave de seguridad",
+ "@securityKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "securityKeyLost": "¿Peridó su llave de seguridad?",
+ "@securityKeyLost": {
+ "type": "text",
+ "placeholders": {}
+ },
"seenByUser": "Visto por {username}",
"@seenByUser": {
"type": "text",
@@ -1140,6 +1404,11 @@
"type": "text",
"placeholders": {}
},
+ "sendBugReports": "Permitir el envió de informes de errores con sentry.io",
+ "@sendBugReports": {
+ "type": "text",
+ "placeholders": {}
+ },
"sendFile": "Enviar un archivo",
"@sendFile": {
"type": "text",
@@ -1202,6 +1471,21 @@
"senderName": {}
}
},
+ "sentryInfo": "Información sobre tu privacidad: https://sentry.io/security/",
+ "@sentryInfo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sessionVerified": "La sesión está verificada",
+ "@sessionVerified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setAProfilePicture": "Establecer una foto de perfil",
+ "@setAProfilePicture": {
+ "type": "text",
+ "placeholders": {}
+ },
"setAsCanonicalAlias": "Fijar alias principal",
"@setAsCanonicalAlias": {
"type": "text",
@@ -1239,6 +1523,49 @@
"username": {}
}
},
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sender": "Remitente",
+ "@sender": {},
+ "pinMessage": "Anclar al chat",
+ "@pinMessage": {},
+ "confirmEventUnpin": "¿Está seguro de desanclar definitivamente el mensaje?",
+ "@confirmEventUnpin": {},
+ "emojis": "Emojis",
+ "@emojis": {},
+ "placeCall": "Hacer llamada",
+ "@placeCall": {},
+ "voiceCall": "Llamada de voz",
+ "@voiceCall": {},
+ "unsupportedAndroidVersion": "Versión de Android no compatible",
+ "@unsupportedAndroidVersion": {},
+ "unsupportedAndroidVersionLong": "Esta función requiere una versión más reciente de Android. Verifique si hay actualizaciones o soporte de Lineage OS.",
+ "@unsupportedAndroidVersionLong": {},
+ "videoCallsBetaWarning": "Tenga en cuenta que las videollamadas se encuentran actualmente en versión beta. Es posible que no funcionen como se esperaba o que no funcionen en todas las plataformas.",
+ "@videoCallsBetaWarning": {},
+ "experimentalVideoCalls": "Videollamadas experimentales",
+ "@experimentalVideoCalls": {},
+ "indexedDbErrorTitle": "Problemas del modo privado",
+ "@indexedDbErrorTitle": {},
+ "indexedDbErrorLong": "Desafortunadamente, el almacenamiento de mensajes no está habilitado en modo privado de forma predeterminada.\nVisite\n - about:config\n - establezca dom.indexedDB.privateBrowsing.enabled en verdadero\nDe lo contrario, no es posible ejecutar FluffyChat.",
+ "@indexedDbErrorLong": {},
+ "reactedWith": "{sender} reaccionó con {reaction}",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "switchToAccount": "Cambiar a la cuenta {number}",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
"showPassword": "Mostrar contraseña",
"@showPassword": {
"type": "text",
@@ -1266,7 +1593,12 @@
"senderName": {}
}
},
- "statusExampleMessage": "¿Cómo estás hoy?",
+ "startYourFirstChat": "¡Inicie su primer chat ahora mismo! 🙂\n- Toque el botón de \"Nueva conversación\"\n- Escaneé el código QR de un amigo \n- Diviértanse chateando",
+ "@startYourFirstChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "¿Cómo está hoy?",
"@statusExampleMessage": {
"type": "text",
"placeholders": {}
@@ -1276,11 +1608,26 @@
"type": "text",
"placeholders": {}
},
+ "sunday": "Domingo",
+ "@sunday": {
+ "type": "text",
+ "placeholders": {}
+ },
"systemTheme": "Sistema",
"@systemTheme": {
"type": "text",
"placeholders": {}
},
+ "tapOnDeviceToVerify": "Toque en otro dispositivo para verificar",
+ "@tapOnDeviceToVerify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tapToShowMenu": "Toca para mostrar el menú",
+ "@tapToShowMenu": {
+ "type": "text",
+ "placeholders": {}
+ },
"theyDontMatch": "No coinciden",
"@theyDontMatch": {
"type": "text",
@@ -1291,6 +1638,26 @@
"type": "text",
"placeholders": {}
},
+ "thisRoomHasBeenArchived": "Este chat ha sido archivado.",
+ "@thisRoomHasBeenArchived": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thursday": "Jueves",
+ "@thursday": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "timeOfDay": "{hours24}:{minutes}",
+ "@timeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "hours12": {},
+ "hours24": {},
+ "minutes": {},
+ "suffix": {}
+ }
+ },
"title": "FluffyChat",
"@title": {
"description": "Title for the application",
@@ -1307,6 +1674,11 @@
"type": "text",
"placeholders": {}
},
+ "tuesday": "Martes",
+ "@tuesday": {
+ "type": "text",
+ "placeholders": {}
+ },
"unavailable": "Indisponible",
"@unavailable": {
"type": "text",
@@ -1342,6 +1714,11 @@
"type": {}
}
},
+ "unknownSessionVerify": "Sesión desconocida, por favor verifíquela",
+ "@unknownSessionVerify": {
+ "type": "text",
+ "placeholders": {}
+ },
"unmuteChat": "Dejar de silenciar el chat",
"@unmuteChat": {
"type": "text",
@@ -1359,6 +1736,18 @@
"unreadCount": {}
}
},
+ "unreadMessages": "{unreadEvents, plural, =1{1 mensaje no leído} other{{unreadEvents} mensajes no leídos}}",
+ "@unreadMessages": {
+ "type": "text",
+ "placeholders": {
+ "unreadEvents": {}
+ }
+ },
+ "useAmoledTheme": "¿Usar colores compatibles con AMOLED?",
+ "@useAmoledTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
"userAndOthersAreTyping": "{username} y {count} más están escribiendo…",
"@userAndOthersAreTyping": {
"type": "text",
@@ -1407,11 +1796,21 @@
"type": "text",
"placeholders": {}
},
+ "verifiedSession": "¡Sesión verificada exitosamente!",
+ "@verifiedSession": {
+ "type": "text",
+ "placeholders": {}
+ },
"verify": "Verificar",
"@verify": {
"type": "text",
"placeholders": {}
},
+ "verifyManual": "Verificar manualmente",
+ "@verifyManual": {
+ "type": "text",
+ "placeholders": {}
+ },
"verifyStart": "Comenzar verificación",
"@verifyStart": {
"type": "text",
@@ -1427,6 +1826,11 @@
"type": "text",
"placeholders": {}
},
+ "verifyUser": "Verificar usuario",
+ "@verifyUser": {
+ "type": "text",
+ "placeholders": {}
+ },
"videoCall": "Video llamada",
"@videoCall": {
"type": "text",
@@ -1467,7 +1871,7 @@
"type": "text",
"placeholders": {}
},
- "wallpaper": "Fondo de pantalla:",
+ "wallpaper": "Fondo de pantalla",
"@wallpaper": {
"type": "text",
"placeholders": {}
@@ -1477,7 +1881,18 @@
"type": "text",
"placeholders": {}
},
- "weSentYouAnEmail": "Te enviamos un correo electrónico",
+ "warningEncryptionInBeta": "¡El cifrado de extremo a extremo está actualmente en período de prueba! ¡Úselo bajo su propio riesgo!",
+ "wednesday": "Miércoles",
+ "@wednesday": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "welcomeText": "Bienvenidos al mensajero instantáneo más lindo de la red de Matrix.",
+ "@welcomeText": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "Le enviamos un correo electrónico",
"@weSentYouAnEmail": {
"type": "text",
"placeholders": {}
@@ -1497,31 +1912,53 @@
"type": "text",
"placeholders": {}
},
- "you": "Tú",
+ "you": "usted",
"@you": {
"type": "text",
"placeholders": {}
},
- "youAreInvitedToThisChat": "Estás invitado a este chat",
+ "youAreInvitedToThisChat": "Está invitado a este chat",
"@youAreInvitedToThisChat": {
"type": "text",
"placeholders": {}
},
- "youAreNoLongerParticipatingInThisChat": "Ya no estás participando en este chat",
+ "youAreNoLongerParticipatingInThisChat": "Ya no está participando en este chat",
"@youAreNoLongerParticipatingInThisChat": {
"type": "text",
"placeholders": {}
},
- "youCannotInviteYourself": "No puedes invitarte a tí mismo",
+ "youCannotInviteYourself": "No puede invitarse a sí mismo",
"@youCannotInviteYourself": {
"type": "text",
"placeholders": {}
},
- "youHaveBeenBannedFromThisChat": "Has sido vetado de este chat",
+ "youHaveBeenBannedFromThisChat": "Ha sido vetado de este chat",
"@youHaveBeenBannedFromThisChat": {
"type": "text",
"placeholders": {}
},
+ "yourOwnUsername": "Su nombre de usuario",
+ "@yourOwnUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youWillBeConnectedTo": "Será conectado a {homeserver}",
+ "@youWillBeConnectedTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "zoomIn": "Acercar zoom",
+ "@zoomIn": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "zoomOut": "Alejar zoom",
+ "@zoomOut": {
+ "type": "text",
+ "placeholders": {}
+ },
"autoplayImages": "Reproducir emoticonos y stickers animados automáticamente",
"@autoplayImages": {
"type": "text",
@@ -1532,7 +1969,7 @@
"type": "text",
"placeholders": {}
},
- "addToSpace": "Agregar al espacio",
+ "addToSpace": "Agregar a espacio",
"@addToSpace": {},
"cantOpenUri": "No puedo abrir el URI {uri}",
"@cantOpenUri": {
@@ -1541,6 +1978,11 @@
"uri": {}
}
},
+ "addNewFriend": "Agregar nuevo amigo",
+ "@addNewFriend": {
+ "type": "text",
+ "placeholders": {}
+ },
"all": "Todo",
"@all": {
"type": "text",
@@ -1551,6 +1993,16 @@
"type": "text",
"placeholders": {}
},
+ "audioPlayerPause": "",
+ "@audioPlayerPause": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "audioPlayerPlay": "Encender",
+ "@audioPlayerPlay": {
+ "type": "text",
+ "placeholders": {}
+ },
"botMessages": "Mensajes de bot",
"@botMessages": {
"type": "text",
@@ -1591,7 +2043,7 @@
"type": "text",
"placeholders": {}
},
- "status": "Estado",
+ "status": "Status",
"@status": {
"type": "text",
"placeholders": {}
@@ -1601,12 +2053,27 @@
"type": "text",
"placeholders": {}
},
+ "userNotVerified": "El usuario no está verificado",
+ "@userNotVerified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userVerified": "El usuario está verificado",
+ "@userVerified": {
+ "type": "text",
+ "placeholders": {}
+ },
"iHaveClickedOnLink": "He hecho clic en el enlace",
"@iHaveClickedOnLink": {
"type": "text",
"placeholders": {}
},
- "directChats": "Chat directo",
+ "clearText": "Borrar texto",
+ "@clearText": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Chat privado",
"@directChats": {
"type": "text",
"placeholders": {}
@@ -1645,13 +2112,10 @@
"type": "text",
"placeholders": {}
},
- "spaceIsPublic": "El espacio es público",
"@spaceIsPublic": {
"type": "text",
"placeholders": {}
},
- "chatHasBeenAddedToThisSpace": "El chat se ha agregado a este espacio",
- "@chatHasBeenAddedToThisSpace": {},
"commandInvalid": "Comando inválido",
"@commandInvalid": {
"type": "text"
@@ -1678,6 +2142,11 @@
"type": "text",
"placeholders": {}
},
+ "publicKey": "Clave pública",
+ "@publicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
"editBlockedServers": "Editar servidores bloqueado",
"@editBlockedServers": {
"type": "text",
@@ -1688,6 +2157,11 @@
"type": "text",
"placeholders": {}
},
+ "noDescription": "Sin descripción",
+ "@noDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
"noConnectionToTheServer": "Sin conexión al servidor",
"@noConnectionToTheServer": {
"type": "text",
@@ -1703,7 +2177,7 @@
"type": "text",
"placeholders": {}
},
- "inoffensive": "Inofensivo",
+ "inoffensive": "Un poco ofensivo",
"@inoffensive": {
"type": "text",
"placeholders": {}
@@ -1713,13 +2187,13 @@
"type": "text",
"placeholders": {}
},
- "memberChanges": "Cambios de miembros",
- "@memberChanges": {
+ "soundVibrationLedColor": "Sonido, vibración LED de color",
+ "@soundVibrationLedColor": {
"type": "text",
"placeholders": {}
},
- "createNewSpace": "Nuevo espacio",
- "@createNewSpace": {
+ "memberChanges": "Cambios de miembros",
+ "@memberChanges": {
"type": "text",
"placeholders": {}
},
@@ -1735,7 +2209,7 @@
},
"enterASpacepName": "Ingrese nombre de espacio",
"@enterASpacepName": {},
- "ignore": "Ignorar",
+ "ignore": "Bloquear",
"@ignore": {
"type": "text",
"placeholders": {}
@@ -1750,7 +2224,7 @@
"type": "text",
"placeholders": {}
},
- "offensive": "Ofensiva",
+ "offensive": "Ofensivo",
"@offensive": {
"type": "text",
"placeholders": {}
@@ -1762,12 +2236,12 @@
"type": "text",
"placeholders": {}
},
- "replaceRoomWithNewerVersion": "Reemplazar habitación con una versión más nueva",
+ "replaceRoomWithNewerVersion": "Reemplazar chat con una versión más nueva",
"@replaceRoomWithNewerVersion": {
"type": "text",
"placeholders": {}
},
- "contentHasBeenReported": "El contenido ha sido reportado a los administradores del servidor",
+ "contentHasBeenReported": "El contenido ha sido reportado",
"@contentHasBeenReported": {
"type": "text",
"placeholders": {}
@@ -1777,11 +2251,18 @@
"type": "text",
"placeholders": {}
},
- "reportMessage": "Mensaje de informe",
+ "reportMessage": "Reportar mensaje",
"@reportMessage": {
"type": "text",
"placeholders": {}
},
+ "savedFileAs": "Archivo guardado como {filename}",
+ "@savedFileAs": {
+ "type": "text",
+ "placeholders": {
+ "filename": {}
+ }
+ },
"search": "Buscar",
"@search": {
"type": "text",
@@ -1836,6 +2317,11 @@
"type": "text",
"placeholders": {}
},
+ "saveFileToFolder": "Guardar archivo en esta carpeta",
+ "@saveFileToFolder": {
+ "type": "text",
+ "placeholders": {}
+ },
"commandHint_send": "Enviar texto",
"@commandHint_send": {
"type": "text",
@@ -1851,6 +2337,11 @@
"type": "text",
"placeholders": {}
},
+ "dontAskAgain": "Cancelar y no volver a preguntar",
+ "@dontAskAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
"oopsPushError": "¡UPS¡ Desafortunadamente, se produjo un error al configurar las notificaciones push.",
"@oopsPushError": {
"type": "text",
@@ -1861,27 +2352,37 @@
"type": "text",
"placeholders": {}
},
+ "discoverGroups": "Descubrir grupos",
+ "@discoverGroups": {
+ "type": "text",
+ "placeholders": {}
+ },
"enableEncryption": "Habilitar la encriptación",
"@enableEncryption": {
"type": "text",
"placeholders": {}
},
+ "yourChatsAreBeingSynced": "Sus chats se están sincronizando…",
+ "@yourChatsAreBeingSynced": {
+ "type": "text",
+ "placeholders": {}
+ },
"messages": "Mensajes",
"@messages": {
"type": "text",
"placeholders": {}
},
- "fontSize": "Tamaño de fuente",
+ "fontSize": "Tamaño de letra",
"@fontSize": {
"type": "text",
"placeholders": {}
},
- "commandHint_ban": "Prohibir al usuario dado en esta sala",
+ "commandHint_ban": "Bloquear el usario de este chat",
"@commandHint_ban": {
"type": "text",
"description": "Usage hint for the command /ban"
},
- "commandHint_unban": "Des banear al usuario dado en esta sala",
+ "commandHint_unban": "Desbloquear al usuario dado en este chat",
"@commandHint_unban": {
"type": "text",
"description": "Usage hint for the command /unban"
@@ -1894,15 +2395,34 @@
},
"description": "State that {command} is not a valid /command."
},
+ "discover": "Descubrir",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
"editChatPermissions": "Editar permisos de chat",
"@editChatPermissions": {
"type": "text",
"placeholders": {}
},
+ "friends": "Amigos",
+ "@friends": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewChatExplaination": "Simplemente escanee el código QR o comparta su enlace de invitación si no están uno al lado del otro.",
+ "@createNewChatExplaination": {},
"shareYourInviteLink": "Compartir tu enlace de invitación",
"@shareYourInviteLink": {},
+ "typeInInviteLinkManually": "Escriba el enlace de invitación manualmente...",
+ "@typeInInviteLinkManually": {},
"scanQrCode": "Escanear código QR",
"@scanQrCode": {},
+ "unlockChatBackup": "Desbloquear la copia de seguridad del chat",
+ "@unlockChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
"homeserver": "Homeserver",
"@homeserver": {},
"newChat": "Nuevo chat",
@@ -1910,19 +2430,19 @@
"type": "text",
"placeholders": {}
},
- "commandHint_join": "Únete a la sala indicada",
+ "commandHint_join": "Únase al chat indicado",
"@commandHint_join": {
"type": "text",
"description": "Usage hint for the command /join"
},
- "sendOnEnter": "Enviar con enter",
+ "sendOnEnter": "Enviar siempre con enter",
"@sendOnEnter": {},
"changeYourAvatar": "Cambiar tu avatar",
"@changeYourAvatar": {
"type": "text",
"placeholders": {}
},
- "commandHint_me": "Descríbete",
+ "commandHint_me": "Descríbase",
"@commandHint_me": {
"type": "text",
"description": "Usage hint for the command /me"
@@ -1932,32 +2452,32 @@
"type": "text",
"description": "Usage hint for the command /html"
},
- "commandHint_invite": "Invitar al usuario indicado a esta sala",
+ "commandHint_invite": "Invitar al usuario indicado a este chat",
"@commandHint_invite": {
"type": "text",
"description": "Usage hint for the command /invite"
},
- "commandHint_kick": "Eliminar el usuario indicado de esta sala",
+ "commandHint_kick": "Eliminar el usuario indicado de este chat",
"@commandHint_kick": {
"type": "text",
"description": "Usage hint for the command /kick"
},
- "commandHint_leave": "Deja esta sala",
+ "commandHint_leave": "Salir de este chat",
"@commandHint_leave": {
"type": "text",
"description": "Usage hint for the command /leave"
},
- "commandHint_myroomavatar": "Selecciona tu foto para esta sala (by mxc-uri)",
+ "commandHint_myroomavatar": "Seleccione su foto para este chat (by mxc-uri)",
"@commandHint_myroomavatar": {
"type": "text",
"description": "Usage hint for the command /myroomavatar"
},
- "commandHint_myroomnick": "Establece tu nombre para mostrar para esta sala",
+ "commandHint_myroomnick": "Establezca su nombre para mostrar para este chat",
"@commandHint_myroomnick": {
"type": "text",
"description": "Usage hint for the command /myroomnick"
},
- "commandHint_op": "Establece el nivel de potencia del usuario dado (default: 50)",
+ "commandHint_op": "Establezca el nivel de potencia del usuario dado (default: 50)",
"@commandHint_op": {
"type": "text",
"description": "Usage hint for the command /op"
@@ -1977,7 +2497,12 @@
"type": "text",
"placeholders": {}
},
- "editRoomAvatar": "Editar avatar de sala",
+ "enableChatBackup": "Habilitar la copia de seguridad del chat para no perder nunca el acceso a su chats.",
+ "@enableChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "Editar avatar de chat",
"@editRoomAvatar": {
"type": "text",
"placeholders": {}
@@ -1992,7 +2517,7 @@
"type": "text",
"placeholders": {}
},
- "goToTheNewRoom": "Ir a la nueva sala",
+ "goToTheNewRoom": "Ir al nuevo chat",
"@goToTheNewRoom": {
"type": "text",
"placeholders": {}
@@ -2005,6 +2530,20 @@
"server2": {}
}
},
+ "invalidEmail": "Correo inválido",
+ "@invalidEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newPasswordDescription": "Para poder recuperar su contraseña más tarde, debe agregar una dirección de correo electrónico",
+ "@newPasswordDescription": {},
+ "newUsernameDescription": "Su ID de usuario tendrá el formato @username:servername",
+ "@newUsernameDescription": {},
+ "noStatusesFound": "Hasta ahora no se han encontrado estados.",
+ "@noStatusesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
"openInMaps": "Abrir en maps",
"@openInMaps": {
"type": "text",
@@ -2041,11 +2580,16 @@
"type": "text",
"placeholders": {}
},
- "spaceName": "Nombre del espacio",
+ "spaceName": "Nombre",
"@spaceName": {
"type": "text",
"placeholders": {}
},
+ "tapToShowImage": "Toque para mostrar la imagen",
+ "@tapToShowImage": {
+ "type": "text",
+ "placeholders": {}
+ },
"toggleFavorite": "Alternar favorito",
"@toggleFavorite": {
"type": "text",
@@ -2056,6 +2600,11 @@
"type": "text",
"placeholders": {}
},
+ "userUnknownVerification": "El usuario tiene un estado de verificación desconocido",
+ "@userUnknownVerification": {
+ "type": "text",
+ "placeholders": {}
+ },
"whoCanPerformWhichAction": "Quién puede realizar qué acción",
"@whoCanPerformWhichAction": {
"type": "text",
@@ -2071,11 +2620,19 @@
"type": "text",
"placeholders": {}
},
+ "iWroteDownTheKey": "He escrito la clave",
+ "@iWroteDownTheKey": {},
"yourChatBackupHasBeenSetUp": "Se ha configurado la copia de respaldo del chat.",
"@yourChatBackupHasBeenSetUp": {},
"unverified": "No verificado",
"@unverified": {},
- "commandHint_clearcache": "Limpiar cache",
+ "setupChatBackupDescription": "Para proteger sus mensajes, hemos generado una clave de seguridad.\nConsérvela en un sitio seguro, como un gestor de contraseñas.",
+ "@setupChatBackupDescription": {},
+ "yourUserId": "Su id. de usuario:",
+ "@yourUserId": {},
+ "setupChatBackup": "Configurar copia de respaldo de chat",
+ "@setupChatBackup": {},
+ "commandHint_clearcache": "limpiar cache",
"@commandHint_clearcache": {
"type": "text",
"description": "Usage hint for the command /clearcache"
@@ -2097,21 +2654,19 @@
"@pleaseEnterValidEmail": {},
"repeatPassword": "Repetir la contraseña",
"@repeatPassword": {},
- "pleaseChooseAtLeastChars": "Por favor elige al menos {min} carácteres.",
+ "pleaseChooseAtLeastChars": "Por favor elegir al menos {min} carácteres",
"@pleaseChooseAtLeastChars": {
"type": "text",
"placeholders": {
"min": {}
}
},
- "removeFromSpace": "Eliminar del espacio",
- "@removeFromSpace": {},
- "addToSpaceDescription": "Elige un espacio para añadir este chat a el.",
- "@addToSpaceDescription": {},
"openGallery": "Abrir galería",
"@openGallery": {},
"start": "Iniciar",
"@start": {},
+ "saveTheSecurityKeyNow": "Guardar la clave de seguridad ahora",
+ "@saveTheSecurityKeyNow": {},
"replyHasBeenSent": "La respuesta se ha enviado",
"@replyHasBeenSent": {},
"whatIsGoingOn": "¿Qué está pasando?",
@@ -2132,35 +2687,828 @@
"size": {}
}
},
+ "pleaseEnterSecurityKeyDescription": "Para desbloquear el respaldo de tu chat, por favor ingresa tu clave de seguridad que ha sido generada en una sesión previa. Tu clave de seguridad NO es tu contraseña.",
+ "@pleaseEnterSecurityKeyDescription": {},
"publish": "Publicar",
"@publish": {},
- "newSpace": "Nuevo espacio",
- "@newSpace": {},
- "allSpaces": "Todos los espacios",
- "@allSpaces": {},
- "yourStory": "Tu historia",
- "@yourStory": {},
- "widgetUrlError": "Esta no es una URL válida.",
- "@widgetUrlError": {},
- "commandHint_markasgroup": "Marcar como grupo",
- "@commandHint_markasgroup": {},
- "nextAccount": "Siguiente cuenta",
- "@nextAccount": {},
- "youRejectedTheInvitation": "Rechazaste la invitación",
- "@youRejectedTheInvitation": {},
- "whoCanSeeMyStories": "¿Quién puede ver mis historias?",
- "@whoCanSeeMyStories": {},
- "newGroup": "Nuevo grupo",
+ "updateLanguage": "Cambiar mis idiomas",
+ "@updateLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelPreA1": "Principiante absoluto (Pre A1)",
+ "@languageLevelPreA1": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelA1": "Principiante elemental (A1)",
+ "@languageLevelA1": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelA2": "Principiante básico (A2)",
+ "@languageLevelA2": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelB1": "Intermedio (B1)",
+ "@languageLevelB1": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelB2": "Intermedio alto (B2)",
+ "@languageLevelB2": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelC1": "Avanzado (C1)",
+ "@languageLevelC1": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "languageLevelC2": "Maestría (C2)",
+ "@languageLevelC2": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportAnIssue": "Ayuda",
+ "@reportAnIssue": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatLanguageYouWantToLearn": "¿Qué idioma quiere aprender?",
+ "@whatLanguageYouWantToLearn": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsYourBaseLanguage": "¿Cuál es su idioma base? \n\n Actualmente, la traducción interactiva solo está disponible cuando su idioma base es inglés y español. La asistencia gramatical está disponible para todos los idiomas base.",
+ "studentPermissions": "Permisos de estudiantes",
+ "@studentPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openEnrollment": "Inscripción abierta?",
+ "@openEnrollment": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openToExchanges": "¿Abierto a intercambios?",
+ "@openToExchanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneToOneChatsWithinExchanges": "Chats Privados dentro de Intercambios",
+ "@oneToOneChatsWithinExchanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createGroupChats": "Crear Chats Grupales",
+ "@createGroupChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createGroupChatsInExchanges": "Crear Chats Grupales en Intercambios",
+ "@createGroupChatsInExchanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createGroupChatsInExchangesDesc": "Active esta opción para permitir que los estudiantes creen chats grupales dentro de los intercambios.",
+ "@createGroupChatsInExchangesDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareStories": "Subir historias",
+ "@shareStories": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareStoriesDesc": "Active esta opción para permitir que los estudiantes suban historias.",
+ "@shareStoriesDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareVideo": "Enviar videos",
+ "@shareVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareVideoDesc": "Active esta opción para permitir que los estudiantes compartan videos en los chats.",
+ "@shareVideoDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharePhotos": "Enviar fotos",
+ "@sharePhotos": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharePhotosDesc": "Active esta opción para permitir que los estudiantes compartan fotos en los chats.",
+ "@sharePhotosDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareFiles": "Enviar archivos",
+ "@shareFiles": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareFilesDesc": "Active esta opción para permitir que los estudiantes compartan archivos en los chats.",
+ "@shareFilesDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareLocationDesc": "Active esta opción para permitir que los estudiantes compartan su ubicación en los chats.",
+ "@shareLocationDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterCityName": "Escriba ciudad, estado",
+ "@enterCityName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalCity": "Opcional: Ciudad, estado",
+ "@optionalCity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterCountryName": "Escriba país",
+ "@enterCountryName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalCountry": "Opcional: País",
+ "@optionalCountry": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSchoolName": "Escriba el nombre de la escuela",
+ "@enterSchoolName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalSchool": "Opcional: Escuela",
+ "@optionalSchool": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editCityAndState": "Editar ciudad y estado",
+ "@editCityAndState": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cityAndStateInformation": "Información de ciudad y estado",
+ "@cityAndStateInformation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editCountry": "Editar país",
+ "@editCountry": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countryInformation": "Información de país",
+ "@countryInformation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "langaugeLevel": "Nivel de lengua",
+ "@langaugeLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsYourClassLanguageLevel": "¿Cuál es el nivel de lengua promedio de su clase? \n\nEsto se usará para organizar intercambios de clases (¡próximamente!). Junto con los datos recopilados del uso del idioma de los estudiantes y las actividades en el chat, el nivel promedio del idioma se usará para formar una línea de base para el cálculo del nivel individual del estudiante (¡próximamente!).",
+ "@whatIsYourClassLanguageLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "l1Andl2": "L1 y L2",
+ "@l1Andl2": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "schoolInformation": "Información de escuela",
+ "@schoolInformation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editSchool": "Editar escuela",
+ "@editSchool": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "selectClassRoomDominantLanguage": "¿Cuál es el idioma base de su clase? \n\nEl idioma base de la clase se utilizará para organizar los intercambios de clases (¡Próximamente!). Los idiomas base también los establece el individuo, lo que determina la funcionalidad de las herramienta de aprendizaje. Actualmente, la asistencia de traducción solo está disponibles cuando el idioma base de la persona está configurado en español o inglés. La asistencia gramatical está disponible para todos los idiomas base.",
+ "@selectClassRoomDominantLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "selectTargetLanguage": "¿Cuál es el idioma que enseña en su clase? \n\nEsto se usa para determinar la funcionalidad de las herramientas de aprendizaje para su clase, incluida la asistencia gramatical, la asistencia de traducción, tarjetas emergentes de definiciones de palabras y Seguimiento de clase. Para todos los chats de su clase, esta configuración anulará cualquier configuración en conflicto a nivel individual.",
+ "@selectTargetLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "selectLanguageLevel": "Seleccione nivel de lengua",
+ "@selectLanguageLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addStudents": "Agregar estudiantes",
+ "@addStudents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "findLanguageExchange": "Encuentre una clase de intercambio",
+ "@findLanguageExchange": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestToEnroll": "Solicitar inscripción",
+ "@requestToEnroll": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestAnExchange": "Solicitar un intercambio",
+ "@requestAnExchange": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "targetLanguage": "Idioma a aprender",
+ "@targetLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceLanguage": "Idioma base",
+ "@sourceLanguage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numberOfStudents": "Número de estudiantes",
+ "@numberOfStudents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ratings": "Calificaciones",
+ "@ratings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "myLanguages": "Mi idioma base y idioma a aprender",
+ "@myLanguages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveChanges": "Guardar",
+ "@saveChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createPrivateChat": "Crear un chat privado",
+ "@createPrivateChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "findAClass": "Encuentre una clase (¡Próximamente!)",
+ "@findAClass": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "findALanguagePartner": "Encuentre un compañero de conversación",
+ "@findALanguagePartner": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "generalSettings": "Ajustes generales",
+ "@generalSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classSettings": "Ajustes de clase",
+ "@classSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "suggestToClass": "Sugiera el chat a",
+ "@suggestToClass": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classWelcomeChat": "Chat de bienvenida",
+ "@classWelcomeChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iWantAConversationPartner": "Quiero un compañero de conversación quién",
+ "@iWantAConversationPartner": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourBirthdayPlease": "Pangea Chat está al servicio de escuelas y otras comunidades de aprendizaje que atienden a estudiantes de 13 años en adelante alrededor del mundo. Para proteger a nuestra población menor de edad, les pedimos a todos nuestros usuarios que verifiquen su edad antes de unirse a nuestra comunidad. Para poder encontrar clases, chats y nuevos amigos en Pangea Chat, debe verificar que tiene 18 años o más de edad.",
+ "@yourBirthdayPlease": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invalidDob": "Fecha de nacimiento inválida",
+ "@invalidDob": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourDob": "Introduzca su fecha de nacimiento",
+ "@enterYourDob": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "getStarted": "Comience",
+ "@getStarted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mustBe13": "Los usuarios deben tener 13 años o más de edad.",
+ "@mustBe13": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourBirthdayPleaseShort": "Por favor, introduzca su fecha de nacimiento",
+ "@yourBirthdayPleaseShort": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteStudentByUserName": "Invitar a estudiantes por usuario",
+ "@inviteStudentByUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "classAnalyticsDesc": "Información detallada sobre la participación de los estudiantes y el uso del idioma",
+ "@classAnalyticsDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatTopic": "Tema del chat",
+ "@chatTopic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatTopicDesc": "Establecer un tema para el chat",
+ "@chatTopicDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteStudentByUserNameDesc": "Si su estudiante ya tiene una cuenta, puede buscarlo.",
+ "@inviteStudentByUserNameDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteWithEmail": "Invitar por correo",
+ "@inviteWithEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheClass": "Cambiar el nombre",
+ "@changeTheNameOfTheClass": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheChat": "Cambiar el nombre del chat",
+ "@changeTheNameOfTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accountSettings": "Ajustes de cuenta",
+ "@accountSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleIT": "Asistencia de Traducción",
+ "interactiveTranslatorNotAllowed": "Deshabilitado",
+ "@interactiveTranslatorNotAllowed": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslatorAllowed": "Elección del estudiante",
+ "@interactiveTranslatorAllowed": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslatorRequired": "Requerido",
+ "@interactiveTranslatorRequired": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslatorRequiredDesc": "Los estudiantes no pueden desactivar la asistencia de traducción. Pueden optar por no aceptar las sugerencias de traducción. Esta restricción no se aplica a Class Admin o chats directos.",
+ "@interactiveTranslatorRequiredDesc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "interactiveTranslatorSliderHeader": "Asistencia de traducción",
+ "interactiveTranslator": "Asistencia de traducción",
+ "@interactiveTranslator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "grammarAssistance": "Asistencia gramatical",
+ "@grammarAssistance": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withoutAssistance": "Sin apoyo",
+ "@withoutAssistance": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneday": "Las últimas 24 horas",
+ "@oneday": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneweek": "Los últimos 7 días",
+ "@oneweek": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onemonth": "El último mes",
+ "@onemonth": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sixmonth": "Los últimos 6 meses",
+ "@sixmonth": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneyear": "El último año",
+ "@oneyear": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noDataForPeriod": "No se encontraron mensajes para este período",
+ "@noDataForPeriod": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "@allClasses": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorPleaseRefresh": "¡Algo salió mal! El error ha sido registrado y lo estamos investigando. Mientras tanto, actualice la página y vuelva a intentarlo. Si el error persiste, háganoslo saber en support@pangea.chat.",
+ "loginOrSignup": "Iniciar / Registrarse",
+ "noIdenticalLanguages": "Por favor, elija diferentes idiomas base e idiomas de aprender.",
+ "moderateOffensive": "Moderadamente ofensivo",
+ "searchBy": "Buscar por país e idiomas",
+ "languagesISpeak": "Idiomas que hablo",
+ "iWantALanguagePartnerFrom": "Es de:",
+ "iWantALanguagePartnerWhoSpeaks": "Habla:",
+ "iWantALanguagePartnerWhoIsLearning": "Está aprendiendo:",
+ "noResults": "¡No hay resultados! Intente ampliar su búsqueda.",
+ "worldWide": "En todo el mundo",
+ "ignoreInThisText": "Ignorar para este mensaje.",
+ "youGotSomeIssuesToResolve": "Parece que hay algunos errores de lengua en su mensaje.",
+ "sendVoiceNotes": "Enviar notas de voz",
+ "sendVoiceNotesDesc": "Active esta opción para permitir que los estudiantes envíen notas de voz en los chats.",
+ "translationSeemsFinished": "La traducción parece estar terminada.",
+ "needsItShortMessage": "¡Pruebe la traducción interactiva!",
+ "needsIGCShortMessage": "¡Pruebe el corrector gramatical interactivo!",
+ "needsItMessage": "Este mensaje tiene demasiadas palabras en su idioma base.",
+ "needsIgcMessage": "Este mensaje tiene un error gramatical.",
+ "tokenTranslationTitle": "Una palabra está en su idioma base.",
+ "helpMeTranslate": "¡Ayúdeme a traducir!",
+ "setToPublicSettingsTitle": "¿Quiere encontrar un compañero de conversación?",
+ "setToPublicSettingsDesc": "Antes de que pueda buscar un compañero de conversación, debe configurar la visibilidad de su perfil como pública.",
+ "publicProfileTitle": "Perfil público",
+ "publicProfileDesc": "Su perfil debe ser público para poder buscar o ser encontrado como compañero de conversación.",
+ "countryInformationDesc": "Si lo desea, puede dejar que la gente sepa de dónde es.",
+ "notYetSet": "Aún no está establecido.",
+ "allSuggestedRoomsJoined": "",
+ "suggestedRooms": "Chats sugeridos",
+ "emailOrUsername": "Nombre de usuario",
+ "@emailOrUsername": {},
+ "connectedToStaging": "Estás conectado al servidor de ensayo.",
+ "partTitle": "Tiene un error de gramática.",
+ "partDesc": "Vea las correcciones sugeridas a continuación.",
+ "punctTitle": "Tiene un error de puntuación.",
+ "punctDesc": "La puntuación incluye el uso de comas, puntos, signos de interrogación, signos de exclamación, apóstrofes y acentos.",
+ "orthTitle": "Tiene un error de escritura.",
+ "orthDesc": "Errores de escritura incluyen el uso de mayúsculas, el espaciado y la partición de palabras.",
+ "spellTitle": "Tiene un error de ortografía.",
+ "spellDesc": "Vea las correcciones sugeridas a continuación.",
+ "woTitle": "Tiene un error con el orden de las palabras.",
+ "woDesc": "Esto significa que una o más de sus palabras no están en el orden correcto.",
+ "morphTitle": "Tiene un error con la forma de la palabra.",
+ "morphDesc": "Es probable que haya utilizado la forma incorrecta de una palabra, por ejemplo, el adjetivo (respetuoso) en lugar de la forma sustantiva (respeto).",
+ "advTitle": "Tiene un error con el adverbio.",
+ "advDesc": "Los adverbios son palabras que describen verbos como \"rápidamente\", \"quizás\" y \"ahora\".",
+ "contrTitle": "Tiene un error con la contracción.",
+ "contrDesc": "Una contracción es cuando dos palabras se acortan a una como \"del\" y \"al.\"",
+ "conjTitle": "Tiene un error con la conjunción.",
+ "conjDesc": "Una conjunción es una palabra como \"pero\", \"y\" o \"porque\" que unen palabras, frases y cláusulas.",
+ "detTitle": "Tiene un error con el determinante.",
+ "detDesc": "Un determinante especifica a qué se refiere o cuánto de algo se refiere e incluye palabras como \"el\", \"esto\" y \"algunos\".",
+ "det:artTitle": "Tiene un error con el artículo.",
+ "det:artDesc": "Los artículos incluyen: el, la, los, las, un, una, unos y unas.",
+ "prepTitle": "Tiene un error con la preposición.",
+ "prepDesc": "Una preposición describe el tiempo, la ubicación, la dirección o las relaciones espaciales de un objeto, por ejemplo, \"arriba\", \"al lado\" y \"en\".",
+ "pronTitle": "Tiene un error con el pronombre.",
+ "pronDesc": "Un pronombre reemplaza a un sustantivo e incluye palabras como: yo, tú, ella, mi, ellos y nuestro.",
+ "verbTitle": "Tiene un error con el verbo.",
+ "verbDesc": "Un verbo es una palabra de acción que describe lo que algo o alguien hace, como \"correr\", \"comer\" o \"hablar\".",
+ "verbFormTitle": "Tiene un error con la forma verbal.",
+ "verbFormDesc": "Esto significa que probablemente haya conjugado mal un verbo.",
+ "verbTenseTitle": "Tiene un error con el tiempo verbal.",
+ "verbTenseDesc": "Esto significa que ha utilizado el tiempo incorrecto del verbo, por ejemplo, presente, pasado, futuro, etc...",
+ "verbSvaTitle": "Tiene un error de concordancia sujeto-verbo.",
+ "verbSvaDesc": "Esto significa que el sujeto y el verbo no coinciden, por ejemplo, \"Le gusta las manzanas\".",
+ "verbInflTitle": "Tiene un error de gramática.",
+ "verbInflDesc": "Vea las correcciones sugeridas a continuación.",
+ "adjTitle": "Tiene un error con el adjetivo.",
+ "adjDesc": "Los adjetivos son palabras que describen sustantivos como \"verde\", \"pequeños\" y \"hermoso\".",
+ "adjFormTitle": "Tiene un error con la forma del adjetivo.",
+ "adjFormDesc": "Puede ser, por ejemplo, que usó \"suave\" en lugar de \"más suave\" o \"lo más suave\".",
+ "nounTitle": "Tiene un error con un sustantivo.",
+ "nounDesc": "Los sustantivos son personas, lugares y cosas.",
+ "nounPossTitle": "Tiene un error con el posesivo.",
+ "nounPossDesc": "El error puede estar relacionado con el uso de \"del\" o palabras como \"mío,\" \"su,\" o \"nuestro\" que expresan posesión.",
+ "nounInflTitle": "Tiene un error de gramática.",
+ "nounInflDesc": "Vea las correcciones sugeridas a continuación.",
+ "nounNumTitle": "Tiene un error con el sustantivo.",
+ "nounNumDesc": "Esto puede estar relacionado con el uso incorrecto de un sustantivo contable o incontable.",
+ "otherTitle": "Tiene un error de gramática.",
+ "otherDesc": "Vea las correcciones sugeridas a continuación.",
+ "spanTranslationTitle": "Algunas palabras están en su idioma base.",
+ "spanTranslationDesc": "Vea posibles traducciones abajo.",
+ "error601602Title": "La asistencia de traducción está deshabilitada.",
+ "error601Desc": "Para activar herramientas de aprendizaje, vaya a Ajustes de cuenta > Ajustes de aprendizaje y active asistencia de traducción.",
+ "error405Title": "Idiomas no seleccionados.",
+ "error405Desc": "Por favor, seleccione sus idiomas en Ajustes de cuenta > Ajustes de aprendizaje.",
+ "mostCommon": "¡La más común!",
+ "leastCommon": "¡La menos común!",
+ "lessCommon": "¡Menos común!",
+ "commonalityFeedback": "¡Su traducción parece estar terminada. ¡Escogió la elección más común {count} de {total} veces!",
+ "@commonalityFeedback": {
+ "type": "text",
+ "placeholders": {
+ "count": {},
+ "total": {}
+ }
+ },
+ "customInputFeedback": "¡Su traducción parece estar terminada! Creó su propia traducción.",
+ "seeAlternativeTranslations": "Ver traducciones alternativas.",
+ "itInstructionsTitle": "¡Le puedo ayudar a traduccir!",
+ "itInstructionsBody": "Puede oprimir con clic largo las opciones para más información.",
+ "chatItemTooltip": "Use clic largo para ver opciones.",
+ "toggleLanguages": "Cambie el idioma de los mensajes seleccionados.",
+ "holdForInfo": "Use clic largo para ver información de la palabra.",
+ "askPangeaBot": "Pídale al Pangea Bot una definición contextual.",
+ "deleteGroup": "Eliminar chat grupal",
+ "areYouSureDeleteGroup": "¿Está seguro que quiere eliminar este chat grupal?",
+ "cannotBeReversed": "Esta acción no se puede revertir.",
+ "timeOfLastMessage": "Hora del último mensaje enviado",
+ "totalMessages": "Mensajes totales enviados",
+ "changeDateRange": "Cambiar rango de fechas",
+ "doNotShowAgain": "No mostrar de nuevo.",
+ "l1SpanAndGrammarTitle": "Fuera del idioma de destino",
+ "l1SpanAndGrammarDesc": "Esto podría estar en su idioma base o podría ser un error gramatical.",
+ "allCorrect": "¡Así es como lo diría yo! ¡Muy bien!",
+ "newWayAllGood": "Yo no lo habría dicho así, ¡pero está bien!",
+ "othersAreBetter": "Hm, creo que deberías decirlo de esta manera.",
+ "greenFeedback": "¡Eso es lo que yo diría!",
+ "yellowFeedback": "Hm, ¡probablemente pueda hacer que eso funcione! Para usar esta palabra, simplemente haga clic en ella nuevamente.",
+ "redFeedback": "No creo que sea correcto, ¡pero puede intentarlo!",
+ "customInputFeedbackChoice": "Lo escribiste. ¡Bien!",
+ "almostPerfect": "¡Eso parece correcto! Esto es lo que yo hubiera dicho.",
+ "prettyGood": "¡Bastante bien! Esto es lo que yo hubiera dicho.",
+ "letMeThink": "Hmm, ¡vamos a ver cómo le fue!",
+ "clickMessageTitle": "¡Seleccione mensajes para obtener ayuda con el idioma!",
+ "clickMessageBody": "Los mensajes siempre se muestran en su idioma de destino, ¡pero puede seleccionarlos para acceder a definiciones y traducciones!",
+ "understandingMessagesTitle": "¡Definiciones y traducciones!",
+ "understandingMessagesBody": "Haga clic en las palabras subrayadas para ver las definiciones. Traduzca con 'opciones de mensajes' (arriba a la derecha).",
+ "allDone": "¡Listo!",
+ "vocab": "Vocabulario",
+ "low": "Tenemos evidencia de que el usuario no entiende estas palabras.",
+ "medium": "Esta palabra ha sido utilizada. No está claro si la palabra se entiende completamente o no.",
+ "high": "Tenemos evidencia de que el usuario entiende estas palabras.",
+ "unknownProficiency": "Esta palabra no se ha utilizado en Pangea Chat.",
+ "generateVocabulary": "Generar vocabulario basado en el título y la descripción",
+ "generatePrompts": "Generar preguntas basado en el título y la descripción",
+ "toggleImmersionMode": "Modo de inmersión",
+ "toggleImmersionModeDesc": "Cuando está habilitado, todos los mensajes se muestran en su idioma de destino y puede hacer clic en el mensaje para acceder a definiciones y traducciones.",
+ "subscribe": "Subscríbase",
+ "getAccess": "Activar herramientas",
+ "subscriptionDesc": "¡Enviar y recibir mensajes es gratis! Suscríbase para aceder a la traducción interactiva, la revisión gramatical y el análisis de aprendizaje.",
+ "subscriptionManagement": "Manejar subscripción",
+ "currentSubscription": "Subscripción actual",
+ "changeSubscription": "Cambiar su subscripción",
+ "cancelSubscription": "Cancelar su subscripción",
+ "selectYourPlan": "Escoja su plan",
+ "subsciptionPlatformTooltip": "Inicie sesión en su dispositivo original para administrar su plan de suscripción.",
+ "paymentMethod": "Método de pago",
+ "paymentHistory": "Historial de pago",
+ "emptyChatDownloadWarning": "No se puede descargar el chat vacío",
+ "appUpdateAvailable": "Actualización disponible",
+ "update": "Actualizar",
+ "updateDesc": "Ahora puede actualizar esta aplicación de {localVersion} a {storeVersion}",
+ "@updateDesc": {
+ "type": "text",
+ "placeholders": {
+ "storeVersion": {},
+ "localVersion": {}
+ }
+ },
+ "maybeLater": "Quizás más tarde",
+ "mainMenu": "Menú Principal",
+ "bubbleSize": "Tamaño de burbuja",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "gaTooltip": "Uso de L2 con asistencia gramatical",
+ "taTooltip": "Uso de L2 con asistencia de traducción",
+ "waTooltip": "Uso de L2 sin asistencia",
+ "unTooltip": "Otra",
+ "interactiveGrammarSliderHeader": "Asistencia gramatical",
+ "allRooms": "Todos los chats grupales",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorDisableIT": "La asistencia de traducción está deshabilitada.",
+ "errorDisableIGC": "La asistencia gramatical está deshabilitada.",
+ "errorDisableLanguageAssistance": "La asistencia tanto de traducción como de gramática está deshabilitada.",
+ "errorDisableITUserDesc": "Haga clic aquí para actualizar la configuración de asistencia de traducción.",
+ "errorDisableIGCUserDesc": "Haga clic aquí para actualizar la configuración de asistencia gramatical.",
+ "errorDisableLanguageAssistanceUserDesc": "Haga clic aquí para actualizar la asistencia de traducción y de gramática.",
+ "itIsDisabled": "La asistencia de traducción está deshabilitada.",
+ "igcIsDisabled": "La asistencia gramatical está deshabilitada.",
+ "goToLearningSettings": "Vaya a Ajustes de aprendizaje.",
+ "learningSettings": "Ajustes de aprendizaje",
+ "report": "Reportar",
+ "reportErrorDescription": "Oh, no. Algo salió mal. Por favor, inténtelo de nuevo más tarde. Si lo desea, puede reportar el error a los desarrolladores.",
+ "clearAll": "¿Borrar todas las palabras?",
+ "jump": "Saltar",
+ "openLinkInBrowser": "Abrir enlace en el navegador.",
+ "jumpToLastReadMessage": "Saltar al último mensaje leído.",
+ "readUpToHere": "Leído hasta aquí.",
+ "newSpaceDescription": "Espacios le permite consolidar sus chats y crear comunidades privadas o públicas.",
+ "encryptThisChat": "Encriptar este chat",
+ "endToEndEncryption": "Encriptado de fin a fin",
+ "disableEncryptionWarning": "Por razones de seguridad, no puede deshabilitar el cifrado en un chat, donde se ha habilitado antes.",
+ "sorryThatsNotPossible": "Discupla... eso no es posible",
+ "deviceKeys": "Claves del dispositivo:",
+ "letsStart": "¡Empecemos!",
+ "enterInviteLinkOrMatrixId": "Ingrese el enlace de invitación o ID de Matrix...",
+ "reopenChat": "Reabrir chat",
+ "noBackupWarning": "¡No olvida su contraseña!",
+ "noOtherDevicesFound": "No se encontraron otros dispositivos",
+ "fileIsTooBigForServer": "El servidor informa que el archivo es demasiado grande para enviarlo.",
+ "fileHasBeenSavedAt": "Se ha guardado el archivo en {path}",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "updateAvailable": "Actualización de FluffyChat disponible",
+ "@updateAvailable": {},
+ "updateNow": "Comenzar actualización en segundo plano.",
+ "@updateNow": {},
+ "toggleIGC": "Asistencia Gramatical",
+ "@toggleIGC": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iAgreeToThe": "Acepto los ",
+ "@iAgreeToThe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "termsAndConditions": "Términos y condiciones",
+ "@termsAndConditions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "andCertifyIAmAtLeast13YearsOfAge": " y certifico que tengo al menos 13 años.",
+ "@andCertifyIAmAtLeast13YearsOfAge": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error502504Title": "¡Vaya! Hay muchos estudiantes conectados.",
+ "@error502504Title": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error502504Desc": "Las herramientas de assistencia gramatical y de traducción pueden ser lentas o no estar disponibles mientras los bots de Pangea se ponen al día.",
+ "@error502504Desc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error404Title": "¡Error de traducción!",
+ "@error404Title": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "error404Desc": "Pangea Bot no está seguro de cómo traducir eso.",
+ "@error404Desc": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sorryNoResults": "¡Discupla! No hay resultados.",
+ "@sorryNoResults": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "Usuario",
+ "@user": {},
+ "custom": "personalizado",
+ "@custom": {},
+ "foregroundServiceRunning": "Esta notificación aparece cuando se está ejecutando el servicio en primer plano.",
+ "@foregroundServiceRunning": {},
+ "screenSharingTitle": "compartiendo pantalla",
+ "@screenSharingTitle": {},
+ "screenSharingDetail": "Está compartiendo su pantalla en FluffyChat.",
+ "@screenSharingDetail": {},
+ "callingPermissions": "Permisos de llamada",
+ "@callingPermissions": {},
+ "callingAccount": "Llamando cuenta",
+ "@callingAccount": {},
+ "callingAccountDetails": "Permite que FluffyChat use la aplicación de marcación nativa de Android.",
+ "@callingAccountDetails": {},
+ "appearOnTop": "Aparecer arriba",
+ "@appearOnTop": {},
+ "appearOnTopDetails": "Permite que la aplicación aparezca en la parte superior (no es necesario si ya tiene configurado Fluffychat como cuenta de llamadas).",
+ "@appearOnTopDetails": {},
+ "otherCallingPermissions": "Micrófono, cámara y otros permisos de FluffyChat",
+ "@otherCallingPermissions": {},
+ "whyIsThisMessageEncrypted": "¿Por qué este mensaje no se puede leer?",
+ "@whyIsThisMessageEncrypted": {},
+ "noKeyForThisMessage": "Esto puede suceder si el mensaje se envió antes de que haya iniciado sesión en su cuenta en este dispositivo.\n\nTambién es posible que el remitente haya bloqueado su dispositivo o que algo haya fallado con la conexión a Internet.\n\n¿Puede leer el mensaje en otra sesión? ¡Entonces puede transferir el mensaje desde allí! Vaya a Configuración > Dispositivos y asegúrese de que sus dispositivos se hayan verificado entre sí. La próxima vez que abra la sala y ambas sesiones estén en primer plano, las claves se transmitirán automáticamente.\n\n¿No desea perder las claves al cerrar sesión o al cambiar de dispositivo? Asegúrese de haber habilitado la copia de seguridad del chat en la configuración.",
+ "@noKeyForThisMessage": {},
+ "newGroup": "Nuevo chat",
"@newGroup": {},
- "widgetJitsi": "Jitsi Meet",
- "@widgetJitsi": {},
+ "enterRoom": "Unirse al chat",
+ "@enterRoom": {},
+ "numChats": "{number} chats",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "numberRoomMembers": "{number} miembros",
+ "@numberRoomMembers": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "hideUnimportantStateEvents": "Ocultar eventos de estado sin importancia",
+ "wasDirectChatDisplayName": "Chat vacío (era {oldDisplayName})",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "startFirstChat": "Empezar su primer chat",
+ "nextAccount": "Próxima cuenta",
+ "@nextAccount": {},
"previousAccount": "Cuenta anterior",
"@previousAccount": {},
- "users": "Usuarios",
- "@users": {},
- "stories": "Historias",
- "@stories": {},
- "youInvitedBy": "📩 Has sido invitado por {user}",
+ "editWidgets": "Editar artilugios",
+ "@editWidgets": {},
+ "addWidget": "Agregar artilugio",
+ "@addWidget": {},
+ "widgetVideo": "Video",
+ "@widgetVideo": {},
+ "widgetEtherpad": "Nota de texto",
+ "@widgetEtherpad": {},
+ "widgetJitsi": "Jitsi Meet",
+ "@widgetJitsi": {},
+ "widgetCustom": "Personalizado",
+ "@widgetCustom": {},
+ "widgetName": "Nombre",
+ "@widgetName": {},
+ "widgetUrlError": "Esto no es un enlace válido.",
+ "@widgetUrlError": {},
+ "widgetNameError": "Proporcione un nombre para mostrar.",
+ "@widgetNameError": {},
+ "errorAddingWidget": "Error an agregar el artilugio.",
+ "@errorAddingWidget": {},
+ "youRejectedTheInvitation": "Rechazó la invitación.",
+ "@youRejectedTheInvitation": {},
+ "youJoinedTheChat": "Se unió al chat.",
+ "@youJoinedTheChat": {},
+ "youAcceptedTheInvitation": "👍 Aceptó la invitación.",
+ "@youAcceptedTheInvitation": {},
+ "youBannedUser": "Bloqueó {user}",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "You have withdrawn the invitation for {user}",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youInvitedBy": "📩 Ha sido invitado por {user}",
"@youInvitedBy": {
"placeholders": {
"user": {}
@@ -2173,86 +3521,1143 @@
"commandHint_cuddle": "Mandar una carantoña",
"@commandHint_cuddle": {},
"supposedMxid": "Esto debería ser {mxid}",
- "@supposedMxid": {
- "type": "text",
+ "youInvitedUser": "📩 Invitó {user}",
+ "@youInvitedUser": {
"placeholders": {
- "mxid": {}
+ "user": {}
}
},
- "importFromZipFile": "Importar de un archivo .zip",
- "@importFromZipFile": {},
- "updateAvailable": "Actualización para FluffyChat disponible!",
- "@updateAvailable": {},
- "exportEmotePack": "Exportar paquete de emotes como .zip",
- "@exportEmotePack": {},
- "savedEmotePack": "Paquete de emotes guardado en {path}!",
- "@savedEmotePack": {
- "type": "text",
+ "youKicked": "👞 Eliminó {user}",
+ "@youKicked": {
"placeholders": {
- "path": {}
+ "user": {}
}
},
- "importZipFile": "Importar archivo .zip",
- "@importZipFile": {},
- "addChatDescription": "Añadir una descripción del chat",
- "@addChatDescription": {},
- "sendTypingNotifications": "Enviar notificaciones \"está escribiendo\"",
- "@sendTypingNotifications": {},
- "importEmojis": "Importar emojis",
- "@importEmojis": {},
- "confirmMatrixId": "Por favor confirma tu Matrix ID para borrar tu cuenta.",
- "@confirmMatrixId": {},
- "notAnImage": "El archivo no es una imagen.",
- "@notAnImage": {},
- "commandHint_hug": "Mandar un abrazo",
- "@commandHint_hug": {},
- "importNow": "Importar ahora",
- "@importNow": {},
- "hugContent": "{senderName} te abraza",
- "@hugContent": {
- "type": "text",
+ "youKickedAndBanned": "🙅 Eliminó y bloqueó {user}",
+ "@youKickedAndBanned": {
"placeholders": {
- "senderName": {}
+ "user": {}
}
},
- "otherCallingPermissions": "Micrófono, cámara y otros permisos de FluffyChat",
- "@otherCallingPermissions": {},
- "emailOrUsername": "Correo electrónico o nombre de usuario",
- "@emailOrUsername": {},
+ "youUnbannedUser": "Desbloqueó {user}",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "noEmailWarning": "Por favor, introduzca una dirección de correo electrónico válida. De lo contrario, no podrá restablecer su contraseña. Si no quiere, toque de nuevo el botón para continuar.",
+ "@noEmailWarning": {},
+ "stories": "Historias",
+ "@stories": {},
+ "users": "Usuarios",
+ "@users": {},
+ "unlockOldMessages": "Desbloquear mensajes viejos.",
+ "@unlockOldMessages": {},
+ "storeInSecureStorageDescription": "Guarde la clave de recuperación en el almacenamiento seguro de este dispositivo.",
+ "@storeInSecureStorageDescription": {},
+ "saveKeyManuallyDescription": "Guarde esta clave manualmente activando el cuadro de diálogo compartido del sistema o el portapapeles.",
+ "@saveKeyManuallyDescription": {},
+ "storeInAndroidKeystore": "Guardar en Android KeyStore",
+ "@storeInAndroidKeystore": {},
+ "storeInAppleKeyChain": "Guardar en Apple Acceso de Llaveros",
+ "@storeInAppleKeyChain": {},
+ "storeSecurlyOnThisDevice": "Almacenar de forma segura en este dispositivo",
+ "@storeSecurlyOnThisDevice": {},
"countFiles": "{count} archivos",
"@countFiles": {
"placeholders": {
"count": {}
}
},
- "discover": "Descubrir",
- "@discover": {
- "type": "text",
- "placeholders": {}
- },
- "reportUser": "Reportar usuario",
- "@reportUser": {},
- "voiceCall": "Llamada de voz",
- "@voiceCall": {},
- "reactedWith": "{sender} reaccionó con {reaction}",
- "@reactedWith": {
+ "confirmMatrixId": "Confirme su ID de Matrix para eliminar su cuenta.",
+ "@confirmMatrixId": {},
+ "supposedMxid": "Esto debe ser {mxid}",
+ "@supposedMxid": {
"type": "text",
"placeholders": {
- "sender": {},
- "reaction": {}
+ "mxid": {}
}
},
- "markAsRead": "Marcar como leído",
- "@markAsRead": {},
- "widgetName": "Nombre",
- "@widgetName": {},
- "updateNow": "Empezar actualización en segundo plano",
- "@updateNow": {},
- "bubbleSize": "Tamaño de la burbuja",
- "@bubbleSize": {
+ "commandHint_googly": "Enviar unos ojos saltones.",
+ "commandHint_cuddle": "Enviar un arrunche.",
+ "commandHint_hug": "Enviar un abrazo.",
+ "googlyEyesContent": "{senderName} le manda ojos saltones.",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "cuddleContent": "{senderName} se arruncha con usted.",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "hugContent": "{senderName} le abraza.",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "pleaseEnterRecoveryKey": "Por favor ingrese su clave de recuperación:",
+ "@pleaseEnterRecoveryKey": {},
+ "commandHint_markasdm": "Marcar como chat de mensajes directos",
+ "@commandHint_markasdm": {},
+ "commandHint_markasgroup": "Marcar como grupal",
+ "@commandHint_markasgroup": {},
+ "recoveryKey": "Clave de recuperación",
+ "@recoveryKey": {},
+ "recoveryKeyLost": "¿Clave de recuperación perdida?",
+ "@recoveryKeyLost": {},
+ "separateChatTypes": "Separar chats privados y grupales",
+ "@separateChatTypes": {
"type": "text",
"placeholders": {}
},
+ "commandHint_create": "Crear un chat grupal vacío\nUse --no-encryption para deshabilitar el cifrado",
"replace": "Reemplazar",
- "@replace": {}
+ "@replace": {},
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "letsStart": "",
+ "@letsStart": {},
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "openChat": "",
+ "@openChat": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "commandHint_dm": "Empezar un chat privado\nUse --no-encryption para deshabilitar el cifrado",
+ "user": "",
+ "@user": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "enterSpace": "",
+ "@enterSpace": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addWidget": "",
+ "@addWidget": {},
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "dehydrate": "",
+ "@dehydrate": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "dehydrate": "Exportar sesión y borrar dispositivo",
+ "@dehydrate": {},
+ "dehydrateWarning": "Esta acción no se puede deshacer. Asegúrese de almacenar de forma segura el archivo de copia de seguridad.",
+ "@dehydrateWarning": {},
+ "dehydrateTor": "TOR Usuarios: Exportar sesión",
+ "@dehydrateTor": {},
+ "dehydrateTorLong": "Para TOR usuarios, se recomienda exportar la sesión antes de cerrar la ventana.",
+ "@dehydrateTorLong": {},
+ "hydrateTor": "TOR Usuarios: Importar exportación de sesión",
+ "@hydrateTor": {},
+ "hydrateTorLong": "¿Exportó su sesión la última vez en TOR? Impórtelo rápidamente y siga chateando.",
+ "@hydrateTorLong": {},
+ "hydrate": "Restaurar desde archivo de copia de seguridad",
+ "@hydrate": {},
+ "reportUser": "Reportar usuario",
+ "@reportUser": {},
+ "dismiss": "Descartar",
+ "@dismiss": {},
+ "matrixWidgets": "Artilugio de Matrix",
+ "@matrixWidgets": {},
+ "storyPrivacyWarning": "Tenga en cuenta que las personas pueden verse y comunicarse entre sí en su historia. Sus historias estarán visibles durante 24 horas, pero no hay garantía de que se eliminen de todos los dispositivos y servidores.",
+ "@storyPrivacyWarning": {},
+ "iUnderstand": "Entiendo",
+ "openChat": "Abrir Chat",
+ "markAsRead": "Marcar como leído",
+ "pleaseEnterRecoveryKeyDescription": "Para desbloquear sus mensajes antiguos, ingrese su clave de recuperación que se generó en una sesión anterior. Su clave de recuperación NO es su contraseña.",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "addToStory": "Agregar a historia",
+ "@addToStory": {},
+ "whoCanSeeMyStories": "¿Quién puede ver mis historias?",
+ "unsubscribeStories": "Darse de baja de historias",
+ "thisUserHasNotPostedAnythingYet": "Este usuario aún no ha publicado nada en su historia.",
+ "yourStory": "Su historia",
+ "itToggleDescription": "Esta herramienta de aprendizaje identificará palabras en su idioma base y lo ayudará a traducirlas a su idioma a aprender. Aunque es raro, la AI puede cometer errores de traducción de vez en cuando.",
+ "igcToggleDescription": "Esta herramienta de aprendizaje identificará errores comunes de ortografía, gramática y puntuación en su mensaje y sugerirá correcciones. Aunque es raro, la AI puede cometer errores de corrección de vez en cuando.",
+ "sendOnEnterDescription": "Deshabilite esta función para poder agregar espacios de línea en los mensajes. Cuando está deshabilitada en la versión web, puede presionar Shift + Intro para comenzar una nueva línea. Cuando está deshabilitada en las aplicaciones móviles, puede presionar solo Intro para comenzar una una nueva línea.",
+ "definitionsToolName": "Definiciones",
+ "messageTranslationsToolName": "Traducciones de mensajes",
+ "definitionsToolDescription": "Cuando está habilitado, se puede hacer clic en las palabras subrayadas en azul para obtener definiciones. Haga clic en los mensajes para acceder a las definiciones.",
+ "translationsToolDescrption": "Cuando esté habilitado, haga clic en un mensaje y en el icono de traducción para ver un mensaje en su idioma base.",
+ "originalMessage": "Mensaje original",
+ "sentMessage": "Mensaje enviado",
+ "useType": "Tipo de Uso",
+ "notAvailable": "No disponible",
+ "classExchanges": "Intercambios",
+ "kickAllStudents": "Patear a todos los estudiantes",
+ "kickAllStudentsConfirmation": "¿Estás seguro de que quieres echar a todos los estudiantes?",
+ "inviteAllStudents": "Invitar a todos los estudiantes",
+ "inviteAllStudentsConfirmation": "¿Estás seguro de que quieres invitar a todos los estudiantes?",
+ "whoCanSeeMyStoriesDesc": "Ten en cuenta que las personas pueden verse y ponerse en contacto en tu historia.",
+ "taAndGaTooltip": "Uso de la L2 con ayuda de traducción y asistencia gramatical.",
+ "storyFrom": "Historia de {date}: \n{body}",
+ "createNewSpace": "Crear una sala de intercambio",
+ "enterASpacepName": "Introduzca un nombre",
+ "oneToOneChatsWithinClass": "Chats privados dentro de la sala",
+ "oneToOneChatsWithinClassDesc": "Si permite chats privados, los alumnos pueden iniciar y utilizar chats privados con otros participantes de la sala. De lo contrario, sólo podrán participar en chats de grupo.",
+ "subscriptionManagementUnavailable": "Gestión de suscripciones no disponible",
+ "redeemPromoCode": "Canjear código promocional",
+ "enterPromoCode": "Introduzca el código promocional",
+ "downloadTxtFile": "Descargar archivo de texto",
+ "downloadCSVFile": "Descargar archivo CSV",
+ "promotionalSubscriptionDesc": "Su suscripción actual es promocional. Envíe un mensaje a support@pangea.chat para cambiar su suscripción.",
+ "originalSubscriptionPlatform": "Suscripción adquirida a través de",
+ "oneWeekTrial": "Una semana de prueba",
+ "abDisplayName": "abkhaz",
+ "aaDisplayName": "afar",
+ "afDisplayName": "africaans",
+ "akDisplayName": "akan",
+ "sqDisplayName": "albanés",
+ "amDisplayName": "amárico",
+ "arDisplayName": "arábica",
+ "anDisplayName": "aragonese",
+ "hyDisplayName": "armenio",
+ "asDisplayName": "assamese",
+ "avDisplayName": "avaric",
+ "aeDisplayName": "avéstico",
+ "ayDisplayName": "aymara",
+ "azDisplayName": "azerbaiyano",
+ "bmDisplayName": "bambara",
+ "baDisplayName": "bashkir",
+ "euDisplayName": "vasco",
+ "beDisplayName": "bielorruso",
+ "bnDisplayName": "bengalí",
+ "bhDisplayName": "bihari",
+ "biDisplayName": "bislama",
+ "bsDisplayName": "bosnio",
+ "brDisplayName": "bretón",
+ "bgDisplayName": "búlgaro",
+ "myDisplayName": "birmano",
+ "caDisplayName": "catalán",
+ "chDisplayName": "chamorro",
+ "ceDisplayName": "chechen",
+ "nyDisplayName": "chichewa",
+ "zhDisplayName": "chino",
+ "cvDisplayName": "chuvasio",
+ "kwDisplayName": "de Cornualles",
+ "coDisplayName": "corso",
+ "crDisplayName": "cree",
+ "hrDisplayName": "croata",
+ "csDisplayName": "checo",
+ "daDisplayName": "danés",
+ "dvDisplayName": "divehi; dhivehi; maldivian;",
+ "nlDisplayName": "holandés",
+ "enDisplayName": "inglés",
+ "eoDisplayName": "esperanto",
+ "etDisplayName": "estonio",
+ "eeDisplayName": "ewe",
+ "foDisplayName": "feroés",
+ "fjDisplayName": "fijian",
+ "fiDisplayName": "finlandés",
+ "frDisplayName": "francés",
+ "ffDisplayName": "fula; fulah; pulaar; pular",
+ "glDisplayName": "gallego",
+ "kaDisplayName": "georgiano",
+ "deDisplayName": "alemán",
+ "elDisplayName": "griego",
+ "gnDisplayName": "guaraní",
+ "guDisplayName": "guyaratí",
+ "htDisplayName": "haitiano",
+ "haDisplayName": "hausa",
+ "heDisplayName": "hebreo (moderno)",
+ "hzDisplayName": "herero",
+ "hiDisplayName": "hindi",
+ "hoDisplayName": "hiri motu",
+ "huDisplayName": "húngaro",
+ "iaDisplayName": "interlingua",
+ "idDisplayName": "indonesio",
+ "ieDisplayName": "interlingüismo",
+ "gaDisplayName": "irlandesa",
+ "igDisplayName": "igbo",
+ "ikDisplayName": "inupiaq",
+ "ioDisplayName": "ido",
+ "isDisplayName": "islandés",
+ "itDisplayName": "italiano",
+ "iuDisplayName": "inuktitut",
+ "jaDisplayName": "japonés",
+ "jvDisplayName": "javanés",
+ "klDisplayName": "kalaallisut, greenlandic",
+ "knDisplayName": "kannada",
+ "krDisplayName": "kanuri",
+ "ksDisplayName": "kashmiri",
+ "kkDisplayName": "kazajo",
+ "kmDisplayName": "jemer",
+ "kiDisplayName": "kikuyú",
+ "rwDisplayName": "kinyarwanda",
+ "kyDisplayName": "kirguís",
+ "kvDisplayName": "komi",
+ "kgDisplayName": "kongo",
+ "koDisplayName": "coreano",
+ "kuDisplayName": "kurdo",
+ "kjDisplayName": "kwanyama, kuanyama",
+ "laDisplayName": "latín",
+ "lbDisplayName": "luxemburgués",
+ "lgDisplayName": "luganda",
+ "liDisplayName": "limburgués",
+ "lnDisplayName": "lingala",
+ "loDisplayName": "laosiano",
+ "ltDisplayName": "lituano",
+ "luDisplayName": "luba-katanga",
+ "lvDisplayName": "letón",
+ "gvDisplayName": "manx",
+ "mkDisplayName": "macedónio",
+ "mgDisplayName": "madagascarí",
+ "msDisplayName": "malayo",
+ "mlDisplayName": "malayalam",
+ "mtDisplayName": "maltés",
+ "miDisplayName": "maorí",
+ "mrDisplayName": "marathi (maräthi)",
+ "mhDisplayName": "marshalés",
+ "mnDisplayName": "mongol",
+ "naDisplayName": "nauru",
+ "nvDisplayName": "navajo, navaho",
+ "nbDisplayName": "norwegian bokmål",
+ "ndDisplayName": "north ndebele",
+ "neDisplayName": "nepalí",
+ "ngDisplayName": "ndonga",
+ "nnDisplayName": "norwegian nynorsk",
+ "noDisplayName": "noruego",
+ "iiDisplayName": "nuosu",
+ "nrDisplayName": "ndebele del sur",
+ "ocDisplayName": "occitan",
+ "ojDisplayName": "ojibwe, ojibwa",
+ "cuDisplayName": "antiguo eslavo eclesiástico",
+ "omDisplayName": "oromo",
+ "orDisplayName": "oriya",
+ "osDisplayName": "ossetian, ossetic",
+ "paDisplayName": "panyabí",
+ "piDisplayName": "pāli",
+ "faDisplayName": "persa",
+ "plDisplayName": "polaco",
+ "psDisplayName": "pastún",
+ "ptDisplayName": "portugués",
+ "quDisplayName": "quechua",
+ "rmDisplayName": "romansh",
+ "rnDisplayName": "kirundi",
+ "roDisplayName": "rumano",
+ "ruDisplayName": "ruso",
+ "saDisplayName": "sanskrit (saṁskṛta)",
+ "scDisplayName": "sardo",
+ "sdDisplayName": "sindhi",
+ "seDisplayName": "sami del norte",
+ "smDisplayName": "samoano",
+ "sgDisplayName": "sango",
+ "srDisplayName": "serbio",
+ "gdDisplayName": "gaélico escocés",
+ "snDisplayName": "shona",
+ "siDisplayName": "cingalés",
+ "skDisplayName": "eslovaco",
+ "slDisplayName": "esloveno",
+ "soDisplayName": "somalí",
+ "stDisplayName": "sotho del sur",
+ "esDisplayName": "español",
+ "suDisplayName": "sundanés",
+ "swDisplayName": "swahili",
+ "ssDisplayName": "swati",
+ "svDisplayName": "sueco",
+ "taDisplayName": "tamil",
+ "teDisplayName": "telugu",
+ "tgDisplayName": "tayiko",
+ "thDisplayName": "tailandés",
+ "tiDisplayName": "tigrinya",
+ "boDisplayName": "estándar tibetano",
+ "tkDisplayName": "turkmeno",
+ "tlDisplayName": "tagalo",
+ "tnDisplayName": "tswana",
+ "toDisplayName": "tonga (Islas Tonga)",
+ "trDisplayName": "turco",
+ "tsDisplayName": "tsonga",
+ "ttDisplayName": "tártaro",
+ "twDisplayName": "twi",
+ "tyDisplayName": "tahitian",
+ "ugDisplayName": "uigur",
+ "ukDisplayName": "ucranio",
+ "urDisplayName": "urdu",
+ "uzDisplayName": "uzbeco",
+ "veDisplayName": "venda",
+ "viDisplayName": "vietnamita",
+ "voDisplayName": "volapük",
+ "waDisplayName": "walloon",
+ "cyDisplayName": "galés",
+ "woDisplayName": "wolof",
+ "fyDisplayName": "frisón occidental",
+ "xhDisplayName": "xhosa",
+ "yiDisplayName": "yídish",
+ "yoDisplayName": "yoruba",
+ "zaDisplayName": "zhuang, chuang",
+ "unkDisplayName": "unknown",
+ "zuDisplayName": "zulú",
+ "hawDisplayName": "hawaiano",
+ "hmnDisplayName": "hmong",
+ "multiDisplayName": "multi",
+ "cebDisplayName": "cebuano",
+ "dzDisplayName": "dzongkha",
+ "iwDisplayName": "hebreo",
+ "jwDisplayName": "javanés",
+ "moDisplayName": "moldavian",
+ "shDisplayName": "serbo-croatian",
+ "wwCountryDisplayName": "Mundial",
+ "afCountryDisplayName": "Afganistán",
+ "axCountryDisplayName": "Islas Åland",
+ "alCountryDisplayName": "Albania",
+ "dzCountryDisplayName": "Argelia",
+ "asCountryDisplayName": "Samoa Americana",
+ "adCountryDisplayName": "Andorra",
+ "aoCountryDisplayName": "Angola",
+ "aiCountryDisplayName": "Anguila",
+ "agCountryDisplayName": "Antigua y Barbuda",
+ "arCountryDisplayName": "Argentina",
+ "amCountryDisplayName": "Armenia",
+ "awCountryDisplayName": "Aruba",
+ "acCountryDisplayName": "Isla de la Ascensión",
+ "auCountryDisplayName": "Australia",
+ "atCountryDisplayName": "Austria",
+ "azCountryDisplayName": "Azerbaiyán",
+ "bsCountryDisplayName": "Bahamas",
+ "bhCountryDisplayName": "Baréin",
+ "bdCountryDisplayName": "Bangladés",
+ "bbCountryDisplayName": "Barbados",
+ "byCountryDisplayName": "Bielorrusia",
+ "beCountryDisplayName": "Bélgica",
+ "bzCountryDisplayName": "Belice",
+ "bjCountryDisplayName": "Benín",
+ "bmCountryDisplayName": "Bermudas",
+ "btCountryDisplayName": "Bután",
+ "boCountryDisplayName": "Bolivia",
+ "baCountryDisplayName": "Bosnia y Herzegovina",
+ "bwCountryDisplayName": "Botsuana",
+ "brCountryDisplayName": "Brasil",
+ "ioCountryDisplayName": "Territorio Británico del Océano Índico",
+ "vgCountryDisplayName": "Islas Vírgenes Británicas",
+ "bnCountryDisplayName": "Brunéi",
+ "bgCountryDisplayName": "Bulgaria",
+ "bfCountryDisplayName": "Burkina Faso",
+ "biCountryDisplayName": "Burundi",
+ "khCountryDisplayName": "Camboya",
+ "cmCountryDisplayName": "Camerún",
+ "caCountryDisplayName": "Canadá",
+ "cvCountryDisplayName": "Cabo Verde",
+ "bqCountryDisplayName": "Países Bajos Caribeños",
+ "kyCountryDisplayName": "Islas Caimán",
+ "cfCountryDisplayName": "República Centroafricana",
+ "tdCountryDisplayName": "Chad",
+ "clCountryDisplayName": "Chile",
+ "cnCountryDisplayName": "China",
+ "cxCountryDisplayName": "Isla de Navidad",
+ "ccCountryDisplayName": "Islas Cocos (Keeling)",
+ "coCountryDisplayName": "Colombia",
+ "kmCountryDisplayName": "Comoras",
+ "cdCountryDisplayName": "República Democrática del Congo",
+ "cgCountryDisplayName": "República del Congo",
+ "ckCountryDisplayName": "Islas Cook",
+ "crCountryDisplayName": "Costa Rica",
+ "ciCountryDisplayName": "Costa de Marfil",
+ "hrCountryDisplayName": "Croacia",
+ "cuCountryDisplayName": "Cuba",
+ "cwCountryDisplayName": "Curazao",
+ "cyCountryDisplayName": "Chipre",
+ "czCountryDisplayName": "República Checa",
+ "dkCountryDisplayName": "Dinamarca",
+ "djCountryDisplayName": "Yibuti",
+ "dmCountryDisplayName": "Dominica",
+ "doCountryDisplayName": "República Dominicana",
+ "tlCountryDisplayName": "Timor Oriental",
+ "ecCountryDisplayName": "Ecuador",
+ "egCountryDisplayName": "Egipto",
+ "svCountryDisplayName": "El Salvador",
+ "gqCountryDisplayName": "Guinea Ecuatorial",
+ "erCountryDisplayName": "Eritrea",
+ "eeCountryDisplayName": "Estonia",
+ "szCountryDisplayName": "Esuatini",
+ "etCountryDisplayName": "Etiopía",
+ "fkCountryDisplayName": "Islas Malvinas",
+ "foCountryDisplayName": "Islas Feroe",
+ "fjCountryDisplayName": "Fiyi",
+ "fiCountryDisplayName": "Finlandia",
+ "frCountryDisplayName": "Francia",
+ "gfCountryDisplayName": "Guayana Francesa",
+ "pfCountryDisplayName": "Polinesia Francesa",
+ "gaCountryDisplayName": "Gabón",
+ "gmCountryDisplayName": "Gambia",
+ "geCountryDisplayName": "Georgia",
+ "deCountryDisplayName": "Alemania",
+ "ghCountryDisplayName": "Ghana",
+ "giCountryDisplayName": "Gibraltar",
+ "grCountryDisplayName": "Grecia",
+ "glCountryDisplayName": "Groenlandia",
+ "gdCountryDisplayName": "Granada",
+ "gpCountryDisplayName": "Guadalupe",
+ "guCountryDisplayName": "Guam",
+ "gtCountryDisplayName": "Guatemala",
+ "ggCountryDisplayName": "Guernsey",
+ "gnCountryDisplayName": "Guinea Conakry",
+ "gwCountryDisplayName": "Guinea-Bissau",
+ "gyCountryDisplayName": "Guyana",
+ "htCountryDisplayName": "Haití",
+ "hmCountryDisplayName": "Islas Heard y McDonald",
+ "hnCountryDisplayName": "Honduras",
+ "hkCountryDisplayName": "Hong Kong",
+ "huCountryDisplayName": "Hungría",
+ "isCountryDisplayName": "Islandia",
+ "inCountryDisplayName": "India",
+ "idCountryDisplayName": "Indonesia",
+ "irCountryDisplayName": "Irán",
+ "iqCountryDisplayName": "Irak",
+ "ieCountryDisplayName": "Irlanda",
+ "imCountryDisplayName": "Isla de Man",
+ "ilCountryDisplayName": "Israel",
+ "itCountryDisplayName": "Italia",
+ "jmCountryDisplayName": "Jamaica",
+ "jpCountryDisplayName": "Japón",
+ "jeCountryDisplayName": "Jersey",
+ "joCountryDisplayName": "Jordania",
+ "kzCountryDisplayName": "Kazajistán",
+ "keCountryDisplayName": "Kenia",
+ "kiCountryDisplayName": "Kiribati",
+ "xkCountryDisplayName": "Kosovo",
+ "kwCountryDisplayName": "Kuwait",
+ "kgCountryDisplayName": "Kirguistán",
+ "laCountryDisplayName": "Laos",
+ "lvCountryDisplayName": "Letonia",
+ "lbCountryDisplayName": "Líbano",
+ "lsCountryDisplayName": "Lesoto",
+ "lrCountryDisplayName": "Liberia",
+ "lyCountryDisplayName": "Libia",
+ "liCountryDisplayName": "Liechtenstein",
+ "ltCountryDisplayName": "Lituania",
+ "luCountryDisplayName": "Luxemburgo",
+ "moCountryDisplayName": "Macao",
+ "mkCountryDisplayName": "Macedonia",
+ "mgCountryDisplayName": "Madagascar",
+ "mwCountryDisplayName": "Malaui",
+ "myCountryDisplayName": "Malasia",
+ "mvCountryDisplayName": "Maldivas",
+ "mlCountryDisplayName": "Malí",
+ "mtCountryDisplayName": "Malta",
+ "mhCountryDisplayName": "Islas Marshall",
+ "mqCountryDisplayName": "Martinica",
+ "mrCountryDisplayName": "Mauritania",
+ "muCountryDisplayName": "Mauricio",
+ "ytCountryDisplayName": "Mayotte",
+ "mxCountryDisplayName": "México",
+ "fmCountryDisplayName": "Micronesia",
+ "mdCountryDisplayName": "Moldavia",
+ "mcCountryDisplayName": "Mónaco",
+ "mnCountryDisplayName": "Mongolia",
+ "meCountryDisplayName": "Montenegro",
+ "msCountryDisplayName": "Montserrat",
+ "maCountryDisplayName": "Marruecos",
+ "mzCountryDisplayName": "Mozambique",
+ "mmCountryDisplayName": "Myanmar (Birmania)",
+ "naCountryDisplayName": "Namibia",
+ "nrCountryDisplayName": "Nauru",
+ "npCountryDisplayName": "Nepal",
+ "nlCountryDisplayName": "Países Bajos",
+ "ncCountryDisplayName": "Nueva Caledonia",
+ "nzCountryDisplayName": "Nueva Zelanda",
+ "niCountryDisplayName": "Nicaragua",
+ "neCountryDisplayName": "Níger",
+ "ngCountryDisplayName": "Nigeria",
+ "nuCountryDisplayName": "Niue",
+ "nfCountryDisplayName": "Isla Norfolk",
+ "kpCountryDisplayName": "Corea del Norte",
+ "mpCountryDisplayName": "Islas Marianas del Norte",
+ "noCountryDisplayName": "Noruega",
+ "omCountryDisplayName": "Omán",
+ "pkCountryDisplayName": "Pakistán",
+ "pwCountryDisplayName": "Palaos",
+ "psCountryDisplayName": "Territorios Palestinos",
+ "paCountryDisplayName": "Panamá",
+ "pgCountryDisplayName": "Papúa Nueva Guinea",
+ "pyCountryDisplayName": "Paraguay",
+ "peCountryDisplayName": "Perú",
+ "phCountryDisplayName": "Filipinas",
+ "plCountryDisplayName": "Polonia",
+ "ptCountryDisplayName": "Portugal",
+ "prCountryDisplayName": "Puerto Rico",
+ "qaCountryDisplayName": "Catar",
+ "reCountryDisplayName": "Reunión",
+ "roCountryDisplayName": "Rumanía",
+ "ruCountryDisplayName": "Rusia",
+ "rwCountryDisplayName": "Ruanda",
+ "blCountryDisplayName": "San Bartolomé",
+ "shCountryDisplayName": "Santa Elena",
+ "knCountryDisplayName": "San Cristóbal y Nieves",
+ "lcCountryDisplayName": "Santa Lucía",
+ "mfCountryDisplayName": "San Martín",
+ "pmCountryDisplayName": "San Pedro y Miquelón",
+ "vcCountryDisplayName": "San Vicente y las Granadinas",
+ "wsCountryDisplayName": "Samoa",
+ "smCountryDisplayName": "San Marino",
+ "stCountryDisplayName": "Santo Tomé y Príncipe",
+ "saCountryDisplayName": "Arabia Saudita",
+ "snCountryDisplayName": "Senegal",
+ "rsCountryDisplayName": "Serbia",
+ "scCountryDisplayName": "Seychelles",
+ "slCountryDisplayName": "Sierra Leona",
+ "sgCountryDisplayName": "Singapur",
+ "sxCountryDisplayName": "San Martín",
+ "skCountryDisplayName": "Eslovaquia",
+ "siCountryDisplayName": "Eslovenia",
+ "sbCountryDisplayName": "Islas Salomón",
+ "soCountryDisplayName": "Somalia",
+ "zaCountryDisplayName": "Sudáfrica",
+ "gsCountryDisplayName": "Islas Georgia del Sur y Sandwich del Sur",
+ "krCountryDisplayName": "Corea del Sur",
+ "ssCountryDisplayName": "Sudán del Sur",
+ "esCountryDisplayName": "España",
+ "lkCountryDisplayName": "Sri Lanka",
+ "sdCountryDisplayName": "Sudán",
+ "srCountryDisplayName": "Surinam",
+ "sjCountryDisplayName": "Svalbard y Jan Mayen",
+ "seCountryDisplayName": "Suecia",
+ "chCountryDisplayName": "Suiza",
+ "syCountryDisplayName": "Siria",
+ "twCountryDisplayName": "Taiwán",
+ "tjCountryDisplayName": "Tayikistán",
+ "tzCountryDisplayName": "Tanzania",
+ "thCountryDisplayName": "Tailandia",
+ "tgCountryDisplayName": "Togo",
+ "tkCountryDisplayName": "Tokelau",
+ "toCountryDisplayName": "Tonga",
+ "ttCountryDisplayName": "Trinidad y Tobago",
+ "tnCountryDisplayName": "Túnez",
+ "trCountryDisplayName": "Turquía",
+ "tmCountryDisplayName": "Turkmenistán",
+ "tcCountryDisplayName": "Islas Turcas y Caicos",
+ "tvCountryDisplayName": "Tuvalu",
+ "viCountryDisplayName": "Islas Vírgenes de los Estados Unidos",
+ "ugCountryDisplayName": "Uganda",
+ "uaCountryDisplayName": "Ucrania",
+ "aeCountryDisplayName": "Emiratos Árabes Unidos",
+ "gbCountryDisplayName": "Reino Unido",
+ "usCountryDisplayName": "Estados Unidos",
+ "uyCountryDisplayName": "Uruguay",
+ "uzCountryDisplayName": "Uzbekistán",
+ "vuCountryDisplayName": "Vanuatu",
+ "vaCountryDisplayName": "Ciudad del Vaticano",
+ "veCountryDisplayName": "Venezuela",
+ "vnCountryDisplayName": "Vietnam",
+ "wfCountryDisplayName": "Wallis y Futuna",
+ "ehCountryDisplayName": "Sahara Occidental",
+ "yeCountryDisplayName": "Yemen",
+ "zmCountryDisplayName": "Zambia",
+ "zwCountryDisplayName": "Zimbabue",
+ "downloadXLSXFile": "Descargar archivo Excel",
+ "unknownPrivateChat": "Chat Privado Desconocido",
+ "allPrivateChats": "Todos los chats privados (incluso con bots) en clase",
+ "chatHasBeenAddedToThisSpace": "Se ha añadido el chat a este espacio",
+ "classes": "Clases",
+ "showDirectChatsInSpaces": "Mostrar chats directos relacionados en Spaces",
+ "spaceIsPublic": "El espacio es público",
+ "removeFromSpace": "Retirar del espacio",
+ "addToSpaceDescription": "Seleccione un espacio para añadirle este chat.",
+ "newSpace": "Nueva clase",
+ "enterSpace": "Introducir espacio",
+ "allSpaces": "Todos los espacios",
+ "deleteSpace": "Borrar espacio",
+ "areYouSureDeleteClass": "¿Seguro que quieres borrar este espacio?",
+ "enterDeletedClassName": "Introduzca el nombre del espacio para confirmar:",
+ "incorrectClassName": "Nombre incorrecto del espacio",
+ "interactiveTranslatorNotAllowedDesc": "La asistencia de traducción está desactivada en los chats de grupo espaciales para todos los participantes. Esta restricción no se aplica a los chats de administrador de clase/intercambio ni a los chats directos.",
+ "interactiveTranslatorAllowedDesc": "Los estudiantes pueden elegir si desean utilizar la asistencia de traducción en los chats de grupo espaciales en Configuración > Configuración de aprendizaje.",
+ "multiLingualClass": "Clase multilingüe",
+ "allClasses": "Todas las clases",
+ "allChatsAndClasses": "Todos los chats y espacios",
+ "classDescription": "Descripción del espacio",
+ "classDescriptionDesc": "Establecer una descripción",
+ "copyClassLink": "Copiar enlace de invitación",
+ "copyClassLinkDesc": "Al hacer clic en este enlace, los usuarios accederán a la aplicación, se abrirán una cuenta y se unirán automáticamente a este espacio.",
+ "copyClassCode": "Copiar código de invitación",
+ "classSettingsDesc": "Editar idiomas de clase y nivel",
+ "createGroupChatsDesc": "Active esta opción para permitir a los estudiantes crear chats de grupo dentro del espacio de clase/intercambio.",
+ "joinWithClassCode": "Únete a una clase o a un intercambio",
+ "joinWithClassCodeDesc": "Conéctese a una clase o espacio de intercambio con el código de invitación de 6 dígitos proporcionado por el administrador del espacio.",
+ "joinWithClassCodeHint": "Introduzca el código de invitación",
+ "unableToFindClass": "No podemos encontrar la clase o el intercambio. Por favor, vuelva a comprobar la información con el administrador del espacio. Si sigue teniendo problemas, póngase en contacto con support@pangea.chat.",
+ "welcomeToYourNewClass": "Bienvenido 🙂",
+ "welcomeToClass": "Bienvenido! 🙂\n- ¡Prueba a unirte a un chat!\n- ¡Diviértete chateando!",
+ "welcomeToPangea18Plus": "Bienvenido al chat de Pangea 🙂 .\n¿Qué es lo siguiente?\n¡Crea una clase o únete a ella!\n¡O busca un compañero de conversación!",
+ "welcomeToPangeaMinor": "Bienvenido al chat de Pangea 🙂 .\n¿Qué es lo siguiente?\n¡Únete a una clase!\nPide a tu profesor un código de invitación.",
+ "unableToFindClassCode": "No se puede encontrar el código.",
+ "errorDisableITClassDesc": "La ayuda a la traducción está desactivada para el espacio en el que se encuentra este chat.",
+ "errorDisableIGCClassDesc": "La asistencia gramatical está desactivada para el espacio en el que se encuentra este chat.",
+ "errorDisableLanguageAssistanceClassDesc": "La ayuda a la traducción y la ayuda gramatical están desactivadas para el espacio en el que se encuentra este chat.",
+ "toggleToolSettingsDescription": "Aquí puedes cambiar la configuración individual de la herramienta de idioma. Para los chats dentro de un espacio, la configuración del espacio tendrá prioridad y puede anular esta configuración.",
+ "classNameRequired": "Introduzca un nombre de espacio",
+ "classRoster": "Participantes",
+ "alreadyInClass": "Ya estás en este espacio.",
+ "pleaseLoginFirst": "Inicie sesión o regístrese primero y, a continuación, se le añadirá a su clase/espacio de intercambio.",
+ "welcomeBack": "¡Bienvenido de nuevo! Si formó parte del piloto 2023-2024, póngase en contacto con nosotros para obtener su suscripción especial de piloto. Si es usted un profesor que ha adquirido (o cuya institución ha adquirido) licencias para su clase, póngase en contacto con nosotros para obtener su suscripción de profesor.",
+ "createNewClass": "Nuevo espacio para clases",
+ "newExchange": "Nuevo espacio de intercambio",
+ "inviteStudentsFromOtherClasses": "Invitar a estudiantes de otros espacios",
+ "allExchanges": "Todos los intercambios",
+ "creatingSpacePleaseWait": "Creando espacio. Por favor, espere...",
+ "pay": "Pagar",
+ "copyClassCodeDesc": "Los estudiantes que ya están en la aplicación pueden 'Unirse a una clase o a un intercambio' a través del menú principal.",
+ "inviteUsersFromPangea": "Añadir profesores",
+ "addToClass": "Añadir intercambio a la clase",
+ "addToClassOrExchange": "Añadir chat a la clase o al intercambio",
+ "classAnalytics": "Análisis de clase",
+ "myLearning": "Mis análisis",
+ "addToClassDesc": "Añadir un intercambio a una clase hará que el intercambio aparezca dentro de la clase para los estudiantes y les dará acceso a todos los chats dentro del intercambio.",
+ "addToClassOrExchangeDesc": "Añadir un chat a una clase o intercambio hará que el chat aparezca dentro de la clase o intercambio para los estudiantes y les dará acceso.",
+ "invitedToClassOrExchange": "{user} te ha invitado a unirte a ¡{classOrExchange}! ¿Deseas aceptar?",
+ "@invitedToClassOrExchange": {
+ "placeholders": {
+ "classOrExchange": {},
+ "user": {}
+ }
+ },
+ "decline": "Disminución",
+ "declinedInvitation": "Invitación rechazada",
+ "acceptedInvitation": "Invitación aceptada",
+ "youreInvited": "📩 ¡Estás invitado!",
+ "studentPermissionsDesc": "Establece los permisos para este espacio. Sólo se aplicarán al espacio de clase/intercambio. Anularán la configuración de los usuarios individuales.",
+ "noEligibleSpaces": "No hay espacios elegibles a los que añadir esto.",
+ "youAddedToSpace": "Has añadido {child} a {space}",
+ "@youAddedToSpace": {
+ "placeholders": {
+ "child": {},
+ "space": {}
+ }
+ },
+ "youRemovedFromSpace": "Has eliminado {child} de {space}",
+ "@youRemovedFromSpace": {
+ "placeholders": {
+ "child": {},
+ "space": {}
+ }
+ },
+ "changeView": "Cambia de vista.",
+ "invitedToChat": "{user} te ha invitado a unirte a un chat: ¡{name}! ¿Deseas aceptar?",
+ "total": "Total: ",
+ "noDataFound": "No se han encontrado datos",
+ "promoSubscriptionExpirationDesc": "Su suscripción actual es promocional y expira el {expiration}. Envíe un mensaje a support@pangea.chat para cambiar su suscripción.",
+ "@promoSubscriptionExpirationDesc": {
+ "placeholders": {
+ "expiration": {}
+ }
+ },
+ "emptyChatNameWarning": "Introduzca un nombre para este chat",
+ "emptyClassNameWarning": "Introduzca un nombre para esta clase",
+ "emptyExchangeNameWarning": "Introduzca un nombre para este intercambio",
+ "blurMeansTranslateTitle": "¿Por qué está borroso el mensaje?",
+ "blurMeansTranslateBody": "Mientras el Modo Inmersión esté activado, los mensajes que se envíen en su idioma base aparecerán borrosos mientras Pangea Bot los traduce a su idioma de destino. El modo inmersión puede activarse en los ajustes individuales y de clase.",
+ "monthlySubscription": "Mensualmente",
+ "yearlySubscription": "Anualmente",
+ "defaultSubscription": "Suscripción al chat de Pangea",
+ "freeTrial": "Prueba gratuita",
+ "languageLevelWarning": "Seleccione un nivel de idioma de clase",
+ "lockedChatWarning": "🔒 Este chat ha sido bloqueado",
+ "lockSpace": "Espacio de bloqueo",
+ "lockChat": "Chat de bloqueo",
+ "archiveSpace": "Espacio de archivos",
+ "grammarAnalytics": "Análisis de errores",
+ "someErrorTitle": "Hm, algo no está bien",
+ "someErrorBody": "Podría ser un error o algo en tu lenguaje base.",
+ "bestCorrectionFeedback": "¡Correcto!",
+ "distractorFeedback": "Eso no es del todo correcto.",
+ "bestAnswerFeedback": "¡Correcto!",
+ "definitionDefaultPrompt": "¿Qué significa esta palabra?",
+ "practiceDefaultPrompt": "¿Cuál es la mejor respuesta?",
+ "correctionDefaultPrompt": "¿Cuál es la mejor corrección?",
+ "itStartDefaultPrompt": "¿Quiere ayuda para traducir?",
+ "suggestTo": "Sugerir a {spaceName}",
+ "suggestChatDesc": "Los chats sugeridos aparecerán en la lista de chats de {spaceName}.",
+ "suggestExchangeDesc": "Los intercambios sugeridos aparecerán en la lista de chat de {spaceName}.",
+ "acceptSelection": "Aceptar corrección",
+ "acceptSelectionAnyway": "Use esto de todos modos",
+ "replace": "Corregir",
+ "makingActivity": "Actividad de fabricación",
+ "why": "¿Por qué?",
+ "definition": "Definición",
+ "exampleSentence": "Ejemplo de frase",
+ "addToClassTitle": "Añadir intercambio a la clase",
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "placeCall": "",
+ "@placeCall": {}
}
diff --git a/assets/l10n/intl_et.arb b/assets/l10n/intl_et.arb
index 4655b1373..39920bec7 100644
--- a/assets/l10n/intl_et.arb
+++ b/assets/l10n/intl_et.arb
@@ -1164,7 +1164,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "Tundub, et sinu nutiseadmes pole Google teenuseid. Sinu privaatsuse mõttes on see kindlasti hea otsus! Kui sa soovid FluffyChat'is näha tõuketeavitusi, siis soovitame, et selle jaoks kasutad https://microg.org või https://unifiedpush.org liidestust.",
+ "noGoogleServicesWarning": "Tundub, et sinu nutiseadmes pole Firebase Cloud Messaging teenuseid. Sinu privaatsuse mõttes on see kindlasti hea otsus! Kui sa soovid FluffyChat'is näha tõuketeavitusi, siis soovitame, et selle jaoks kasutad ntfy liidestust. Kasutades ntfy'd või mõnda muud Unified Push standardil põhinevat liidestust saad tõuketeavitusi turvalisel moel. Ntfy rakendus on saadaval nii PlayStore kui F-Droid'i rakendusepoodides.",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -2617,5 +2617,45 @@
"placeholders": {
"seconds": {}
}
- }
+ },
+ "banUserDescription": "Sellele kasutajale on nüüd selles jututoas seatud suhtluskeeld ning ta ei saa vestluses osaleda seni, kuni suhtluskeeld pole eemaldatud.",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "Sind logitakse sellest seadmest välja ja sa enam ei saa sõnumeid.",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "Uuesti proovimisel saab see kasutaja nüüd vestlusega liituda.",
+ "@unbanUserDescription": {},
+ "todoLists": "Tegemiste loendid (beetaversioon)",
+ "@todoLists": {},
+ "editTodo": "Muuda tegevust",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "Tõuketeavitused pole saadaval",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "Palun lisa pealkiri",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "Kui annad sellele kasutajale peakasutaja õigused, siis kuna tal on sinuga samad õigused, sa ei saa seda toimingut enam tagasi pöörata.",
+ "@makeAdminDescription": {},
+ "noTodosYet": "Siia vestlusesse pole veel lisatud ühtegi tegemiste loendit. Tee esimene ja jätka selle täitmist üheskoos teistega. 📝",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "Selle vestluse tõstame nüüd arhiivi. Muud osalejad näevad, et sa oled vestlusest lahkunud.",
+ "@archiveRoomDescription": {},
+ "hasKnocked": "{user} on jututoa uksele koputanud",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newTodo": "Uus tegevus",
+ "@newTodo": {},
+ "learnMore": "Loe lisaks",
+ "@learnMore": {},
+ "todoListChangedError": "Hopsti... Seda tegevuste loendit on keegi muutnud just samal ajal, kui sina olid seda muutmas.",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "See vestlus luuakse nüüd uuesti jututoa uue versioonina. Kõik senised osalejad saavad teate, et nad peavad liituma uue vestlusega. Jututubade versioonide kohta leiad teavet https://spec.matrix.org/latest/rooms/ lehelt",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "Palun sisesta 0'st suurem number",
+ "@pleaseEnterANumber": {},
+ "kickUserDescription": "See kasutaja on nüüd jutuoast välja müksatud, kuid talle pole seatud suhtluskeeldu. Avaliku jututoa puhul saab ta alati uuesti liituda.",
+ "@kickUserDescription": {},
+ "todosUnencrypted": "Palun arvesta, et tegemiste loend on nähtav kõikidele vestluses osalejatele ja pole läbivalt krüptitud.",
+ "@todosUnencrypted": {}
}
diff --git a/assets/l10n/intl_eu.arb b/assets/l10n/intl_eu.arb
index e418d2b22..375fc43e4 100644
--- a/assets/l10n/intl_eu.arb
+++ b/assets/l10n/intl_eu.arb
@@ -84,7 +84,7 @@
"username": {}
}
},
- "banFromChat": "Kanporatu txatetik",
+ "banFromChat": "Txatera batzeko debekua ezarri",
"@banFromChat": {
"type": "text",
"placeholders": {}
@@ -226,7 +226,7 @@
"type": "text",
"placeholders": {}
},
- "changeTheNameOfTheGroup": "Aldatu taldearen izena",
+ "changeTheNameOfTheGroup": "Taldearen izena aldatu",
"@changeTheNameOfTheGroup": {
"type": "text",
"placeholders": {}
@@ -372,7 +372,7 @@
"type": "text",
"placeholders": {}
},
- "deleteMessage": "Ezabatu mezua",
+ "deleteMessage": "Mezuak ezabatu",
"@deleteMessage": {
"type": "text",
"placeholders": {}
@@ -521,12 +521,12 @@
"displayname": {}
}
},
- "guestsAreForbidden": "Bisitariak debekatuta daude",
+ "guestsAreForbidden": "Ez, bisitariak ez daude baimenduta",
"@guestsAreForbidden": {
"type": "text",
"placeholders": {}
},
- "guestsCanJoin": "Bisitariak batu daitezke",
+ "guestsCanJoin": "Bai, bisitariak batu daitezke",
"@guestsCanJoin": {
"type": "text",
"placeholders": {}
@@ -559,7 +559,7 @@
"type": "text",
"placeholders": {}
},
- "inviteContact": "Gonbidatu kontaktua",
+ "inviteContact": "Kontaktuak gonbidatu",
"@inviteContact": {
"type": "text",
"placeholders": {}
@@ -630,7 +630,7 @@
"targetName": {}
}
},
- "kickFromChat": "Kanporatu txatetik",
+ "kickFromChat": "Txatetik kanporatu",
"@kickFromChat": {
"type": "text",
"placeholders": {}
@@ -746,7 +746,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "Dirudienez ez daukazu Googleren zerbitzurik zure mugikorrean. Primerako erabakia zure pribatutasunerako! FluffyChaten jakinarazpenak jasotzeko https://microg.org/ edo https://unifiedpush.org/ erabiltzea gomendatzen dugu.",
+ "noGoogleServicesWarning": "Ez dirudi Firebase Cloud Messaging zure mugikorrean erabilgarri dagoenik. Jakinarazpenak jasotzeko ntfy instalatzea gomendatzen dugu. ntfy edo beste Unified Push hornitzaileren batekin, push jakinarazpenak jaso ditzazkezu datuentzako segurua den modu batean. ntfy PlayStore edo F-Droid dendetatik deskarga dezakezu.",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -1021,7 +1021,7 @@
"type": "text",
"placeholders": {}
},
- "setInvitationLink": "Ezarri gonbidapen-esteka",
+ "setInvitationLink": "Gonbidapen-esteka ezarri",
"@setInvitationLink": {
"type": "text",
"placeholders": {}
@@ -1364,7 +1364,7 @@
"type": "text",
"placeholders": {}
},
- "editRoomAvatar": "Editatu gelaren abatarra",
+ "editRoomAvatar": "Gelaren abatarra editatu",
"@editRoomAvatar": {
"type": "text",
"placeholders": {}
@@ -1697,7 +1697,7 @@
},
"chatHasBeenAddedToThisSpace": "Txata gune honetara gehitu da",
"@chatHasBeenAddedToThisSpace": {},
- "configureChat": "Konfiguratu txata",
+ "configureChat": "Txata konfiguratu",
"@configureChat": {
"type": "text",
"placeholders": {}
@@ -2101,7 +2101,7 @@
"@sendAsText": {
"type": "text"
},
- "sendMessages": "Bidali mezuak",
+ "sendMessages": "Mezuak bidali",
"@sendMessages": {
"type": "text",
"placeholders": {}
@@ -2166,7 +2166,7 @@
"type": "text",
"placeholders": {}
},
- "unverified": "Egiaztatu gabe",
+ "unverified": "Egiaztatu gabe(a)",
"@unverified": {},
"verified": "Egiaztatuta",
"@verified": {
@@ -2504,7 +2504,7 @@
"@continueWith": {},
"pleaseTryAgainLaterOrChooseDifferentServer": "Saiatu geroago edo aukeratu beste zerbitzari bat.",
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
- "signInWith": "Hasi saioa {provider}(e)kin",
+ "signInWith": "Hasi saioa {provider}(r)ekin",
"@signInWith": {
"type": "text",
"placeholders": {
@@ -2569,7 +2569,7 @@
"reason": {}
}
},
- "anyoneCanKnock": "Edonork egin dezake batzeko eskaera",
+ "anyoneCanKnock": "Edonork eska dezake batzeko baimena",
"@anyoneCanKnock": {},
"redactMessageDescription": "Mezua elkarrizketa honetako partaide guztientzat botako da atzera. Ezin da desegin.",
"@redactMessageDescription": {},
@@ -2605,10 +2605,50 @@
"@createGroup": {},
"invite": "Gonbidatu",
"@invite": {},
- "invalidInput": "Sarrerak ez du balio!",
+ "invalidInput": "Sartu duzunak ez du balio!",
"@invalidInput": {},
"inviteGroupChat": "📨 Gonbidatu taldeko txatera",
"@inviteGroupChat": {},
"invitePrivateChat": "📨 Gonbidatu txat pribatura",
- "@invitePrivateChat": {}
+ "@invitePrivateChat": {},
+ "banUserDescription": "Erabiltzailea txatetik kanporatu eta berriro sartzeko debekua ezarriko zaio; ezingo da berriro sartu debekua kendu arte.",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "Gailu honetako saioa amaituko da eta ezingo duzu mezurik jaso aurrerantzean.",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "Erabiltzailea txatera berriro sartu ahal izango da berak nahi izanez gero.",
+ "@unbanUserDescription": {},
+ "todoLists": "(Beta) Zeregin-zerrendak",
+ "@todoLists": {},
+ "editTodo": "Editatu zeregina",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "Push jakinarazpenak ez daude erabilgarri",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "Gehitu izenburua",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "Behin erabiltzaile hau administratzaile eginda, litekeena da desegin ezin izatea zuk dituzun baimenak izango dituelako.",
+ "@makeAdminDescription": {},
+ "noTodosYet": "Oraindik ez da zereginik gehitu txat honetara. Sortu lehen zeregina eta hasi elkarlanean besteekin. 📝",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "Txata artxibategira mugituko da. Beste erabiltzaileek txatetik alde egin duzula ikusi ahal izango dute.",
+ "@archiveRoomDescription": {},
+ "hasKnocked": "{user}(e)k baimena eskatu du",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newTodo": "Zeregin berria",
+ "@newTodo": {},
+ "learnMore": "Gehiago irakurri",
+ "@learnMore": {},
+ "todoListChangedError": "Hara… zeregin-zerrenda aldatu da editatzen ari zinen bitartean.",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "Gela bertsio berri gisa birsortuko da txata. Partaide guztiei jakinaraziko zaie txat berrira aldatu behar direla. Gehiago irakur dezakezu gela bertsioei buruz ondorengo estekan: https://spec.matrix.org/latest/rooms/",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "Sartu 0 baino zenbaki handiago bat",
+ "@pleaseEnterANumber": {},
+ "kickUserDescription": "Erabiltzailea txatetik kanporatu da baina ez zaio debekua ezarri. Txat publikoen kasuan, edozein momentutan batu daiteke berriro.",
+ "@kickUserDescription": {},
+ "todosUnencrypted": "Kontuan izan zereginak txateko guztientzat daudela ikusgai, eta ez daudela ertzetik ertzera zifratuta.",
+ "@todosUnencrypted": {}
}
diff --git a/assets/l10n/intl_fa.arb b/assets/l10n/intl_fa.arb
index c62752785..6a23ca398 100644
--- a/assets/l10n/intl_fa.arb
+++ b/assets/l10n/intl_fa.arb
@@ -2502,5 +2502,152 @@
"continueWith": "ادامه دادن با:",
"@continueWith": {},
"pleaseTryAgainLaterOrChooseDifferentServer": "لطفا بعدا تلاش کنید یا سرور دیگری انتخاب کنید.",
- "@pleaseTryAgainLaterOrChooseDifferentServer": {}
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "tryAgain": "",
+ "@tryAgain": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "importEmojis": "",
+ "@importEmojis": {},
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "replace": "",
+ "@replace": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "invite": "",
+ "@invite": {}
}
diff --git a/assets/l10n/intl_fi.arb b/assets/l10n/intl_fi.arb
index b0aceb2de..1dc681ede 100644
--- a/assets/l10n/intl_fi.arb
+++ b/assets/l10n/intl_fi.arb
@@ -764,7 +764,7 @@
"type": "text",
"placeholders": {}
},
- "inviteText": "{username} kutsui sinutFluffyChattiin. \n1. Asenna FluffyChat osoitteesta: https://fluffychat.im \n2. Rekisteröidy tai kirjaudu sisään\n3. Avaa kutsulinkki: {link}",
+ "inviteText": "{username} kutsui sinut FluffyChattiin.\n1. Viereaile sivulla: https://fluffychat.im ja asenna sovellus\n2. Rekisteröidy tai kirjaudu sisään\n3. Avaa kutsulinkki:\n{link}",
"@inviteText": {
"type": "text",
"placeholders": {
@@ -1249,7 +1249,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "Vaikuttaa siltä, ettei puhelimessasi ole Google-palveluita. Se on hyvä päätös yksityisyytesi kannalta! Vastaanottaaksesi push-notifikaatioita FluffyChätissä suosittelemme https://microg.org/ tai https://unifiedpush.org/ käyttämistä.",
+ "noGoogleServicesWarning": "Firebase Cloud Messaging -palvelu ei vaikuta olevan saatavilla laitteellasi. Saadaksesi push-ilmoituksia silti, suosittelemme Ntfy-sovelluksen asentamista. Käyttämällä Ntfy-sovellusta tai muuta Unified Push -tarjoajaa, saat push-ilmoitukset tietoturvallisella tavalla. Voit ladata Ntfy-sovelluksen Play Kaupasta tai F-Droidista.",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -1776,7 +1776,7 @@
"type": "text",
"placeholders": {}
},
- "wallpaper": "Taustakuva",
+ "wallpaper": "Taustakuva:",
"@wallpaper": {
"type": "text",
"placeholders": {}
@@ -2366,7 +2366,7 @@
"@whyIsThisMessageEncrypted": {},
"noKeyForThisMessage": "Tämä voi tapahtua mikäli viesti lähetettiin ennen sisäänkirjautumistasi tälle laitteelle.\n\nOn myös mahdollista, että lähettäjä on estänyt tämän laitteen tai jokin meni pieleen verkkoyhteyden kanssa.\n\nPystytkö lukemaan viestin toisella istunnolla? Siinä tapauksessa voit siirtää viestin siltä! Mene Asetukset > Laitteet ja varmista, että laitteesi ovat varmistaneet toisensa. Seuraavankerran avatessasi huoneen ja molempien istuntojen ollessa etualalla, avaimet siirretään automaattisesti.\n\nHaluatko varmistaa ettet menetä avaimia uloskirjautuessa tai laitteita vaihtaessa? Varmista avainvarmuuskopion käytössäolo asetuksista.",
"@noKeyForThisMessage": {},
- "commandHint_markasdm": "Merkitse yksityiskeskusteluksi",
+ "commandHint_markasdm": "Merkitse yksityiskeskusteluksi syötetyn Matrix IDn kanssa",
"@commandHint_markasdm": {},
"foregroundServiceRunning": "Tämä ilmoitus näkyy etualapalvelun ollessa käynnissä.",
"@foregroundServiceRunning": {},
@@ -2501,5 +2501,152 @@
"continueWith": "Jatka käyttäen:",
"@continueWith": {},
"pleaseTryAgainLaterOrChooseDifferentServer": "Yritä myöhemmin uudelleen tai valitse toinen palvelin.",
- "@pleaseTryAgainLaterOrChooseDifferentServer": {}
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "setColorTheme": "Aseta väriteema:",
+ "@setColorTheme": {},
+ "requests": "Pyynnöt",
+ "@requests": {},
+ "tryAgain": "Yritä uudelleen",
+ "@tryAgain": {},
+ "messagesStyle": "Viestit:",
+ "@messagesStyle": {},
+ "chatDescription": "Keskustelun kuvaus",
+ "@chatDescription": {},
+ "invalidServerName": "Virheellinen palvelimen nimi",
+ "@invalidServerName": {},
+ "chatPermissions": "Keskustelun oikeudet",
+ "@chatPermissions": {},
+ "setChatDescription": "Asetti keskustelun kuvauksen",
+ "@setChatDescription": {},
+ "importFromZipFile": "Tuo .zip -tiedostosta",
+ "@importFromZipFile": {},
+ "redactedBy": "Poistanut {username}",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signInWith": "Kirjaudu sisään palvelulla {provider}",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "optionalRedactReason": "(Vapaaehtoinen) Syy tämän viestin poistamiselle...",
+ "@optionalRedactReason": {},
+ "archiveRoomDescription": "Keskustelu siirretään arkistoon. Muut käyttäjät näkevät sinun poistuneen keskustelusta.",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "Vie emotepaketti .zip-tiedostona",
+ "@exportEmotePack": {},
+ "savedEmotePack": "Tallennettiin emotepaketti sijaintiin {path}!",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "inviteContactToGroupQuestion": "Tahdotko kutsua yhteystiedon {contact} keskusteluun \"{groupName}\"?",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "Poistanut {username} syystä: \"{reason}\"",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "importZipFile": "Tuo zip-tiedosto",
+ "@importZipFile": {},
+ "anyoneCanKnock": "Kaikki voivat koputtaa",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "Viesti poistetaan kaikilta keskustelun osallistujilta. Tätä ei voida kumota.",
+ "@redactMessageDescription": {},
+ "invalidInput": "Virheellinen syöte!",
+ "@invalidInput": {},
+ "addChatDescription": "Lisää keskustelulle kuvaus",
+ "@addChatDescription": {},
+ "hasKnocked": "{user} on koputtanut",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "directChat": "Yksityiskeskustelu",
+ "@directChat": {},
+ "noOneCanJoin": "Kukaan ei voi liittyä",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "Väärä pin-koodi! Yritä uudelleen {seconds} sekuntin kuluttua...",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "Lähetä kirjoitusilmoituksia",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "Kutsu ryhmäkeskusteluun",
+ "@inviteGroupChat": {},
+ "invitePrivateChat": "Kutsu yksityiskeskusteluun",
+ "@invitePrivateChat": {},
+ "importEmojis": "Tuo emojit",
+ "@importEmojis": {},
+ "noChatDescriptionYet": "Keskustelun kuvausta ei ole vielä luotu.",
+ "@noChatDescriptionYet": {},
+ "notAnImage": "Tämä ei ole kuvatiedosto.",
+ "@notAnImage": {},
+ "chatDescriptionHasBeenChanged": "Keskustelun kuvaus muutettu",
+ "@chatDescriptionHasBeenChanged": {},
+ "roomUpgradeDescription": "Keskustelu luodaan uudelleen uudella huoneversiolla. Kaikille osallistujille ilmoitetaan, että heidän tulee siirtyä uuteen keskusteluun. Voit lukea lisää huoneversioista osoitteesta https://spec.matrix.org/latest/rooms/",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "Syötä suurempi luku kuin 0",
+ "@pleaseEnterANumber": {},
+ "profileNotFound": "Käyttäjää ei löydy palvelimelta. Tämä voi olla yhteysongelma tai käyttäjä ei ole olemassa.",
+ "@profileNotFound": {},
+ "shareInviteLink": "Jaa kutsulinkki",
+ "@shareInviteLink": {},
+ "emoteKeyboardNoRecents": "Viimeaikoina käytetyt emotet tulevat näkymään täällä...",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "Aseta teema:",
+ "@setTheme": {},
+ "replace": "Korvaa",
+ "@replace": {},
+ "createGroup": "Luo ryhmä",
+ "@createGroup": {},
+ "importNow": "Tuo nyt",
+ "@importNow": {},
+ "invite": "Kutsu",
+ "@invite": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_fr.arb b/assets/l10n/intl_fr.arb
index 412da0e46..6ca325c8e 100644
--- a/assets/l10n/intl_fr.arb
+++ b/assets/l10n/intl_fr.arb
@@ -2514,5 +2514,148 @@
"createGroup": "Créer un groupe",
"@createGroup": {},
"importNow": "Importer maintenant",
- "@importNow": {}
+ "@importNow": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "tryAgain": "",
+ "@tryAgain": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "report": "",
+ "@report": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "replace": "",
+ "@replace": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "invite": "",
+ "@invite": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {}
}
diff --git a/assets/l10n/intl_ga.arb b/assets/l10n/intl_ga.arb
index e2a68cbeb..4852f8d28 100644
--- a/assets/l10n/intl_ga.arb
+++ b/assets/l10n/intl_ga.arb
@@ -1,2101 +1,2659 @@
{
- "you": "Tú",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "Tá",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "Rabhadh!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "Cúlbhrat",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "verify": "Deimhnigh",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verified": "Deimhnithe",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "username": "Ainm úsáideora",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "Bain biorán",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "Níl ar fáil",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "Córas",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "Cuir isteach",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "statusExampleMessage": "Conas atá tú inniu?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "status": "Staid",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "Léim",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "share": "Roinn",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "Socruithe",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "send": "Seol",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "security": "Slándáil",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Cuardaigh",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Freagair",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Bain",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "rejoin": "Téigh ar ais isteach",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "reject": "Diúltaigh",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "register": "Cláraigh",
- "@register": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "Ag Taifeadadh",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Fáth",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Príobháideacht",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Biorán",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "people": "Daoine",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Pasfhocal",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "participant": "Rannpháirtí",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Comhráite Díreacha",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "ID gléis",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Scrios an teachtaireacht",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Scrios an cuntas",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "createNewSpace": "Spás nua",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "countParticipants": "{count} rannpháirtithe",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "or": "Nó",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "online": "Ar líne",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "togha",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "As líne",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "offensive": "Maslach",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Fógraí",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "none": "Aon cheann",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "no": "Níl",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Ar Aghaidh",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Modhnóir",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Teachtaireachtaí",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "Luaigh",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "logout": "Logáil amach",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Logáil isteach",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "Solas",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Ceadúnas",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Fág",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "invited": "Le cuireadh",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "Neamhurchóideach",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Tabhair neamhaird ar",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Aitheantas",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ID",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "help": "Cabhair",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "Grúpaí",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "group": "Grúpa",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "Seol ar aghaidh",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "homeserver": "Freastalaí baile",
- "@homeserver": {},
- "encryption": "Criptiúchán",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Criptithe",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Cuir in eagar",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Gléasanna",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Gléas",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Diúltaigh",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Scrios",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "dateWithYear": "{day}/{month}/{year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "dateWithoutYear": "{day}/{month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "containsUserName": "Coinníonn sé ainm úsáideora",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "Cumraigh comhrá",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "commandInvalid": "Ordú neamhbhailí",
- "@commandInvalid": {
- "type": "text"
- },
- "commandHint_send": "Seol téacs",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "commandHint_me": "Déan cur síos ort féin",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "clearArchive": "Glan an cartlann",
- "@clearArchive": {},
- "chatDetails": "Sonraí comhrá",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackup": "Cúltaca comhrá",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Athraigh cúlbhrat",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "D'athraigh {username} abhatár an chomhrá",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changeDeviceName": "Athraigh ainm an ghléis",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "Ní féidir an URI {uri} a oscailt",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "cancel": "Cealaigh",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Teachtaireachtaí bota",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "Bactha",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "blockDevice": "Bac Gléas",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "Chuir {username} cosc ar {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "banned": "Coiscthe",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "banFromChat": "Toirmisc ón gcomhrá",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "sendOnEnter": "Seol ar iontráil",
- "@sendOnEnter": {},
- "archive": "Cartlann",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "Bac aip",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "anyoneCanJoin": "Is féidir le aon duine dul isteach",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "D'fhreagair {senderName} an glao",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "allChats": "Gach comhrá",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Gach",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "ailias",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Riarthóir",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "Cuir go spás",
- "@addToSpace": {},
- "addGroupDescription": "Cuir tuairisc grúpa",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "addEmail": "Cuir ríomhphoist",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "Thosaigh {username} an criptiú ó dheireadh go deireadh",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "Cuntas",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "Ghlac {username} leis an cuireadh",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "accept": "Glac",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "about": "Faoi",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Glac leis an iarratas fíoraithe seo ó {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "areYouSureYouWantToLogout": "An bhfuil tú cinnte gur mhaith leat logáil amach?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "An bhfuil tú cinnte?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "An bhfuil cead ag aoi-úsáideoirí a bheith páirteach",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "Thug {username} cuireadh do {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "hideRedactedEvents": "Folaigh imeachtaí athdhéanta",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "Is féidir le haíonna páirt a ghlacadh",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "guestsAreForbidden": "Tá cosc ar aíonna",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "Grúpa le {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "groupIsPublic": "Tá an grúpa poiblí",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "D'athraigh cur síos an ghrúpa",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "Ón gcuireadh",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "enterYourHomeserver": "Cuir isteach do fhreastalaí baile",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "Gearrchód emote neamhbhailí!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "Tá iomaite ann cheana féin!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "Cuir in eagar abhatár an tseomra",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAliases": "Cuir ailiasanna an tseomra in eagar",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "Cuir ceadanna an chomhrá in eagar",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "Cuir freastalaí blocáilte in eagar",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "Leibhéal ceada réamhshocraithe",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "unblockDevice": "Díbhlocáil Gléas",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "Tugadh cuireadh don theagmháil a thar isteach sa grúpa",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Déan comparáid idir na huimhreacha seo a leanas agus déan cinnte go bhfuil na huimhreacha seo a leanas ag teacht le huimhreacha an ghléis eile:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareEmojiMatch": "Déan comparáid agus déan cinnte go bhfuil an emoji seo a leanas comhoiriúnach le emoji an ghléis eile:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "commandMissing": "Ní ordú é {command}.",
- "@commandMissing": {
- "type": "text",
- "placeholders": {
- "command": {}
- },
- "description": "State that {command} is not a valid /command."
- },
- "commandHint_react": "Seol freagra mar fhreagairt",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "commandHint_op": "Socraigh leibhéal cumhachta an úsáideora áirithe (réamhshocrú: 50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_myroomnick": "Socraigh d'ainm taispeána don seomra seo",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "commandHint_myroomavatar": "Cuir do phictiúr don seomra seo (le mxc-uri)",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_kick": "Bain an t-úsáideoir áirithe den seomra seo",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_join": "Téigh isteach sa seomra áirithe",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_ban": "Cuir cosc ar an úsáideoir áirithe ón seomra seo",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_invite": "Cuir cosc ar an úsáideoir áirithe ón seomra seo",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "chooseAStrongPassword": "Roghnaigh pasfhocal láidir",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chatHasBeenAddedToThisSpace": "Cuireadh comhrá leis an spás seo",
- "@chatHasBeenAddedToThisSpace": {},
- "chatBackupDescription": "Tá do chúltaca comhrá daingnithe le heochair slándála. Déan cinnte nach gcaillfidh tú é.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "Truaillíodh an criptiú",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Athraigh ainm an ghrúpa",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheRoomInvitationLink": "D'athraigh {username} nasc an chuiridh",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "D'athraigh {username} ailiasanna an tseomra",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheProfileAvatar": "D'athraigh {username} a n-abhatár",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "D'athraigh {username} na rialacha ceangail go: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheJoinRules": "D'athraigh {username} na rialacha ceangail",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "D'athraigh {username} infheictheacht na staire go: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibility": "D'athraigh {username} infheictheacht na staire",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "D'athraigh {username} a n-ainm taispeána go: '{displayname}'",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheChatPermissions": "D'athraigh {username} na ceadanna comhrá",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatNameTo": "D'athraigh {username} an t-ainm comhrá go: '{chatname}'",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatDescriptionTo": "D'athraigh {username} an cur síos comhrá go: '{description}'",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "autoplayImages": "Seinn greamáin agus straoiseog beoite go huathoibríoch",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "createdTheChat": "Rinne {username} an comhrá",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "createNewGroup": "Déan grúpa nua",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Cóipeáil ar an ghearrthaisce",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "Cóipeáilte ar an ghearrthaisce",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Coinníonn sé ainm taispeána",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_plain": "Seol téacs neamhfhoirmithe",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_leave": "Fág an seomra seo",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_html": "Seol téacs HTML-formáidithe",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "chooseAUsername": "Roghnaigh ainm úsáideora",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "Athraigh do abhatár",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Athraigh do stíl",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Athraigh an freastalaí baile",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "Glórphost",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "Físghlao",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "Tosaigh Fíorú",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "unmuteChat": "Neamhciúnaigh comhrá",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Folaigh imeachtaí anaithnide",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "Gléas anaithnid",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "Marcáil Léite/Neamhléite",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "Scoránaigh mar ciúnaithe",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "toggleFavorite": "Scoránaigh mar ceann is fearr leat",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "Tá siad céanna",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "spaceName": "Ainm an spáis",
- "@spaceName": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "Cód foinseach",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "signUp": "Cláraigh Cuntas",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "showPassword": "Taispeáin pasfhocal",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "shareLocation": "Roinn suíomh",
- "@shareLocation": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "Cuir stádas",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Seol físeán",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sendSticker": "Seol greamán",
- "@sendSticker": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Seol an bunchóip",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "Seol teachtaireachtaí",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Seol íomhá",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "Seol comhad",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "Seol fuaim",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "saveFile": "Sábháil comhad",
- "@saveFile": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "Leagan seomra",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Iarr cead",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "Tuairiscigh teachtaireacht",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "removeDevice": "Bain gléas",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "redactMessage": "Bain teachtaireacht amach",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "pushRules": "Rialacha na bhfógraí",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "Seomraí Poiblí",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChoose": "Roghnaigh le do thoil",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "play": "Seinn {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "passwordRecovery": "Aisfháil pasfhocail",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Pasfhocal dearmadta",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Oscail ceamara",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "obtainingLocation": "ag Aimsiú an suíomh…",
- "@obtainingLocation": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Gan cead",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Comhrá nua",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Ciúnaigh comhrá",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Athruithe ball",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Lódáil níos mó…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "joinRoom": "Téigh isteach sa seomra",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "isTyping": "ag clóscríobh…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Tabhair cuireadh do theagmháil",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Tabhair neamhaird ar ainm úsáideora",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Úsáideoirí a dtugann tú neamhaird orthu",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Cur síos ar an ngrúpa",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "Ó tar isteach",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "Méid cló",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Tosaigh criptiú",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Cuir ainm taispeána in eagar",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Gníomhach faoi láthair",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Ainm an chomhaid",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "Gach rud réidh!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "Comhrá folamh",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "Gearrchód straoiseoige",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Socruithe straoiseoige",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Íoslódáil comhad",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "changePassword": "Athraigh an pasfhocal",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Dorcha",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "create": "Cruthaigh",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Cóipeáil",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Ceangail",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Deimhnigh",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "close": "Dún",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "chats": "Comhráite",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Comhrá",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "scanQrCode": "Scan cód QR",
- "@scanQrCode": {},
- "inviteText": "Thug {username} cuireadh duit chuig FluffyChat.\n1. Suiteáil FluffyChat: https://fluffychat.im\n2. Cláraigh nó sínigh isteach\n3. Oscail an nasc cuiridh: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "shareYourInviteLink": "Roinn do nasc cuiridh",
- "@shareYourInviteLink": {},
- "noMatrixServer": "Níl {server1} freastalaí Matrix. Úsáid {server2} ina áit sin?",
- "@noMatrixServer": {
- "type": "text",
- "placeholders": {
- "server1": {},
- "server2": {}
- }
- },
- "noGoogleServicesWarning": "Dealraíonn sé nach bhfuil aon seirbhísí google agat ar do ghuthán. Sin cinneadh maith le do phríobháideacht! Chun fógraí brú a fháil i FluffyChat molaimid https://microg.org/ nó https://unifiedpush.org/ a úsáid.",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "Ní féidir leat criptiú a ghníomhachtú ach a luaithe nach bhfuil an seomra inrochtana go poiblí a thuilleadh.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "Níor aimsíodh aon straoiseoga. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "Gan aon nasc leis an bhfreastalaí",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Iarratas fíoraithe nua!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "Teachtaireacht nua i FluffyChat",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "Bí ar an eolas go dteastaíonn Pantalaimon uait chun criptiú ó cheann go ceann a úsáid anois.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "Bainfear an teachtaireacht do na rannpháirtithe go léir",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "Cinntigh go bhfuil an t-aitheantóir bailí",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "loginWith": "Sínigh isteach le {brand}",
- "@loginWith": {
- "type": "text",
- "placeholders": {
- "brand": {}
- }
- },
- "logInTo": "Logáil isteach chuig {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "locationPermissionDeniedNotice": "Diúltaíodh cead suímh. Deonaigh dóibh le do thoil go mbeidh tú in ann do shuíomh a roinnt.",
- "@locationPermissionDeniedNotice": {
- "type": "text",
- "placeholders": {}
- },
- "locationDisabledNotice": "Tá seirbhísí suímh díchumasaithe. Cuir ar a gcumas le do thoil a bheith in ann do shuíomh a roinnt.",
- "@locationDisabledNotice": {
- "type": "text",
- "placeholders": {}
- },
- "loadingPleaseWait": "Ag lódáil… Fan, le do thoil.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "Lódáil {count} níos mó rannpháirtithe",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "leftTheChat": "Fágadh an comhrá",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastSeenLongTimeAgo": "Le feiceáil i bhfad ó shin",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "Gníomhach deireanach: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "kickFromChat": "Caith é amach as an comhrá",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "Chaith {username} {targetName} amach",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "Chaith {username} amach agus chuir cosc ar {targetName} freisin",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "joinedTheChat": "Tháinig {username} isteach sa chomhrá",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "invitedUsersOnly": "Úsáideoirí le cuireadh amháin",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "Tabhair cuireadh do theagmháil chuig {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "incorrectPassphraseOrKey": "Pasfhrása nó eochair téarnaimh mícheart",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "Chliceáil mé ar an nasc",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "Cé chomh maslach atá an t-ábhar seo?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Fíor-maslach",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "Tharraing {username} an cuireadh do {targetName} siar",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "goToTheNewRoom": "Téigh go dtí an seomra nua",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "errorObtainingLocation": "Earráid maidir le suíomh a fháil: {error}",
- "@errorObtainingLocation": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "enterASpacepName": "Cuir isteach ainm spáis",
- "@enterASpacepName": {},
- "enterAnEmailAddress": "Cuir isteach seoladh ríomhphoist",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterAGroupName": "Iontráil ainm grúpa",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "Chuir {senderName} deireadh leis an nglao",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "encryptionNotEnabled": "Ní chumasaítear criptiú",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "Ní bheidh in ann an criptiú a dhíchumasú níos mó. An bhfuil tú cinnte?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "Cumasaigh pacáiste straoiseoige go huilíoch",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "Caithfidh tú gearrchód straoiseoige agus íomhá a roghnú!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "Pacáistí straoiseoige don seomra",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "Athraíodh an t-ainm taispeána",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "deactivateAccountWarning": "Díghníomhachtaeoidh sé seo do chuntas úsáideora. Ní féidir é seo a chealú! An bhfuil tú cinnte?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "Níorbh fhéidir teachtaireacht a dhíchriptiú: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "contentHasBeenReported": "Tuairiscíodh an t-ábhar do lucht riaracháin an fhreastalaí",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_unban": "Cuir deireadh an cosc den úsáideoir áirithe ón seomra seo",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "changedTheGuestAccessRulesTo": "D'athraigh {username} na rialacha maidir le rochtain aoi chuig: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheGuestAccessRules": "D'athraigh {username} na rialacha rochtana aoi",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "badServerVersionsException": "Tá na leaganacha sonraíochta seo ar fáil faoin freastalaí baile:\n{serverVersions}\nAch níl ach na ceann seo ar fáil faoin aip seo {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "badServerLoginTypesException": "Tá na cineálacha logála isteach seo ar fáil faoin freastalaí baile:\n{serverVersions}\nAch níl ach na ceann seo ar fáil faoin aip seo:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "askSSSSSign": "Chun a bheith in ann an duine eile a shíniú, cuir isteach do phasfhrása stóir sábháilte nó d'eochair téarnaimh.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "D'eochair phoiblí",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "Cuireadh cosc ort ón gcomhrá seo",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "Ní féidir leat cuireadh a thabhairt duit féin",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "Níl tú ag glacadh páirte sa chomhrá seo a thuilleadh",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "Tugtar cuireadh duit chuig an gcomhrá seo",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "Scríobh teachtaireacht…",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "Leis na seoltaí seo is féidir leat do phasfhocal a athshlánú.",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "wipeChatBackup": "Glan do cúltaca comhrá a chruthú eochair slándála nua?",
- "@wipeChatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "Cén fáth ar mhaith leat é seo a thuairisciú?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "Cé a bhfuil cead aige/aici dul isteach sa ghrúpa seo",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "Cé atá in ann an gníomh a dhéanamh",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "D'fhíoraigh tú go rathúil!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "userLeftTheChat": "D'fhág {username} an comhrá",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userAndUserAreTyping": "Tá {username} agus {username2} ag clóscríobh…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userAndOthersAreTyping": "tá {username} agus {count} daoine eile ag clóscríobh…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "unreadChats": "{unreadCount, plural, =1{1 comhrá neamhléite} other{{unreadCount} comhráite neamhléite}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "unknownEncryptionAlgorithm": "Algartam criptithe anaithnid",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "Chuir {username} deireadh an cosc {targetName}",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "tryToSendAgain": "Déan iarracht a sheoladh arís",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "Aistriú ó ghléas eile",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "An iomarca iarratas. Bain triail eile as níos déanaí!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "theyDontMatch": "Níl siad céanna",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "sharedTheLocation": "Roinn {username} an suíomh",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "setPermissionsLevel": "Socraigh leibhéal ceadanna",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "Socraigh nasc cuiridh",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "setGroupDescription": "Socraigh cur síos ar an ngrúpa",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setCustomEmotes": "Socraigh straoiseoga saincheaptha",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "setAsCanonicalAlias": "Socraigh mar phríomh-ailias",
- "@setAsCanonicalAlias": {
- "type": "text",
- "placeholders": {}
- },
- "sentCallInformations": "Sheol {senderName} faisnéis maidir le glaonna",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "sentAVideo": "Sheol {username} físeán",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "Sheol {username} greamán",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "Sheol {username} pictiúr",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "seenByUserAndUser": "Le feiceáil ag {username} agus {username2}",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "seenByUserAndCountOthers": "{count, plural, other{Le feiceáil ag {username} agus {count} daoine eile}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "replaceRoomWithNewerVersion": "Cuir leagan seomra níos nuaí in ionad an tseomra",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "Taispeáin ábhar teachtaireachta saibhir",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "removeYourAvatar": "Bain d'abhatár",
- "@removeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "Cuir deireadh an cosc ón gcomhrá",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "Bainte de ag {username}",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeAllOtherDevices": "Bain gach gléas eile",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "Dhiúltaigh {username} don chuireadh",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "redactedAnEvent": "Rinne {username} cinsire imeacht",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "pleaseFollowInstructionsOnWeb": "Lean na treoracha ar an suíomh gréasáin agus tapáil \"ar aghaidh\".",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "Cuir isteach d'ainm úsáideora le do thoil",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPin": "Cuir isteach d'uimhir PIN le do thoil",
- "@pleaseEnterYourPin": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "Iontráil do phasfhocal le do thoil",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Iontráil ID Matrix le do thoil.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "Iontráil 4 dhigit le do thoil nó fág folamh chun glas aipe a dhíchumasú.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "Cliceáil ar an nasc sa ríomhphost agus ansin lean ar aghaidh.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "Roghnaigh ainm úsáideora le do thoil",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAPasscode": "Roghnaigh paschód le do thoil",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "Roghnaigh íomhá",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "Athraíodh an pasfhocal",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "pasfhrása nó eochair téarnaimh",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "(Optional) Ainm an ghrúpa",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "serverRequiresEmail": "Ní mór don fhreastalaí seo do sheoladh ríomhphoist a bhailíochtú le haghaidh clárúcháin.",
- "@serverRequiresEmail": {},
- "openInMaps": "Oscail i léarscáileanna",
- "@openInMaps": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "Oscail an aip chun teachtaireachtaí a léamh",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "Úps, chuaigh rud éigin mícheart …",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "oopsPushError": "Hoips! Ar an drochuair, tharla earráid nuair a bhí na fógraí brú á mbunú.",
- "@oopsPushError": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "Tá Cúltaca Eochair Ar Líne cumasaithe",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "Tá {count} úsáideoirí ag clóscríobh…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "notificationsEnabledForThisAccount": "Fógraí cumasaithe don chuntas seo",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "Níor aimsíodh aon seomraí…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "Níor chuir tú bealach leis do phasfhocal a aisghabháil fós.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "Tabhair cuireadh dom",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "Is féidir leat neamhaird a dhéanamh d'úsáideoirí atá ag cur isteach ort. Ní bheidh tú in ann aon teachtaireachtaí nó cuireadh seomra a fháil ó na húsáideoirí ar do liosta neamhaird phearsanta.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "Sheolamar ríomhphost chugat",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "Ag fanacht le comhpháirtí glacadh leis na huimhreacha …",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerEmoji": "Ag fanacht le comhpháirtí glacadh leis na straoiseoga…",
- "@waitingPartnerEmoji": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerAcceptRequest": "Ag fanacht le comhpháirtí glacadh leis an iarratas…",
- "@waitingPartnerAcceptRequest": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "Infheicthe do gach duine",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "Infheicthe do na rannpháirtithe go léir",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "Infheictheacht stair na comhrá",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "Ag fíorú cuntas eile",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "userSentUnknownEvent": "Sheol {username} imeacht {type}",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "userIsTyping": "Tá {username} ag clóscríobh…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "unknownEvent": "Imeacht anaithnid '{type}'",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "synchronizingPleaseWait": "Ag sioncrónú... Fan, le do thoil.",
- "@synchronizingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "startedACall": "Thosaigh {senderName} glao",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "spaceIsPublic": "Tá an spás poiblí",
- "@spaceIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "singlesignon": "Sínigh Aonair ar",
- "@singlesignon": {
- "type": "text",
- "placeholders": {}
- },
- "sentAnAudio": "Sheol {username} fuaim",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAFile": "Sheol {username} comhad",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sendAsText": "Seol mar théacs",
- "@sendAsText": {
- "type": "text"
- },
- "sendAMessage": "Seol teachtaireacht",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "Le feiceáil ag {username}",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "roomHasBeenUpgraded": "Uasghrádaíodh an seomra",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "addAccount": "Breisigh cuntas",
- "@addAccount": {},
- "enableMultiAccounts": "(BÉITE) Cumasaigh cuntais iomadúla ar an gléas seo",
- "@enableMultiAccounts": {},
- "commandHint_create": "Cruthaigh comhrá grúpa folamh\nÚsáid --no-encryption chun criptiúchán a dhíchumasú",
- "@commandHint_create": {
- "type": "text",
- "description": "Usage hint for the command /create"
- },
- "link": "Nasc",
- "@link": {},
- "commandHint_clearcache": "Glan an taisce",
- "@commandHint_clearcache": {
- "type": "text",
- "description": "Usage hint for the command /clearcache"
- },
- "videoCallsBetaWarning": "Tabhair faoi deara go bhfuil físglaonna i béite. B'fhéidir nach bhfeidhmíonn siad ar gach ardán chomh atá súil aige ná ar bith.",
- "@videoCallsBetaWarning": {},
- "emailOrUsername": "Ríomhphost nó ainm úsáideora",
- "@emailOrUsername": {},
- "passwordsDoNotMatch": "Níl na pasfhocail chéanna!",
- "@passwordsDoNotMatch": {},
- "pleaseEnterValidEmail": "Iontráil ríomhphost bailí le do thoil.",
- "@pleaseEnterValidEmail": {},
- "repeatPassword": "Scríobh an pasfhocal arís",
- "@repeatPassword": {},
- "pleaseChooseAtLeastChars": "Roghnaigh {min} carachtar ar a laghad.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "bubbleSize": "Méid na mbolgán cainte",
- "@bubbleSize": {
- "type": "text",
- "placeholders": {}
- },
- "yourChatBackupHasBeenSetUp": "Bunaíodh do chúltaca comhrá.",
- "@yourChatBackupHasBeenSetUp": {},
- "openVideoCamera": "Oscail físcheamara",
- "@openVideoCamera": {
- "type": "text",
- "placeholders": {}
+ "you": "Tú",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "Tá",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "Rabhadh!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "Cúlbhrat",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "Deimhnigh",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "Deimhnithe",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "username": "Ainm úsáideora",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "Bain biorán",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "Níl ar fáil",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "Córas",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "Cuir isteach",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "Conas atá tú inniu?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "status": "Staid",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "Léim",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "Roinn",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "Socruithe",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "Seol",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "Slándáil",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Cuardaigh",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Freagair",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Bain",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejoin": "Téigh ar ais isteach",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reject": "Diúltaigh",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "Cláraigh",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "Ag Taifeadadh",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Fáth",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Príobháideacht",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Biorán",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "Daoine",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Pasfhocal",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "participant": "Rannpháirtí",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Comhráite Díreacha",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "ID gléis",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Scrios an teachtaireacht",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Scrios an cuntas",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "Spás nua",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countParticipants": "{count} rannpháirtithe",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
}
-}
\ No newline at end of file
+ },
+ "or": "Nó",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "Ar líne",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "togha",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "As líne",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "Maslach",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Fógraí",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "Aon cheann",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "Níl",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Ar Aghaidh",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Modhnóir",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Teachtaireachtaí",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "Luaigh",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logout": "Logáil amach",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Logáil isteach",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "Solas",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Ceadúnas",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Fág",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invited": "Le cuireadh",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "Neamhurchóideach",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Tabhair neamhaird ar",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Aitheantas",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ID",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "help": "Cabhair",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "Grúpaí",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "Grúpa",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "Seol ar aghaidh",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "homeserver": "Freastalaí baile",
+ "@homeserver": {},
+ "encryption": "Criptiúchán",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Criptithe",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Cuir in eagar",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Gléasanna",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Gléas",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Diúltaigh",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Scrios",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateWithYear": "{day}/{month}/{year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithoutYear": "{day}/{month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "containsUserName": "Coinníonn sé ainm úsáideora",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "Cumraigh comhrá",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandInvalid": "Ordú neamhbhailí",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "commandHint_send": "Seol téacs",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "commandHint_me": "Déan cur síos ort féin",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "clearArchive": "Glan an cartlann",
+ "@clearArchive": {},
+ "chatDetails": "Sonraí comhrá",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackup": "Cúltaca comhrá",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Athraigh cúlbhrat",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "D'athraigh {username} abhatár an chomhrá",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeDeviceName": "Athraigh ainm an ghléis",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "Ní féidir an URI {uri} a oscailt",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "cancel": "Cealaigh",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Teachtaireachtaí bota",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "Bactha",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "Bac Gléas",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "Chuir {username} cosc ar {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "banned": "Coiscthe",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banFromChat": "Toirmisc ón gcomhrá",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "Seol ar iontráil",
+ "@sendOnEnter": {},
+ "archive": "Cartlann",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "Bac aip",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "Is féidir le aon duine dul isteach",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "D'fhreagair {senderName} an glao",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "allChats": "Gach comhrá",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Gach",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "ailias",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Riarthóir",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "Cuir go spás",
+ "@addToSpace": {},
+ "addGroupDescription": "Cuir tuairisc grúpa",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "Cuir ríomhphoist",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "Thosaigh {username} an criptiú ó dheireadh go deireadh",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "account": "Cuntas",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "Ghlac {username} leis an cuireadh",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "accept": "Glac",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "about": "Faoi",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Glac leis an iarratas fíoraithe seo ó {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "An bhfuil tú cinnte gur mhaith leat logáil amach?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "An bhfuil tú cinnte?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "An bhfuil cead ag aoi-úsáideoirí a bheith páirteach",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "Thug {username} cuireadh do {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "hideRedactedEvents": "Folaigh imeachtaí athdhéanta",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "Is féidir le haíonna páirt a ghlacadh",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsAreForbidden": "Tá cosc ar aíonna",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "Grúpa le {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "groupIsPublic": "Tá an grúpa poiblí",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "D'athraigh cur síos an ghrúpa",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "Ón gcuireadh",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourHomeserver": "Cuir isteach do fhreastalaí baile",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "Gearrchód emote neamhbhailí!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "Tá iomaite ann cheana féin!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "Cuir in eagar abhatár an tseomra",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "Cuir ailiasanna an tseomra in eagar",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "Cuir ceadanna an chomhrá in eagar",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "Cuir freastalaí blocáilte in eagar",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "Leibhéal ceada réamhshocraithe",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "Díbhlocáil Gléas",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "Tugadh cuireadh don theagmháil a thar isteach sa grúpa",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Déan comparáid idir na huimhreacha seo a leanas agus déan cinnte go bhfuil na huimhreacha seo a leanas ag teacht le huimhreacha an ghléis eile:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareEmojiMatch": "Déan comparáid agus déan cinnte go bhfuil an emoji seo a leanas comhoiriúnach le emoji an ghléis eile:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandMissing": "Ní ordú é {command}.",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "commandHint_react": "Seol freagra mar fhreagairt",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_op": "Socraigh leibhéal cumhachta an úsáideora áirithe (réamhshocrú: 50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_myroomnick": "Socraigh d'ainm taispeána don seomra seo",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "commandHint_myroomavatar": "Cuir do phictiúr don seomra seo (le mxc-uri)",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_kick": "Bain an t-úsáideoir áirithe den seomra seo",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_join": "Téigh isteach sa seomra áirithe",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_ban": "Cuir cosc ar an úsáideoir áirithe ón seomra seo",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_invite": "Cuir cosc ar an úsáideoir áirithe ón seomra seo",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "chooseAStrongPassword": "Roghnaigh pasfhocal láidir",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "Cuireadh comhrá leis an spás seo",
+ "@chatHasBeenAddedToThisSpace": {},
+ "chatBackupDescription": "Tá do chúltaca comhrá daingnithe le heochair slándála. Déan cinnte nach gcaillfidh tú é.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "Truaillíodh an criptiú",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Athraigh ainm an ghrúpa",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomInvitationLink": "D'athraigh {username} nasc an chuiridh",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "D'athraigh {username} ailiasanna an tseomra",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheProfileAvatar": "D'athraigh {username} a n-abhatár",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "D'athraigh {username} na rialacha ceangail go: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheJoinRules": "D'athraigh {username} na rialacha ceangail",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "D'athraigh {username} infheictheacht na staire go: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibility": "D'athraigh {username} infheictheacht na staire",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "D'athraigh {username} a n-ainm taispeána go: '{displayname}'",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheChatPermissions": "D'athraigh {username} na ceadanna comhrá",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatNameTo": "D'athraigh {username} an t-ainm comhrá go: '{chatname}'",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "D'athraigh {username} an cur síos comhrá go: '{description}'",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "autoplayImages": "Seinn greamáin agus straoiseog beoite go huathoibríoch",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "createdTheChat": "Rinne {username} an comhrá",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "createNewGroup": "Déan grúpa nua",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Cóipeáil ar an ghearrthaisce",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Cóipeáilte ar an ghearrthaisce",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Coinníonn sé ainm taispeána",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "Seol téacs neamhfhoirmithe",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_leave": "Fág an seomra seo",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_html": "Seol téacs HTML-formáidithe",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "chooseAUsername": "Roghnaigh ainm úsáideora",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "Athraigh do abhatár",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Athraigh do stíl",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Athraigh an freastalaí baile",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "Glórphost",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "Físghlao",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "Tosaigh Fíorú",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unmuteChat": "Neamhciúnaigh comhrá",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Folaigh imeachtaí anaithnide",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "Gléas anaithnid",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "Marcáil Léite/Neamhléite",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "Scoránaigh mar ciúnaithe",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "Scoránaigh mar ceann is fearr leat",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "Tá siad céanna",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceName": "Ainm an spáis",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "Cód foinseach",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signUp": "Cláraigh Cuntas",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "Taispeáin pasfhocal",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareLocation": "Roinn suíomh",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "Cuir stádas",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Seol físeán",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendSticker": "Seol greamán",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Seol an bunchóip",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "Seol teachtaireachtaí",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Seol íomhá",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "Seol comhad",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "Seol fuaim",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "Sábháil comhad",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "Leagan seomra",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Iarr cead",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "Tuairiscigh teachtaireacht",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "Bain gléas",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactMessage": "Bain teachtaireacht amach",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "Rialacha na bhfógraí",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Seomraí Poiblí",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "Roghnaigh le do thoil",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "Seinn {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "passwordRecovery": "Aisfháil pasfhocail",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Pasfhocal dearmadta",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Oscail ceamara",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "ag Aimsiú an suíomh…",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Gan cead",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Comhrá nua",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Ciúnaigh comhrá",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Athruithe ball",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Lódáil níos mó…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "Téigh isteach sa seomra",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "isTyping": "ag clóscríobh…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Tabhair cuireadh do theagmháil",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Tabhair neamhaird ar ainm úsáideora",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Úsáideoirí a dtugann tú neamhaird orthu",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Cur síos ar an ngrúpa",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "Ó tar isteach",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "Méid cló",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Tosaigh criptiú",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Cuir ainm taispeána in eagar",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Gníomhach faoi láthair",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Ainm an chomhaid",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "Gach rud réidh!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "Comhrá folamh",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "Gearrchód straoiseoige",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Socruithe straoiseoige",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Íoslódáil comhad",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changePassword": "Athraigh an pasfhocal",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Dorcha",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "create": "Cruthaigh",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Cóipeáil",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Ceangail",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Deimhnigh",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "close": "Dún",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chats": "Comhráite",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Comhrá",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "scanQrCode": "Scan cód QR",
+ "@scanQrCode": {},
+ "inviteText": "Thug {username} cuireadh duit chuig FluffyChat.\n1. Suiteáil FluffyChat: https://fluffychat.im\n2. Cláraigh nó sínigh isteach\n3. Oscail an nasc cuiridh: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareYourInviteLink": "Roinn do nasc cuiridh",
+ "@shareYourInviteLink": {},
+ "noMatrixServer": "Níl {server1} freastalaí Matrix. Úsáid {server2} ina áit sin?",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "noGoogleServicesWarning": "Dealraíonn sé nach bhfuil aon seirbhísí google agat ar do ghuthán. Sin cinneadh maith le do phríobháideacht! Chun fógraí brú a fháil i FluffyChat molaimid https://microg.org/ nó https://unifiedpush.org/ a úsáid.",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "Ní féidir leat criptiú a ghníomhachtú ach a luaithe nach bhfuil an seomra inrochtana go poiblí a thuilleadh.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "Níor aimsíodh aon straoiseoga. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "Gan aon nasc leis an bhfreastalaí",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Iarratas fíoraithe nua!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "Teachtaireacht nua i FluffyChat",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "Bí ar an eolas go dteastaíonn Pantalaimon uait chun criptiú ó cheann go ceann a úsáid anois.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "Bainfear an teachtaireacht do na rannpháirtithe go léir",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "Cinntigh go bhfuil an t-aitheantóir bailí",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWith": "Sínigh isteach le {brand}",
+ "@loginWith": {
+ "type": "text",
+ "placeholders": {
+ "brand": {}
+ }
+ },
+ "logInTo": "Logáil isteach chuig {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "locationPermissionDeniedNotice": "Diúltaíodh cead suímh. Deonaigh dóibh le do thoil go mbeidh tú in ann do shuíomh a roinnt.",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "Tá seirbhísí suímh díchumasaithe. Cuir ar a gcumas le do thoil a bheith in ann do shuíomh a roinnt.",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadingPleaseWait": "Ag lódáil… Fan, le do thoil.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "Lódáil {count} níos mó rannpháirtithe",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "leftTheChat": "Fágadh an comhrá",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "Le feiceáil i bhfad ó shin",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "Gníomhach deireanach: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "kickFromChat": "Caith é amach as an comhrá",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "Chaith {username} {targetName} amach",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "Chaith {username} amach agus chuir cosc ar {targetName} freisin",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "joinedTheChat": "Tháinig {username} isteach sa chomhrá",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invitedUsersOnly": "Úsáideoirí le cuireadh amháin",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "Tabhair cuireadh do theagmháil chuig {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "incorrectPassphraseOrKey": "Pasfhrása nó eochair téarnaimh mícheart",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "Chliceáil mé ar an nasc",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "Cé chomh maslach atá an t-ábhar seo?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Fíor-maslach",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "Tharraing {username} an cuireadh do {targetName} siar",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "goToTheNewRoom": "Téigh go dtí an seomra nua",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorObtainingLocation": "Earráid maidir le suíomh a fháil: {error}",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "enterASpacepName": "Cuir isteach ainm spáis",
+ "@enterASpacepName": {},
+ "enterAnEmailAddress": "Cuir isteach seoladh ríomhphoist",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "Iontráil ainm grúpa",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "Chuir {senderName} deireadh leis an nglao",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "encryptionNotEnabled": "Ní chumasaítear criptiú",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "Ní bheidh in ann an criptiú a dhíchumasú níos mó. An bhfuil tú cinnte?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "Cumasaigh pacáiste straoiseoige go huilíoch",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "Caithfidh tú gearrchód straoiseoige agus íomhá a roghnú!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "Pacáistí straoiseoige don seomra",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "Athraíodh an t-ainm taispeána",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deactivateAccountWarning": "Díghníomhachtaeoidh sé seo do chuntas úsáideora. Ní féidir é seo a chealú! An bhfuil tú cinnte?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "Níorbh fhéidir teachtaireacht a dhíchriptiú: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "contentHasBeenReported": "Tuairiscíodh an t-ábhar do lucht riaracháin an fhreastalaí",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "Cuir deireadh an cosc den úsáideoir áirithe ón seomra seo",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "changedTheGuestAccessRulesTo": "D'athraigh {username} na rialacha maidir le rochtain aoi chuig: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheGuestAccessRules": "D'athraigh {username} na rialacha rochtana aoi",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "badServerVersionsException": "Tá na leaganacha sonraíochta seo ar fáil faoin freastalaí baile:\n{serverVersions}\nAch níl ach na ceann seo ar fáil faoin aip seo {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "badServerLoginTypesException": "Tá na cineálacha logála isteach seo ar fáil faoin freastalaí baile:\n{serverVersions}\nAch níl ach na ceann seo ar fáil faoin aip seo:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "askSSSSSign": "Chun a bheith in ann an duine eile a shíniú, cuir isteach do phasfhrása stóir sábháilte nó d'eochair téarnaimh.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "D'eochair phoiblí",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "Cuireadh cosc ort ón gcomhrá seo",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "Ní féidir leat cuireadh a thabhairt duit féin",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "Níl tú ag glacadh páirte sa chomhrá seo a thuilleadh",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "Tugtar cuireadh duit chuig an gcomhrá seo",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "Scríobh teachtaireacht…",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "Leis na seoltaí seo is féidir leat do phasfhocal a athshlánú.",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "Glan do cúltaca comhrá a chruthú eochair slándála nua?",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "Cén fáth ar mhaith leat é seo a thuairisciú?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "Cé a bhfuil cead aige/aici dul isteach sa ghrúpa seo",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "Cé atá in ann an gníomh a dhéanamh",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "D'fhíoraigh tú go rathúil!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userLeftTheChat": "D'fhág {username} an comhrá",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userAndUserAreTyping": "Tá {username} agus {username2} ag clóscríobh…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userAndOthersAreTyping": "tá {username} agus {count} daoine eile ag clóscríobh…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "unreadChats": "{unreadCount, plural, =1{1 comhrá neamhléite} other{{unreadCount} comhráite neamhléite}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "unknownEncryptionAlgorithm": "Algartam criptithe anaithnid",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "Chuir {username} deireadh an cosc {targetName}",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "tryToSendAgain": "Déan iarracht a sheoladh arís",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "Aistriú ó ghléas eile",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "An iomarca iarratas. Bain triail eile as níos déanaí!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyDontMatch": "Níl siad céanna",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "Roinn {username} an suíomh",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setPermissionsLevel": "Socraigh leibhéal ceadanna",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "Socraigh nasc cuiridh",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setGroupDescription": "Socraigh cur síos ar an ngrúpa",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "Socraigh straoiseoga saincheaptha",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setAsCanonicalAlias": "Socraigh mar phríomh-ailias",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentCallInformations": "Sheol {senderName} faisnéis maidir le glaonna",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "sentAVideo": "Sheol {username} físeán",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "Sheol {username} greamán",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "Sheol {username} pictiúr",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "seenByUserAndUser": "Le feiceáil ag {username} agus {username2}",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{Le feiceáil ag {username} agus {count} daoine eile}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "replaceRoomWithNewerVersion": "Cuir leagan seomra níos nuaí in ionad an tseomra",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "Taispeáin ábhar teachtaireachta saibhir",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "Bain d'abhatár",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "Cuir deireadh an cosc ón gcomhrá",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "Bainte de ag {username}",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeAllOtherDevices": "Bain gach gléas eile",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "Dhiúltaigh {username} don chuireadh",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "Rinne {username} cinsire imeacht",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "pleaseFollowInstructionsOnWeb": "Lean na treoracha ar an suíomh gréasáin agus tapáil \"ar aghaidh\".",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "Cuir isteach d'ainm úsáideora le do thoil",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "Cuir isteach d'uimhir PIN le do thoil",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "Iontráil do phasfhocal le do thoil",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Iontráil ID Matrix le do thoil.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "Iontráil 4 dhigit le do thoil nó fág folamh chun glas aipe a dhíchumasú.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "Cliceáil ar an nasc sa ríomhphost agus ansin lean ar aghaidh.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "Roghnaigh ainm úsáideora le do thoil",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "Roghnaigh paschód le do thoil",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "Roghnaigh íomhá",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "Athraíodh an pasfhocal",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "pasfhrása nó eochair téarnaimh",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "(Optional) Ainm an ghrúpa",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "Ní mór don fhreastalaí seo do sheoladh ríomhphoist a bhailíochtú le haghaidh clárúcháin.",
+ "@serverRequiresEmail": {},
+ "openInMaps": "Oscail i léarscáileanna",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "Oscail an aip chun teachtaireachtaí a léamh",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "Úps, chuaigh rud éigin mícheart …",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "Hoips! Ar an drochuair, tharla earráid nuair a bhí na fógraí brú á mbunú.",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "Tá Cúltaca Eochair Ar Líne cumasaithe",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "Tá {count} úsáideoirí ag clóscríobh…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "notificationsEnabledForThisAccount": "Fógraí cumasaithe don chuntas seo",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "Níor aimsíodh aon seomraí…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "Níor chuir tú bealach leis do phasfhocal a aisghabháil fós.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "Tabhair cuireadh dom",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "Is féidir leat neamhaird a dhéanamh d'úsáideoirí atá ag cur isteach ort. Ní bheidh tú in ann aon teachtaireachtaí nó cuireadh seomra a fháil ó na húsáideoirí ar do liosta neamhaird phearsanta.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "Sheolamar ríomhphost chugat",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "Ag fanacht le comhpháirtí glacadh leis na huimhreacha …",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "Ag fanacht le comhpháirtí glacadh leis na straoiseoga…",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "Ag fanacht le comhpháirtí glacadh leis an iarratas…",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "Infheicthe do gach duine",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "Infheicthe do na rannpháirtithe go léir",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "Infheictheacht stair na comhrá",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "Ag fíorú cuntas eile",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userSentUnknownEvent": "Sheol {username} imeacht {type}",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "userIsTyping": "Tá {username} ag clóscríobh…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "unknownEvent": "Imeacht anaithnid '{type}'",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "synchronizingPleaseWait": "Ag sioncrónú... Fan, le do thoil.",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "Thosaigh {senderName} glao",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "spaceIsPublic": "Tá an spás poiblí",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "Sínigh Aonair ar",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAnAudio": "Sheol {username} fuaim",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAFile": "Sheol {username} comhad",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sendAsText": "Seol mar théacs",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "sendAMessage": "Seol teachtaireacht",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "Le feiceáil ag {username}",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "roomHasBeenUpgraded": "Uasghrádaíodh an seomra",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addAccount": "Breisigh cuntas",
+ "@addAccount": {},
+ "enableMultiAccounts": "(BÉITE) Cumasaigh cuntais iomadúla ar an gléas seo",
+ "@enableMultiAccounts": {},
+ "commandHint_create": "Cruthaigh comhrá grúpa folamh\nÚsáid --no-encryption chun criptiúchán a dhíchumasú",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "link": "Nasc",
+ "@link": {},
+ "commandHint_clearcache": "Glan an taisce",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "videoCallsBetaWarning": "Tabhair faoi deara go bhfuil físglaonna i béite. B'fhéidir nach bhfeidhmíonn siad ar gach ardán chomh atá súil aige ná ar bith.",
+ "@videoCallsBetaWarning": {},
+ "emailOrUsername": "Ríomhphost nó ainm úsáideora",
+ "@emailOrUsername": {},
+ "passwordsDoNotMatch": "Níl na pasfhocail chéanna!",
+ "@passwordsDoNotMatch": {},
+ "pleaseEnterValidEmail": "Iontráil ríomhphost bailí le do thoil.",
+ "@pleaseEnterValidEmail": {},
+ "repeatPassword": "Scríobh an pasfhocal arís",
+ "@repeatPassword": {},
+ "pleaseChooseAtLeastChars": "Roghnaigh {min} carachtar ar a laghad.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "bubbleSize": "Méid na mbolgán cainte",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourChatBackupHasBeenSetUp": "Bunaíodh do chúltaca comhrá.",
+ "@yourChatBackupHasBeenSetUp": {},
+ "openVideoCamera": "Oscail físcheamara",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addToBundle": "",
+ "@addToBundle": {},
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "dehydrate": "",
+ "@dehydrate": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "reportUser": "",
+ "@reportUser": {},
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "yourStory": "",
+ "@yourStory": {},
+ "unverified": "",
+ "@unverified": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "emojis": "",
+ "@emojis": {},
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/l10n/intl_gl.arb b/assets/l10n/intl_gl.arb
index 6dec950cf..a514d8fef 100644
--- a/assets/l10n/intl_gl.arb
+++ b/assets/l10n/intl_gl.arb
@@ -1164,7 +1164,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "Semella que non tes os servizos de google no teu dispositivo. Ben feito! a túa privacidade agradécecho! Para recibir notificacións push en FluffyChat recomendamos usar https://microg.org/ ou https://unifiedpush.org/.",
+ "noGoogleServicesWarning": "Semella que non tes Firebase Cloud Messaging dispoñible no teu dispositivo. Para recibir notificacións push recomendamos que instales MicroG ou Unified Push.",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -2610,5 +2610,54 @@
"@emoteKeyboardNoRecents": {
"type": "text",
"placeholders": {}
- }
+ },
+ "banUserDescription": "Vaise vetar a usuaria na conversa e non poderá entrar outra vez ata que se retire o veto.",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "Vas pechar a sesión neste dispositivo e xa non poderás recibir mensaxes nel.",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "A usuaria vai poder entrar outra vez na conversa se quere.",
+ "@unbanUserDescription": {},
+ "todoLists": "(Beta) Lista de tarefas",
+ "@todoLists": {},
+ "editTodo": "Editar tarefa",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "Non están dispoñibles as notificacións push",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "Engade un título",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "Cando convirtas a esta usuaria en admin non poderás desfacer a acción xa que terá os mesmos permisos ca ti.",
+ "@makeAdminDescription": {},
+ "noTodosYet": "Non se engadiron tarefas aínda a este chat. Crea primeiro a túa lista de tarefas e comeza a colaborar con outras. 📝",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "Vaise mover o chat ao arquivo. Outras usuarias poderán ver que saíches da conversa.",
+ "@archiveRoomDescription": {},
+ "invalidInput": "Contido non válido!",
+ "@invalidInput": {},
+ "hasKnocked": "déronlle unha labazada a {user}",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "wrongPinEntered": "PIN incorrecto! Inténtao outra vez en {seconds} segundos...",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "newTodo": "Nova tarefa",
+ "@newTodo": {},
+ "learnMore": "Saber máis",
+ "@learnMore": {},
+ "todoListChangedError": "Ooi... A lista cambiou mentras ti a editabas.",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "Vaise recrear o chat coa nova versión da sala. Todas as participantes recibirán unha notificación para que cambien ao novo chat. Podes ler máis información acerca das versións das salas en https://spec.matrix.org/latest/rooms/",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "Escribe un número maior de cero",
+ "@pleaseEnterANumber": {},
+ "kickUserDescription": "A usuaria foi expulsada pero non vetada. En conversas públicas a usuaria pode volver cando queira.",
+ "@kickUserDescription": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {}
}
diff --git a/assets/l10n/intl_he.arb b/assets/l10n/intl_he.arb
index 3ebece5d2..8982da464 100644
--- a/assets/l10n/intl_he.arb
+++ b/assets/l10n/intl_he.arb
@@ -1,1412 +1,2648 @@
{
- "@@last_modified": "2021-08-14 12:41:10.036931",
- "about": "אודות",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "קבל",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} קיבל את ההזמנה",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "חשבון",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "{username} הפעיל הצפנה מקצה לקצה",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addGroupDescription": "הוספת תיאור קבוצה",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "מנהל",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "כינוי",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} ענה לשיחה",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "כל אחד יכול להצטרף",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "ארכיון",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "האם משתמשים אורחים מורשים להצטרף",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "האם אתה בטוח?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "כדי שתוכל לחתום על משתמש אחר , הזן את הסיסמה שלך או את מפתח השחזור.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "לקבל בקשת אימות זו מ- {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "שנה סיסמא",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "נעילת אפליקציה",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "ביטול",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAtLeastChars": "אנא כתוב לפחות {min} תווים",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "addEmail": "הוסף מייל",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "all": "הכל",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "allChats": "כל הצ'אטים",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "חסום",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "sendOnEnter": "שלח בכניסה",
- "@sendOnEnter": {},
- "badServerLoginTypesException": "שרת הבית תומך בסוגי הכניסה:\n{serverVersions}\nאבל אפליקציה זו תומכת רק ב:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} שינה את כללי הגישה לאורחים ל: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} שינה את כללי ההצטרפות",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changeWallpaper": "שנה טפט",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatNameTo": "{username} שינה את שם הצ'אט ל: '{chatname}'",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} שינה את קישור ההזמנה",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "passwordsDoNotMatch": "הסיסמאות לא תואמות!",
- "@passwordsDoNotMatch": {},
- "pleaseEnterValidEmail": "אנא כתוב כתובת אימייל תקינה.",
- "@pleaseEnterValidEmail": {},
- "repeatPassword": "כתוב שוב את הסיסמה",
- "@repeatPassword": {},
- "areYouSureYouWantToLogout": "האם אתה בטוח שברצונך לצאת?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "צ׳אט",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "autoplayImages": "הפעל אוטומטית מדבקות ואנימציות מונפשים",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "badServerVersionsException": "שרת הבית תומך בגרסאות:\n{serverVersions}\nאבל האפליקציה הזו תומכת רק ב-{supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "banFromChat": "צאט חסום",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} חסם את {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "חסום מכשיר",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "חסום",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "הודעות בוט",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "לא ניתן לפתוח את ה-URI {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "changeDeviceName": "שנה את שם המכשיר",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "{username} שינה את האווטאר של הצ'אט",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} שינה את תיאור הצ'אט ל: '{description}'",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatPermissions": "{username} שינה את הרשאות הצ'אט",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} שינה את שם התצוגה שלו ל: '{displayname}'",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRules": "{username} שינה את כללי הגישה לאורחים",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibility": "{username} שינה את נראות ההיסטוריה",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} שינה את נראות ההיסטוריה ל: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRulesTo": "{username} שינה את כללי ההצטרפות ל: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} שינה את האווטאר שלו",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} שינה את כינוי החדר",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changeTheHomeserver": "שנה את שרת הבית",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "שנה את הסגנון שלך",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "שנה את שם הקבוצה",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "שינוי האווטאר שלך",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "ההצפנה נפגמה",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "yourChatBackupHasBeenSetUp": "גיבוי הצ'אט שלך הוגדר.",
- "@yourChatBackupHasBeenSetUp": {},
- "chatBackup": "גיבוי צ'אט",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_ban": "חסום את המשתמש הנתון מהחדר הזה",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_clearcache": "נקה מטמון",
- "@commandHint_clearcache": {
- "type": "text",
- "description": "Usage hint for the command /clearcache"
- },
- "commandHint_create": "צור צ'אט קבוצתי ריק\nהשתמש ב--no-encryption כדי להשבית את ההצפנה",
- "@commandHint_create": {
- "type": "text",
- "description": "Usage hint for the command /create"
- },
- "commandHint_discardsession": "התעלם מהסשן",
- "@commandHint_discardsession": {
- "type": "text",
- "description": "Usage hint for the command /discardsession"
- },
- "commandHint_dm": "התחל צ'אט ישיר\nהשתמש ב--no-encryption כדי להשבית את ההצפנה",
- "@commandHint_dm": {
- "type": "text",
- "description": "Usage hint for the command /dm"
- },
- "commandHint_html": "שלח טקסט בתבנית HTML",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_invite": "הזמן את המשתמש הנתון לחדר זה",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "commandHint_join": "הצטרף לחדר הנתון",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_kick": "הסר את המשתמש הנתון מהחדר הזה",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_leave": "עזוב את החדר הזה",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_me": "תאר את עצמך",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "chatDetails": "פרטי צ'אט",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "גיבוי הצ'אט שלך מאובטח באמצעות מפתח אבטחה. אנא וודא שאתה לא מאבד אותו.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatHasBeenAddedToThisSpace": "צ'אט נוסף למרחב הזה",
- "@chatHasBeenAddedToThisSpace": {},
- "chats": "צ'אטים",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "בחר סיסמה חזקה",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "בחר שם משתמש",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "clearArchive": "נקה ארכיון",
- "@clearArchive": {},
- "close": "סגור",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_myroomavatar": "הגדר את התמונה שלך לחדר זה (על ידי mxc-uri)",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_myroomnick": "הגדר את שם התצוגה שלך עבור חדר זה",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "addToSpace": "הוסף לחלל",
- "@addToSpace": {},
- "commandHint_unban": "בטל את החסימה של המשתמש הנתון מהחדר הזה",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "countParticipants": "{count} משתתפים",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "צור",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "{username} יצר את הצ'אט",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "currentlyActive": "פעיל כעת",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "כהה",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{month}-{day}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "defaultPermissionLevel": "רמת הרשאת ברירת מחדל",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "מחק חשבון",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "מחק הודעה",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "דחה",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "מזהה מכשיר",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "התקנים",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "צ'אטים ישירים",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "הורד קובץ",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "ערוך",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "ערוך הרשאות צ'אט",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "ערוך את שם התצוגה",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAliases": "ערוך כינויים לחדר",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "אימוט כבר קיים!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "צ'אט ריק",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "מוצפן",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "enterAGroupName": "הזן שם קבוצה",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "הזן כתובת דואר אלקטרוני",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterASpacepName": "הזן שם חלל",
- "@enterASpacepName": {},
- "enterYourHomeserver": "הזן את שרת הבית שלך",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "הכל מוכן!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "שם קובץ",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "גודל גופן",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "העבר",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "מהצטרפות",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "מההזמנה",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "goToTheNewRoom": "עבור לחדר החדש",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "תיאור קבוצה",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "תיאור הקבוצה השתנה",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "הקבוצה ציבורית",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "קבוצה עם {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "guestsAreForbidden": "אורחים אסורים",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "אורחים יכולים להצטרף",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "id": "מזהה",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "זהות",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "משתמשים שהתעלמו מהם",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "ביטוי סיסמה או מפתח שחזור שגויים",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "הזמן איש קשר",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "invited": "הזמין",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "{username} הזמין את {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invitedUsersOnly": "משתמשים מוזמנים בלבד",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "הזמנה בשבילי",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username} הזמין אותך ל-FluffyChat.\n1. התקן את FluffyChat: https://fluffychat.im\n2. הירשם או היכנס\n3. פתח את קישור ההזמנה: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "isTyping": "מקליד/ה…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "{username} הצטרף לצ'אט",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "joinRoom": "הצטרף לחדר",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "{username} בעט ב {targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "{username} בעט וחסם {targetName}",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickFromChat": "בעיטה מהצ'אט",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "פעילות אחרונה: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "lastSeenLongTimeAgo": "נראה לפני זמן רב",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "עזב את הצ'אט",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "loadingPleaseWait": "טוען אנא המתן.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "טען עוד…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "locationDisabledNotice": "שירותי המיקום מושבתים. אנא הפעל אותם כדי לשתף את המיקום שלך.",
- "@locationDisabledNotice": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "העתק",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_send": "שלח טקסט",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "commandHint_op": "הגדרת רמת צריכת החשמל של המשתמש הנתון (ברירת מחדל: 50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_plain": "שלח טקסט לא מעוצב",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_react": "שלח תשובה כתגובה",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "createNewGroup": "צור קבוצה חדשה",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "מכיל שם משתמש",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "createNewSpace": "חלל חדש",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "אפשר הצפנה",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "הזמן איש קשר אל {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "dateWithYear": "{year}-{month}-{day}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "deactivateAccountWarning": "פעולה זו תשבית את חשבון המשתמש שלך. אי אפשר לבטל את זה! האם אתה בטוח?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "device": "מכשיר",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "group": "קבוצה",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "שם התצוגה השתנה",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "ערוך שרתים חסומים",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "עריכת אווטאר של חדר",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} סיים את השיחה",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "groups": "קבוצות",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "לא תוכל לבטל את ההצפנה יותר. האם אתה בטוח?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "הצפנה",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "errorObtainingLocation": "שגיאה בהשגת מיקום: {error}",
- "@errorObtainingLocation": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "hasWithdrawnTheInvitationFor": "{username} ביטל את ההזמנה עבור {targetName}",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "hideRedactedEvents": "הסתר אירועים מצונזרים",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "ההצפנה אינה מופעלת",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "פוגעני ביותר",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "הסתר אירועים לא ידועים",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "טען {count} משתתפים נוספים",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "homeserver": "שרת בית",
- "@homeserver": {},
- "ignore": "התעלם",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "באפשרותך להתעלם ממשתמשים שמפריעים לך. לא תוכל לקבל הודעות או הזמנות לחדר מהמשתמשים ברשימת ההתעלם האישית שלך.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "התעלם משם משתמש",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "לחצתי על הקישור",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "לעזוב",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "license": "רשיון",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "בהיר",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "מחיקה",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "לֹא פּוֹגֵעַ",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "קביעת תצורה של צ'אט",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "לאשר",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "התחבר",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "איש הקשר הוזמן לקבוצה",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "מכיל שם תצוגה",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "התוכן דווח למנהלי השרת",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "הועתק ללוח הגזירים",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "commandInvalid": "הפקודה אינה חוקית",
- "@commandInvalid": {
- "type": "text"
- },
- "commandMissing": "{command} אינו פקודה.",
- "@commandMissing": {
- "type": "text",
- "placeholders": {
- "command": {}
- },
- "description": "State that {command} is not a valid /command."
- },
- "compareEmojiMatch": "השווה וודא שהאימוג'י הבאים תואמים לאלו של המכשיר השני:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "השווה וודא שהמספרים הבאים תואמים לאלה של המכשיר השני:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "העתק ללוח",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "לא ניתן לפענח הודעה: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "help": "עזרה",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "עד כמה התוכן הזה פוגעני?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "locationPermissionDeniedNotice": "הרשאת המיקום נדחתה. אנא אפשר את היכולת לשתף את מיקומך.",
- "@locationPermissionDeniedNotice": {
- "type": "text",
- "placeholders": {}
- },
- "login": "כניסה",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "מנחה",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "שים לב שאתה צריך Pantalaimon כדי להשתמש בהצפנה מקצה לקצה לעת עתה.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "צ'אט חדש",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "בקשת אימות חדשה!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "next": "הבא",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "לא",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "אין חיבור לשרת",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "אתה יכול להפעיל הצפנה רק כשהחדר כבר לא נגיש לציבור.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "shareYourInviteLink": "שתף את קישור ההזמנה שלך",
- "@shareYourInviteLink": {},
- "noRoomsFound": "לא נמצאו חדרים…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "התראות",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "{count} משתמשים מקלידים…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "obtainingLocation": "משיג מיקום…",
- "@obtainingLocation": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "גיבוי מפתח מקוון מופעל",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "oopsPushError": "אופס! למרבה הצער, אירעה שגיאה בעת הגדרת התראות.",
- "@oopsPushError": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "אופס, משהו השתבש…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "פתח את האפליקציה לקריאת הודעות",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "oneClientLoggedOut": "אחד מהמכשירים שלך התנתק",
- "@oneClientLoggedOut": {},
- "addAccount": "הוסף חשבון",
- "@addAccount": {},
- "editBundlesForAccount": "ערוך חבילות עבור חשבון זה",
- "@editBundlesForAccount": {},
- "participant": "משתתף",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "password": "סיסמה",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "אנא לחץ על הקישור במייל ולאחר מכן המשך.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "אנא הזן 4 ספרות או השאר ריק כדי להשבית את נעילת האפליקציה.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "loginWithOneClick": "היכנס בלחיצה אחת",
- "@loginWithOneClick": {},
- "online": "מחובר/ת",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "addToBundle": "הוסף לחבילה",
- "@addToBundle": {},
- "optionalGroupName": "(אופציונלי) שם קבוצה",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "ביטוי סיסמה או מפתח שחזור",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "שכחתי סיסמה",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "הסיסמה שונתה",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "שחזור סיסמה",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "people": "אנשים",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "בחר תמונה",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "play": "הפעל {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseChoose": "אנא בחר",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAPasscode": "אנא בחר קוד גישה",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "אנא בחר שם משתמש",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "אנא הזן Matrix ID.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "נא הזן את הסיסמה שלך",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPin": "אנא הזן את קוד הpin שלך",
- "@pleaseEnterYourPin": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "קוד pin",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "אנא הזן שם משתמש",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "הודעה חדשה ב-FluffyChat",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "נראה שאין לך שירותי גוגל בטלפון שלך. זו החלטה טובה לפרטיות שלך! כדי לקבל התרעות ב- FluffyChat אנו ממליצים להשתמש https://microg.org/ או https://unifiedpush.org/.",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "noMatrixServer": "{server1} אינו שרת מטריקס, השתמש ב-{server2} במקום זאת?",
- "@noMatrixServer": {
- "type": "text",
- "placeholders": {
- "server1": {},
- "server2": {}
- }
- },
- "none": "ללא",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "עדיין לא הוספת דרך לשחזר את הסיסמה שלך.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "offensive": "פוגעני",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "התראות הופעלו עבור חשבון זה",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "bundleName": "שם החבילה",
- "@bundleName": {},
- "offline": "לא מקוון",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "openVideoCamera": "פתח את המצלמה לסרטון",
- "@openVideoCamera": {
- "type": "text",
- "placeholders": {}
- },
- "removeFromBundle": "הסר מחבילה זו",
- "@removeFromBundle": {},
- "enableMultiAccounts": "(בטא) אפשר ריבוי חשבונות במכשיר זה",
- "@enableMultiAccounts": {},
- "openInMaps": "פתיחה במפות",
- "@openInMaps": {
- "type": "text",
- "placeholders": {}
- },
- "link": "קישור",
- "@link": {},
- "serverRequiresEmail": "שרת זה צריך לאמת את כתובת הדואר האלקטרוני שלך לרישום.",
- "@serverRequiresEmail": {},
- "logout": "יציאה",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "השתקת הצ'אט",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "scanQrCode": "סרוק קוד QR",
- "@scanQrCode": {},
- "noPermission": "אין הרשאה",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "or": "או",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "logInTo": "היכנס אל {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "makeSureTheIdentifierIsValid": "ודא שהמזהה חוקי",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "שינויים בחבר",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "הזכיר",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "ההודעה תוסר עבור כל המשתתפים",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "הודעות",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "פתח מצלמה",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "updateAvailable": "עדכון FluffyChat זמין",
- "@updateAvailable": {},
- "updateNow": "התחל עדכון ברקע",
- "@updateNow": {},
- "bubbleSize": "גודל בועות",
- "@bubbleSize": {
- "type": "text",
- "placeholders": {}
+ "@@last_modified": "2021-08-14 12:41:10.036931",
+ "about": "אודות",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "קבל",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} קיבל את ההזמנה",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
}
-}
\ No newline at end of file
+ },
+ "account": "חשבון",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "{username} הפעיל הצפנה מקצה לקצה",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addGroupDescription": "הוספת תיאור קבוצה",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "מנהל",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "כינוי",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} ענה לשיחה",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "כל אחד יכול להצטרף",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "ארכיון",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "האם משתמשים אורחים מורשים להצטרף",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "האם אתה בטוח?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "כדי שתוכל לחתום על משתמש אחר , הזן את הסיסמה שלך או את מפתח השחזור.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "לקבל בקשת אימות זו מ- {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "שנה סיסמא",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "נעילת אפליקציה",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "ביטול",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAtLeastChars": "אנא כתוב לפחות {min} תווים",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "addEmail": "הוסף מייל",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "הכל",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "כל הצ'אטים",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "חסום",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "שלח בכניסה",
+ "@sendOnEnter": {},
+ "badServerLoginTypesException": "שרת הבית תומך בסוגי הכניסה:\n{serverVersions}\nאבל אפליקציה זו תומכת רק ב:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} שינה את כללי הגישה לאורחים ל: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} שינה את כללי ההצטרפות",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeWallpaper": "שנה טפט",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatNameTo": "{username} שינה את שם הצ'אט ל: '{chatname}'",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} שינה את קישור ההזמנה",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "passwordsDoNotMatch": "הסיסמאות לא תואמות!",
+ "@passwordsDoNotMatch": {},
+ "pleaseEnterValidEmail": "אנא כתוב כתובת אימייל תקינה.",
+ "@pleaseEnterValidEmail": {},
+ "repeatPassword": "כתוב שוב את הסיסמה",
+ "@repeatPassword": {},
+ "areYouSureYouWantToLogout": "האם אתה בטוח שברצונך לצאת?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "צ׳אט",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "autoplayImages": "הפעל אוטומטית מדבקות ואנימציות מונפשים",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "badServerVersionsException": "שרת הבית תומך בגרסאות:\n{serverVersions}\nאבל האפליקציה הזו תומכת רק ב-{supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "banFromChat": "צאט חסום",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} חסם את {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "חסום מכשיר",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "חסום",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "הודעות בוט",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "לא ניתן לפתוח את ה-URI {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "changeDeviceName": "שנה את שם המכשיר",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "{username} שינה את האווטאר של הצ'אט",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} שינה את תיאור הצ'אט ל: '{description}'",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} שינה את הרשאות הצ'אט",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} שינה את שם התצוגה שלו ל: '{displayname}'",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} שינה את כללי הגישה לאורחים",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username} שינה את נראות ההיסטוריה",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} שינה את נראות ההיסטוריה ל: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} שינה את כללי ההצטרפות ל: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} שינה את האווטאר שלו",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} שינה את כינוי החדר",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeTheHomeserver": "שנה את שרת הבית",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "שנה את הסגנון שלך",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "שנה את שם הקבוצה",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "שינוי האווטאר שלך",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "ההצפנה נפגמה",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourChatBackupHasBeenSetUp": "גיבוי הצ'אט שלך הוגדר.",
+ "@yourChatBackupHasBeenSetUp": {},
+ "chatBackup": "גיבוי צ'אט",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "חסום את המשתמש הנתון מהחדר הזה",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_clearcache": "נקה מטמון",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "commandHint_create": "צור צ'אט קבוצתי ריק\nהשתמש ב--no-encryption כדי להשבית את ההצפנה",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "commandHint_discardsession": "התעלם מהסשן",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "commandHint_dm": "התחל צ'אט ישיר\nהשתמש ב--no-encryption כדי להשבית את ההצפנה",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_html": "שלח טקסט בתבנית HTML",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_invite": "הזמן את המשתמש הנתון לחדר זה",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "commandHint_join": "הצטרף לחדר הנתון",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_kick": "הסר את המשתמש הנתון מהחדר הזה",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_leave": "עזוב את החדר הזה",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_me": "תאר את עצמך",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "chatDetails": "פרטי צ'אט",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "גיבוי הצ'אט שלך מאובטח באמצעות מפתח אבטחה. אנא וודא שאתה לא מאבד אותו.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "צ'אט נוסף למרחב הזה",
+ "@chatHasBeenAddedToThisSpace": {},
+ "chats": "צ'אטים",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "בחר סיסמה חזקה",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "בחר שם משתמש",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "clearArchive": "נקה ארכיון",
+ "@clearArchive": {},
+ "close": "סגור",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomavatar": "הגדר את התמונה שלך לחדר זה (על ידי mxc-uri)",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_myroomnick": "הגדר את שם התצוגה שלך עבור חדר זה",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "addToSpace": "הוסף לחלל",
+ "@addToSpace": {},
+ "commandHint_unban": "בטל את החסימה של המשתמש הנתון מהחדר הזה",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "countParticipants": "{count} משתתפים",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "צור",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "{username} יצר את הצ'אט",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "currentlyActive": "פעיל כעת",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "כהה",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{month}-{day}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "defaultPermissionLevel": "רמת הרשאת ברירת מחדל",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "מחק חשבון",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "מחק הודעה",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "דחה",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "מזהה מכשיר",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "התקנים",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "צ'אטים ישירים",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "הורד קובץ",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "ערוך",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "ערוך הרשאות צ'אט",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "ערוך את שם התצוגה",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "ערוך כינויים לחדר",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "אימוט כבר קיים!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "צ'אט ריק",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "מוצפן",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "הזן שם קבוצה",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "הזן כתובת דואר אלקטרוני",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterASpacepName": "הזן שם חלל",
+ "@enterASpacepName": {},
+ "enterYourHomeserver": "הזן את שרת הבית שלך",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "הכל מוכן!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "שם קובץ",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "גודל גופן",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "העבר",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "מהצטרפות",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "מההזמנה",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "עבור לחדר החדש",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "תיאור קבוצה",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "תיאור הקבוצה השתנה",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "הקבוצה ציבורית",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "קבוצה עם {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "guestsAreForbidden": "אורחים אסורים",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "אורחים יכולים להצטרף",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "מזהה",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "זהות",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "משתמשים שהתעלמו מהם",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "ביטוי סיסמה או מפתח שחזור שגויים",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "הזמן איש קשר",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invited": "הזמין",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "{username} הזמין את {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invitedUsersOnly": "משתמשים מוזמנים בלבד",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "הזמנה בשבילי",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username} הזמין אותך ל-FluffyChat.\n1. התקן את FluffyChat: https://fluffychat.im\n2. הירשם או היכנס\n3. פתח את קישור ההזמנה: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "isTyping": "מקליד/ה…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "{username} הצטרף לצ'אט",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "joinRoom": "הצטרף לחדר",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "{username} בעט ב {targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "{username} בעט וחסם {targetName}",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "בעיטה מהצ'אט",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "פעילות אחרונה: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "נראה לפני זמן רב",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "עזב את הצ'אט",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadingPleaseWait": "טוען אנא המתן.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "טען עוד…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "שירותי המיקום מושבתים. אנא הפעל אותם כדי לשתף את המיקום שלך.",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "העתק",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_send": "שלח טקסט",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "commandHint_op": "הגדרת רמת צריכת החשמל של המשתמש הנתון (ברירת מחדל: 50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_plain": "שלח טקסט לא מעוצב",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_react": "שלח תשובה כתגובה",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "createNewGroup": "צור קבוצה חדשה",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "מכיל שם משתמש",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "חלל חדש",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "אפשר הצפנה",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "הזמן איש קשר אל {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "dateWithYear": "{year}-{month}-{day}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "deactivateAccountWarning": "פעולה זו תשבית את חשבון המשתמש שלך. אי אפשר לבטל את זה! האם אתה בטוח?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "מכשיר",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "קבוצה",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "שם התצוגה השתנה",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "ערוך שרתים חסומים",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "עריכת אווטאר של חדר",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} סיים את השיחה",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "groups": "קבוצות",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "לא תוכל לבטל את ההצפנה יותר. האם אתה בטוח?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "הצפנה",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorObtainingLocation": "שגיאה בהשגת מיקום: {error}",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hasWithdrawnTheInvitationFor": "{username} ביטל את ההזמנה עבור {targetName}",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "hideRedactedEvents": "הסתר אירועים מצונזרים",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "ההצפנה אינה מופעלת",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "פוגעני ביותר",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "הסתר אירועים לא ידועים",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "טען {count} משתתפים נוספים",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "homeserver": "שרת בית",
+ "@homeserver": {},
+ "ignore": "התעלם",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "באפשרותך להתעלם ממשתמשים שמפריעים לך. לא תוכל לקבל הודעות או הזמנות לחדר מהמשתמשים ברשימת ההתעלם האישית שלך.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "התעלם משם משתמש",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "לחצתי על הקישור",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "לעזוב",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "רשיון",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "בהיר",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "מחיקה",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "לֹא פּוֹגֵעַ",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "קביעת תצורה של צ'אט",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "לאשר",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "התחבר",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "איש הקשר הוזמן לקבוצה",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "מכיל שם תצוגה",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "התוכן דווח למנהלי השרת",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "הועתק ללוח הגזירים",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandInvalid": "הפקודה אינה חוקית",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "commandMissing": "{command} אינו פקודה.",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "compareEmojiMatch": "השווה וודא שהאימוג'י הבאים תואמים לאלו של המכשיר השני:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "השווה וודא שהמספרים הבאים תואמים לאלה של המכשיר השני:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "העתק ללוח",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "לא ניתן לפענח הודעה: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "help": "עזרה",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "עד כמה התוכן הזה פוגעני?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationPermissionDeniedNotice": "הרשאת המיקום נדחתה. אנא אפשר את היכולת לשתף את מיקומך.",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "כניסה",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "מנחה",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "שים לב שאתה צריך Pantalaimon כדי להשתמש בהצפנה מקצה לקצה לעת עתה.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "צ'אט חדש",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "בקשת אימות חדשה!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "הבא",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "לא",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "אין חיבור לשרת",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "אתה יכול להפעיל הצפנה רק כשהחדר כבר לא נגיש לציבור.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareYourInviteLink": "שתף את קישור ההזמנה שלך",
+ "@shareYourInviteLink": {},
+ "noRoomsFound": "לא נמצאו חדרים…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "התראות",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "{count} משתמשים מקלידים…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "obtainingLocation": "משיג מיקום…",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "גיבוי מפתח מקוון מופעל",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "אופס! למרבה הצער, אירעה שגיאה בעת הגדרת התראות.",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "אופס, משהו השתבש…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "פתח את האפליקציה לקריאת הודעות",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneClientLoggedOut": "אחד מהמכשירים שלך התנתק",
+ "@oneClientLoggedOut": {},
+ "addAccount": "הוסף חשבון",
+ "@addAccount": {},
+ "editBundlesForAccount": "ערוך חבילות עבור חשבון זה",
+ "@editBundlesForAccount": {},
+ "participant": "משתתף",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "סיסמה",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "אנא לחץ על הקישור במייל ולאחר מכן המשך.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "אנא הזן 4 ספרות או השאר ריק כדי להשבית את נעילת האפליקציה.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "היכנס בלחיצה אחת",
+ "@loginWithOneClick": {},
+ "online": "מחובר/ת",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "הוסף לחבילה",
+ "@addToBundle": {},
+ "optionalGroupName": "(אופציונלי) שם קבוצה",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "ביטוי סיסמה או מפתח שחזור",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "שכחתי סיסמה",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "הסיסמה שונתה",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "שחזור סיסמה",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "אנשים",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "בחר תמונה",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "הפעל {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseChoose": "אנא בחר",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "אנא בחר קוד גישה",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "אנא בחר שם משתמש",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "אנא הזן Matrix ID.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "נא הזן את הסיסמה שלך",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "אנא הזן את קוד הpin שלך",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "קוד pin",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "אנא הזן שם משתמש",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "הודעה חדשה ב-FluffyChat",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "נראה שאין לך שירותי גוגל בטלפון שלך. זו החלטה טובה לפרטיות שלך! כדי לקבל התרעות ב- FluffyChat אנו ממליצים להשתמש https://microg.org/ או https://unifiedpush.org/.",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "{server1} אינו שרת מטריקס, השתמש ב-{server2} במקום זאת?",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "none": "ללא",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "עדיין לא הוספת דרך לשחזר את הסיסמה שלך.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "פוגעני",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "התראות הופעלו עבור חשבון זה",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bundleName": "שם החבילה",
+ "@bundleName": {},
+ "offline": "לא מקוון",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "פתח את המצלמה לסרטון",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeFromBundle": "הסר מחבילה זו",
+ "@removeFromBundle": {},
+ "enableMultiAccounts": "(בטא) אפשר ריבוי חשבונות במכשיר זה",
+ "@enableMultiAccounts": {},
+ "openInMaps": "פתיחה במפות",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "קישור",
+ "@link": {},
+ "serverRequiresEmail": "שרת זה צריך לאמת את כתובת הדואר האלקטרוני שלך לרישום.",
+ "@serverRequiresEmail": {},
+ "logout": "יציאה",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "השתקת הצ'אט",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "scanQrCode": "סרוק קוד QR",
+ "@scanQrCode": {},
+ "noPermission": "אין הרשאה",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "או",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "היכנס אל {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "makeSureTheIdentifierIsValid": "ודא שהמזהה חוקי",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "שינויים בחבר",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "הזכיר",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "ההודעה תוסר עבור כל המשתתפים",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "הודעות",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "פתח מצלמה",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "updateAvailable": "עדכון FluffyChat זמין",
+ "@updateAvailable": {},
+ "updateNow": "התחל עדכון ברקע",
+ "@updateNow": {},
+ "bubbleSize": "גודל בועות",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "unverified": "",
+ "@unverified": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/l10n/intl_hi.arb b/assets/l10n/intl_hi.arb
index 9e26dfeeb..d138084cf 100644
--- a/assets/l10n/intl_hi.arb
+++ b/assets/l10n/intl_hi.arb
@@ -1 +1,2620 @@
-{}
\ No newline at end of file
+{
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "darkTheme": "",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "close": "",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "device": "",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "editDisplayname": "",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "banFromChat": "",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "askSSSSSign": "",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "changedTheChatDescriptionTo": "",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "countParticipants": "",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "areGuestsAllowedToJoin": "",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "dateWithoutYear": "",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "couldNotDecryptMessage": "",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheGuestAccessRules": "",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "dateWithYear": "",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "create": "",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "all": "",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "chatBackup": "",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "compareEmojiMatch": "",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomAliases": "",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "help": "",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "chatDetails": "",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "delete": "",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatPermissions": "",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeWallpaper": "",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "acceptedTheInvitation": "",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "changedTheChatNameTo": "",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "account": "",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "placeCall": "",
+ "@placeCall": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "openCamera": "",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "chat": "",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheProfileAvatar": "",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "allChats": "",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "badServerVersionsException": "",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "",
+ "@addToSpace": {},
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "about": "",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "activatedEndToEndEncryption": "",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "fluffychat": "",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "cancel": "",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "appLock": "",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "copiedToClipboard": "",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "confirm": "",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "dateAndTimeOfDay": "",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "logout": "",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "contactHasBeenInvitedToTheGroup": "",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "bannedUser": "",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "askVerificationRequest": "",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "changeTheHomeserver": "",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "changePassword": "",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "chooseAUsername": "",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ }
+}
diff --git a/assets/l10n/intl_hr.arb b/assets/l10n/intl_hr.arb
index cb93cd2d7..1ac5468c5 100644
--- a/assets/l10n/intl_hr.arb
+++ b/assets/l10n/intl_hr.arb
@@ -2309,7 +2309,7 @@
"user": {}
}
},
- "youUnbannedUser": "Ponovo si uključio/la si korisnika {user}",
+ "youUnbannedUser": "Ponovo si uključio/la korisnika {user}",
"@youUnbannedUser": {
"placeholders": {
"user": {}
@@ -2617,5 +2617,45 @@
"placeholders": {
"seconds": {}
}
- }
+ },
+ "hasKnocked": "{user} je pokucao/la",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "pleaseEnterANumber": "Upiši broj veći od 0",
+ "@pleaseEnterANumber": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_hu.arb b/assets/l10n/intl_hu.arb
index 609dc81b0..6a770da8e 100644
--- a/assets/l10n/intl_hu.arb
+++ b/assets/l10n/intl_hu.arb
@@ -2004,5 +2004,651 @@
"placeholders": {}
},
"notAnImage": "Nem kép fájl.",
- "@notAnImage": {}
+ "@notAnImage": {},
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addToBundle": "",
+ "@addToBundle": {},
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "unverified": "",
+ "@unverified": {},
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "learnMore": "",
+ "@learnMore": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "replace": "",
+ "@replace": {},
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "emojis": "",
+ "@emojis": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "placeCall": "",
+ "@placeCall": {}
}
diff --git a/assets/l10n/intl_id.arb b/assets/l10n/intl_id.arb
index 5c028404e..a1b1b1641 100644
--- a/assets/l10n/intl_id.arb
+++ b/assets/l10n/intl_id.arb
@@ -2616,5 +2616,45 @@
"placeholders": {
"seconds": {}
}
- }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_ie.arb b/assets/l10n/intl_ie.arb
index 470f5cd25..a9ec96a1d 100644
--- a/assets/l10n/intl_ie.arb
+++ b/assets/l10n/intl_ie.arb
@@ -1,1213 +1,2635 @@
{
- "group": "Gruppe",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Identitá",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "close": "Cluder",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Confirmar",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Administrator",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "chats": "Conversationes",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Refusar",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Contene li nómine",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Contene li visibil nómine",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "Copiat al Paperiere",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Copiar al Paperiere",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "countParticipants": "{count} participantes",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "createNewSpace": "Crear un spacie",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Activ actualmen",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "deleteAccount": "Destructer li conto",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Remover li missage",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "Modificar blocat servitores",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "Omni es pret!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Extremmen offensiv",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Nómine de file",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "Dimension de fonde",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "Pro adhesion",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "enterYourHomeserver": "Provide vor hem-servitor",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "Pro invitation",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "Gruppe es public",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "help": "Auxilie",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Celar ínconosset evenimentes",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ID",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Ignorat usatores",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUsersOnly": "Solmen invitat usatores",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Aperter li session",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "isTyping": "tippa…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinRoom": "Adherer al chambre",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Cargar plu…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "Invitationes por me",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "Ultim activité: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "mention": "Mentionar",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Sequent",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "No",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "offensive": "Offensiv",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "For del rete",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "OK",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "online": "In li rete",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Cambios inter membres",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Assurdar li conversation",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Crear un conversation",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Nov demanda de verification!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "scanQrCode": "Scannar un code QR",
- "@scanQrCode": {},
- "noRoomsFound": "Null chambres trovat…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "openInMaps": "Aperter in mappas",
- "@openInMaps": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "(Facultativ) Nómine de gruppe",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Contrasigne",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Li contrasigne esset obliviat",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "Reganiar li contrasigne",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChoose": "Ples selecter",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "pushRules": "Regules de push-notificationes",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "redactMessage": "Redacter li missage",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "removeDevice": "Remover li aparate",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "saveFile": "Gardar li file",
- "@saveFile": {
- "type": "text",
- "placeholders": {}
- },
- "recoveryKey": "Clave de regania",
- "@recoveryKey": {},
- "sendMessages": "Inviar missages",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Inviar video",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "shareLocation": "Partir un localisation",
- "@shareLocation": {
- "type": "text",
- "placeholders": {}
- },
- "signUp": "Inregistrar se",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "spaceName": "Nómine de spacie",
- "@spaceName": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "Índisponibil",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "Marcar quam (ín)leet",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "unblockDevice": "Deblocar li aparate",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "Ínconosset aparate",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "Voce-missage",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "Tapete",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "messageType": "Tip de missage",
- "@messageType": {},
- "start": "Iniciar",
- "@start": {},
- "messageInfo": "Information pri li missage",
- "@messageInfo": {},
- "openGallery": "Aperter li galerie",
- "@openGallery": {},
- "unsubscribeStories": "Desabonnar racontas",
- "@unsubscribeStories": {},
- "yourStory": "Vor raconte",
- "@yourStory": {},
- "videoWithSize": "Video ({size})",
- "@videoWithSize": {
- "type": "text",
- "placeholders": {
- "size": {}
- }
- },
- "reportUser": "Raportar li usator",
- "@reportUser": {},
- "matrixWidgets": "Widgets de Matrix",
- "@matrixWidgets": {},
- "voiceCall": "Telefonada",
- "@voiceCall": {},
- "nextAccount": "Sequent conto",
- "@nextAccount": {},
- "previousAccount": "Precedent conto",
- "@previousAccount": {},
- "countFiles": "{count} files",
- "@countFiles": {
- "placeholders": {
- "count": {}
- }
- },
- "all": "Omni",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "create": "Crear",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Conexer",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Copiar",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Obscur",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Missages",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "none": "Null",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "rejoin": "Re-adherer",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Remover",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Notificationes",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Responder",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "dateWithYear": "{day}.{month}.{year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "delete": "Remover",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Sercha",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Aparates",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "Lucid",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Redacter",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "security": "Securitá",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "Parametres",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "share": "Partir",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "Del sistema",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "username": "Nómine de usator",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "verify": "Verificar",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "Inviar",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "Defixar",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "verified": "Verificat",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "Avise!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "Yes",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "time": "Hora",
- "@time": {},
- "publish": "Publicar",
- "@publish": {},
- "sender": "Autor",
- "@sender": {},
- "dismiss": "Demisser",
- "@dismiss": {},
- "custom": "Personalisat",
- "@custom": {},
- "emojis": "Emoji",
- "@emojis": {},
- "widgetCustom": "Personalisat",
- "@widgetCustom": {},
- "users": "Usatores",
- "@users": {},
- "user": "Usator",
- "@user": {},
- "stories": "Racontas",
- "@stories": {},
- "forward": "Avan",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "Gruppes",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Ignorar",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "Ínoffensiv",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "invited": "Invitat",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Forlassar",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Licentie",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "or": "O",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "link": "Ligament",
- "@link": {},
- "participant": "Participante",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Cause",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "people": "Homes",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Fixar",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Privatie",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "Registrante",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "register": "Inregistrar se",
- "@register": {
- "type": "text",
- "placeholders": {}
- },
- "reject": "Refuser",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "repeatPassword": "Repetir li contrasigne",
- "@repeatPassword": {},
- "addEmail": "Adjunter e-post",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "changePassword": "Cambiar li contrasigne",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Cambiar li tapete",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "clearArchive": "Vacuar li archive",
- "@clearArchive": {},
- "commandHint_clearcache": "Vacuar li cache",
- "@commandHint_clearcache": {
- "type": "text",
- "description": "Usage hint for the command /clearcache"
- },
- "commandHint_send": "Inviar li textu",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "configureChat": "Configurar li conversation",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Direct conversationes",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Activar li ciffration",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Descargar li file",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Parametres de emotiones",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "Curt-code de emotion",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "Vacui conversation",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Descrition del gruppe",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "Videotelefonada",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "openChat": "Aperter li conversation",
- "@openChat": {},
- "reportMessage": "Raportar li missage",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Sin permission",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Aperter li cámera",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "showPassword": "Monstrar li contrasigne",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "Inviar un file",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Inviar un image",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Inviar li originale",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "Corresponde",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "anyoneCanJoin": "Alquí posse adherer se",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "obtainingLocation": "Obtenente li localisation…",
- "@obtainingLocation": {
- "type": "text",
- "placeholders": {}
- },
- "iUnderstand": "Yo comprende",
- "@iUnderstand": {},
- "addWidget": "Adjunter un widget",
- "@addWidget": {},
- "addAccount": "Adjunter un conto",
- "@addAccount": {},
- "publicRooms": "Public chambres",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "Iniciar li verification",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "addDescription": "Adjunter un descrition",
- "@addDescription": {},
- "roomVersion": "Version del chambre",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "Inviar audio",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendSticker": "Inviar un nota adhesiv",
- "@sendSticker": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "Assignar li statu",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "Code de fonte",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "play": "Reproducter {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseEnterValidEmail": "Ples provider un valid adresse de e-post.",
- "@pleaseEnterValidEmail": {},
- "about": "Pri",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Acceptar",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "updateNow": "Actualisar in li funde",
- "@updateNow": {},
- "confirmMatrixId": "Ples confirmar vor Matrix ID por destructer vor conto.",
- "@confirmMatrixId": {},
- "allChats": "Omni conversationes",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "Adjunter al spacie",
- "@addToSpace": {},
- "addGroupDescription": "Adjunter un descrition de gruppe",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Esque acceptar ti demanda de verification de {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "autoplayImages": "Automaticmen reproducter animat images",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "sendOnEnter": "Inviar per Enter",
- "@sendOnEnter": {},
- "blocked": "Blocat",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "blockDevice": "Blocar li aparate",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Missages de robots",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "bubbleSize": "Dimension de parlada-bul",
- "@bubbleSize": {
- "type": "text",
- "placeholders": {}
- },
- "changeDeviceName": "Cambiar li nómine de aparate",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Cambiar li hem-servitor",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Conversation",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "Cambiar vor avatar",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackup": "Archive de conversation",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Detallies del conversation",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Selecte un nómine de usator",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_me": "Ples descrir vos",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "commandHint_leave": "Forlassar ti chambre",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandInvalid": "Comande es ínvalid",
- "@commandInvalid": {
- "type": "text"
- },
- "updateAvailable": "Un actualisament de FluffyChat es disponibil",
- "@updateAvailable": {},
- "editWidgets": "Modificar li widgets",
- "@editWidgets": {},
- "widgetEtherpad": "Textual nota",
- "@widgetEtherpad": {},
- "banFromChat": "Bannir del conversation",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Cambiar li stil",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_markasgroup": "Marcar quam gruppe",
- "@commandHint_markasgroup": {},
- "widgetJitsi": "Jitsi Meet",
- "@widgetJitsi": {},
- "screenSharingTitle": "partir li ecran",
- "@screenSharingTitle": {},
- "callingPermissions": "Permissiones de telefonada",
- "@callingPermissions": {},
- "callingAccount": "Conto telefonante",
- "@callingAccount": {},
- "bannedUser": "{username} ha bannit {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "commandHint_html": "Inviar contenete HTML",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_plain": "Inviar textu sin formate",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "editRoomAliases": "Modificar pseudonimos del chambre",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "Emotion ja existe!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "createNewGroup": "Crear un nov gruppe",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "Modificar li avatar del chambre",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "Gruppe con {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "invitedUser": "{username} invitat {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "leftTheChat": "Surtit ex li conversation",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "loadingPleaseWait": "Cargante... ples atender.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} ha acceptat li invitation",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "supposedMxid": "To deve esser {mxid}",
- "@supposedMxid": {
- "type": "text",
- "placeholders": {
- "mxid": {}
- }
- },
- "areYouSureYouWantToLogout": "Esque vu vole cluder li session?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "badServerLoginTypesException": "Li hem-servitor supporta ti tipes de autentication:\n{serverVersions}\nMa ti-ci application supporta solmen:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "cantOpenUri": "Ne successat aperter li adresse {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "badServerVersionsException": "Li hem-servitor supporta ti versiones de specification:\n{serverVersions}\nMa ti-ci application supporta solmen {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "dateWithoutYear": "{day}.{month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "device": "Aparate",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "widgetVideo": "Video",
- "@widgetVideo": {},
- "widgetName": "Nómine",
- "@widgetName": {},
- "account": "Conto",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "pseudonim",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Archive",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Bannit",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Anullar",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Ciffrat",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "Ciffration",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "homeserver": "Hem-servitor",
- "@homeserver": {},
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Moderator",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "newGroup": "Crear un gruppe",
- "@newGroup": {},
- "newSpace": "Crear un spacie",
- "@newSpace": {},
- "enterSpace": "Intrar li spacie",
- "@enterSpace": {},
- "enterRoom": "Intrar li chambre",
- "@enterRoom": {},
- "allSpaces": "Omni spacies",
- "@allSpaces": {},
- "numChats": "{number} conversationes",
- "@numChats": {
- "type": "number",
- "placeholders": {
- "number": {}
- }
- },
- "logout": "Cluder li session",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "send": "Inviar",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "you": "Vu",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "skip": "Omisser",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "status": "Statu",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "unverified": "Ínverificat",
- "@unverified": {},
- "deviceId": "ID de aparate",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Redacter li visibil nómine",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Ignorar un nómine",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Invitar un contacte",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Demandar li permission",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Esque vu es cert?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAtLeastChars": "Ples usar adminim {min} caracteres.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
+ "group": "Gruppe",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Identitá",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "close": "Cluder",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Confirmar",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Administrator",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chats": "Conversationes",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Refusar",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Contene li nómine",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Contene li visibil nómine",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Copiat al Paperiere",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Copiar al Paperiere",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countParticipants": "{count} participantes",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
}
-}
\ No newline at end of file
+ },
+ "createNewSpace": "Crear un spacie",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Activ actualmen",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "deleteAccount": "Destructer li conto",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Remover li missage",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "Modificar blocat servitores",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "Omni es pret!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Extremmen offensiv",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Nómine de file",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "Dimension de fonde",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "Pro adhesion",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourHomeserver": "Provide vor hem-servitor",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "Pro invitation",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "Gruppe es public",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "help": "Auxilie",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Celar ínconosset evenimentes",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ID",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Ignorat usatores",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUsersOnly": "Solmen invitat usatores",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Aperter li session",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "isTyping": "tippa…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "Adherer al chambre",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Cargar plu…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "Invitationes por me",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "Ultim activité: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "mention": "Mentionar",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Sequent",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "No",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "Offensiv",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "For del rete",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "OK",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "In li rete",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Cambios inter membres",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Assurdar li conversation",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Crear un conversation",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Nov demanda de verification!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "scanQrCode": "Scannar un code QR",
+ "@scanQrCode": {},
+ "noRoomsFound": "Null chambres trovat…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "Aperter in mappas",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "(Facultativ) Nómine de gruppe",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Contrasigne",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Li contrasigne esset obliviat",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "Reganiar li contrasigne",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "Ples selecter",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "Regules de push-notificationes",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactMessage": "Redacter li missage",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "Remover li aparate",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "Gardar li file",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "Clave de regania",
+ "@recoveryKey": {},
+ "sendMessages": "Inviar missages",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Inviar video",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareLocation": "Partir un localisation",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signUp": "Inregistrar se",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceName": "Nómine de spacie",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "Índisponibil",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "Marcar quam (ín)leet",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "Deblocar li aparate",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "Ínconosset aparate",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "Voce-missage",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "Tapete",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "Tip de missage",
+ "@messageType": {},
+ "start": "Iniciar",
+ "@start": {},
+ "messageInfo": "Information pri li missage",
+ "@messageInfo": {},
+ "openGallery": "Aperter li galerie",
+ "@openGallery": {},
+ "unsubscribeStories": "Desabonnar racontas",
+ "@unsubscribeStories": {},
+ "yourStory": "Vor raconte",
+ "@yourStory": {},
+ "videoWithSize": "Video ({size})",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "reportUser": "Raportar li usator",
+ "@reportUser": {},
+ "matrixWidgets": "Widgets de Matrix",
+ "@matrixWidgets": {},
+ "voiceCall": "Telefonada",
+ "@voiceCall": {},
+ "nextAccount": "Sequent conto",
+ "@nextAccount": {},
+ "previousAccount": "Precedent conto",
+ "@previousAccount": {},
+ "countFiles": "{count} files",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "all": "Omni",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "create": "Crear",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Conexer",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Copiar",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Obscur",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Missages",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "Null",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejoin": "Re-adherer",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Remover",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Notificationes",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Responder",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateWithYear": "{day}.{month}.{year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "delete": "Remover",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Sercha",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Aparates",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "Lucid",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Redacter",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "Securitá",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "Parametres",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "Partir",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "Del sistema",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "username": "Nómine de usator",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "Verificar",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "Inviar",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "Defixar",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "Verificat",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "Avise!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "Yes",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "time": "Hora",
+ "@time": {},
+ "publish": "Publicar",
+ "@publish": {},
+ "sender": "Autor",
+ "@sender": {},
+ "dismiss": "Demisser",
+ "@dismiss": {},
+ "custom": "Personalisat",
+ "@custom": {},
+ "emojis": "Emoji",
+ "@emojis": {},
+ "widgetCustom": "Personalisat",
+ "@widgetCustom": {},
+ "users": "Usatores",
+ "@users": {},
+ "user": "Usator",
+ "@user": {},
+ "stories": "Racontas",
+ "@stories": {},
+ "forward": "Avan",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "Gruppes",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Ignorar",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "Ínoffensiv",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invited": "Invitat",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Forlassar",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Licentie",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "O",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "Ligament",
+ "@link": {},
+ "participant": "Participante",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Cause",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "Homes",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Fixar",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Privatie",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "Registrante",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "Inregistrar se",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reject": "Refuser",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "Repetir li contrasigne",
+ "@repeatPassword": {},
+ "addEmail": "Adjunter e-post",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changePassword": "Cambiar li contrasigne",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Cambiar li tapete",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "clearArchive": "Vacuar li archive",
+ "@clearArchive": {},
+ "commandHint_clearcache": "Vacuar li cache",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "commandHint_send": "Inviar li textu",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "configureChat": "Configurar li conversation",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Direct conversationes",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Activar li ciffration",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Descargar li file",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Parametres de emotiones",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "Curt-code de emotion",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "Vacui conversation",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Descrition del gruppe",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "Videotelefonada",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openChat": "Aperter li conversation",
+ "@openChat": {},
+ "reportMessage": "Raportar li missage",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Sin permission",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Aperter li cámera",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "Monstrar li contrasigne",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "Inviar un file",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Inviar un image",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Inviar li originale",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "Corresponde",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "Alquí posse adherer se",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "Obtenente li localisation…",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iUnderstand": "Yo comprende",
+ "@iUnderstand": {},
+ "addWidget": "Adjunter un widget",
+ "@addWidget": {},
+ "addAccount": "Adjunter un conto",
+ "@addAccount": {},
+ "publicRooms": "Public chambres",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "Iniciar li verification",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addDescription": "Adjunter un descrition",
+ "@addDescription": {},
+ "roomVersion": "Version del chambre",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "Inviar audio",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendSticker": "Inviar un nota adhesiv",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "Assignar li statu",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "Code de fonte",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "Reproducter {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseEnterValidEmail": "Ples provider un valid adresse de e-post.",
+ "@pleaseEnterValidEmail": {},
+ "about": "Pri",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Acceptar",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "updateNow": "Actualisar in li funde",
+ "@updateNow": {},
+ "confirmMatrixId": "Ples confirmar vor Matrix ID por destructer vor conto.",
+ "@confirmMatrixId": {},
+ "allChats": "Omni conversationes",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "Adjunter al spacie",
+ "@addToSpace": {},
+ "addGroupDescription": "Adjunter un descrition de gruppe",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Esque acceptar ti demanda de verification de {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "Automaticmen reproducter animat images",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "sendOnEnter": "Inviar per Enter",
+ "@sendOnEnter": {},
+ "blocked": "Blocat",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "Blocar li aparate",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Missages de robots",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bubbleSize": "Dimension de parlada-bul",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "Cambiar li nómine de aparate",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Cambiar li hem-servitor",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Conversation",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "Cambiar vor avatar",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackup": "Archive de conversation",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Detallies del conversation",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Selecte un nómine de usator",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_me": "Ples descrir vos",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "commandHint_leave": "Forlassar ti chambre",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandInvalid": "Comande es ínvalid",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "updateAvailable": "Un actualisament de FluffyChat es disponibil",
+ "@updateAvailable": {},
+ "editWidgets": "Modificar li widgets",
+ "@editWidgets": {},
+ "widgetEtherpad": "Textual nota",
+ "@widgetEtherpad": {},
+ "banFromChat": "Bannir del conversation",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Cambiar li stil",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "Marcar quam gruppe",
+ "@commandHint_markasgroup": {},
+ "widgetJitsi": "Jitsi Meet",
+ "@widgetJitsi": {},
+ "screenSharingTitle": "partir li ecran",
+ "@screenSharingTitle": {},
+ "callingPermissions": "Permissiones de telefonada",
+ "@callingPermissions": {},
+ "callingAccount": "Conto telefonante",
+ "@callingAccount": {},
+ "bannedUser": "{username} ha bannit {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "commandHint_html": "Inviar contenete HTML",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_plain": "Inviar textu sin formate",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "editRoomAliases": "Modificar pseudonimos del chambre",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "Emotion ja existe!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewGroup": "Crear un nov gruppe",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "Modificar li avatar del chambre",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "Gruppe con {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "invitedUser": "{username} invitat {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "leftTheChat": "Surtit ex li conversation",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadingPleaseWait": "Cargante... ples atender.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} ha acceptat li invitation",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "supposedMxid": "To deve esser {mxid}",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "Esque vu vole cluder li session?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "Li hem-servitor supporta ti tipes de autentication:\n{serverVersions}\nMa ti-ci application supporta solmen:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "cantOpenUri": "Ne successat aperter li adresse {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "badServerVersionsException": "Li hem-servitor supporta ti versiones de specification:\n{serverVersions}\nMa ti-ci application supporta solmen {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "dateWithoutYear": "{day}.{month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "device": "Aparate",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "Video",
+ "@widgetVideo": {},
+ "widgetName": "Nómine",
+ "@widgetName": {},
+ "account": "Conto",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "pseudonim",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Archive",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Bannit",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Anullar",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Ciffrat",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "Ciffration",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "homeserver": "Hem-servitor",
+ "@homeserver": {},
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Moderator",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "Crear un gruppe",
+ "@newGroup": {},
+ "newSpace": "Crear un spacie",
+ "@newSpace": {},
+ "enterSpace": "Intrar li spacie",
+ "@enterSpace": {},
+ "enterRoom": "Intrar li chambre",
+ "@enterRoom": {},
+ "allSpaces": "Omni spacies",
+ "@allSpaces": {},
+ "numChats": "{number} conversationes",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "logout": "Cluder li session",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "Inviar",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "Vu",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "Omisser",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "status": "Statu",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "Ínverificat",
+ "@unverified": {},
+ "deviceId": "ID de aparate",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Redacter li visibil nómine",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Ignorar un nómine",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Invitar un contacte",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Demandar li permission",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Esque vu es cert?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAtLeastChars": "Ples usar adminim {min} caracteres.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "changeTheNameOfTheGroup": "",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "askSSSSSign": "",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "changedTheChatDescriptionTo": "",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "areGuestsAllowedToJoin": "",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "couldNotDecryptMessage": "",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheGuestAccessRules": "",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addToBundle": "",
+ "@addToBundle": {},
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "changedTheGuestAccessRulesTo": "",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "compareEmojiMatch": "",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "changedTheRoomAliases": "",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "changedTheChatPermissions": "",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "changedTheChatNameTo": "",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "placeCall": "",
+ "@placeCall": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheProfileAvatar": "",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "chooseAStrongPassword": "",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "activatedEndToEndEncryption": "",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "report": "",
+ "@report": {},
+ "compareNumbersMatch": "",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "appLock": "",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "contactHasBeenInvitedToTheGroup": "",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ }
+}
diff --git a/assets/l10n/intl_it.arb b/assets/l10n/intl_it.arb
index a058dd068..b71cbdd8c 100644
--- a/assets/l10n/intl_it.arb
+++ b/assets/l10n/intl_it.arb
@@ -1,1970 +1,2658 @@
{
- "@@last_modified": "2021-08-14 12:41:09.992206",
- "about": "Informazioni",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Accetta",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} ha accettato l'invito",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "Account",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "{username} ha abilitato la crittografia end to end",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addEmail": "Aggiungi e-mail",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "addGroupDescription": "Aggiungi una descrizione al gruppo",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Amministratore",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "alias",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Tutto",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} ha risposto alla chiamata",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "Tutti possono partecipare",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "Blocco dell'app",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Archivia",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "Gli utenti ospiti possono partecipare",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Sei sicuro/a?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSureYouWantToLogout": "Sei sicuro/a di voler uscire?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "Per far accedere l'altra persona, per favore inserisci la tua frase segreta o chiave di recupero.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Accettare questa richiesta di verifica da {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "badServerLoginTypesException": "L'homeserver supporta i tipi di accesso:\n{serverVersions}\nMa questa applicazione supporta solo:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "badServerVersionsException": "L'homeserver supporta le versioni Spec:\n{serverVersions}\nMa questa applicazione supporta solo {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "banFromChat": "Bandisci dalla chat",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Bandito",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} ha bandito {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "Blocca dispositivo",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "Bloccato",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Messaggi bot",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Cancella",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "changeDeviceName": "Cambia nome dispositivo",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "{username} ha cambiato l'avatar della discussione",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} ha cambiato la descrizione della chat in: «{description}»",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatNameTo": "{username} ha cambiato il nome della discussione in: «{chatname}»",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatPermissions": "{username} ha cambiato i permessi della chat",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} ha cambiato nome in: {displayname}",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRules": "{username} ha cambiato le regole di accesso per ospiti",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} ha cambiato le regole di accesso per ospiti con: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibility": "{username} ha cambiato la visibilità della cronologia",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} ha cambiato la visibilità della cronologia in: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} ha cambiato le regole per unirsi",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username} ha cambiato le regole per unirsi in: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} ha cambiato il loro avatar",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} ha cambiato il nome delle stanze",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} ha cambiato il link di invito",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "Cambia la password",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Cambia il server principale",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Cambia il tuo stile",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Cambia il nome del gruppo",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Cambia sfondo",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "La crittografia è corrotta",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Chat",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackup": "Backup delle discussioni",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "Il backup della discussione è protetto da una chiave di sicurezza. Assicurati di non perderla.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Dettagli chat",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chats": "Discussioni",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Scegli una password complessa",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Scegli un username",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "close": "Chiudi",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "compareEmojiMatch": "Confronta e assicurati che le seguenti emoji corrispondano a quelle dell'altro dispositivo:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Confronta e assicurati che le seguenti emoji corrispondano a quelle dell'altro dispositivo:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "Configura la discussione",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Conferma",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Connetti",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "Il contatto è stato invitato nel gruppo",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Contiene nome visibile",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Contiene nome utente",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "Il contenuto è stato segnalato agli amministratori del server",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "Copiato negli Appunti",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Copia",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Copia negli appunti",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "Impossibile decriptare messaggio: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "{count} partecipanti",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "Crea",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "{username} ha creato la chat",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "createNewGroup": "Crea un nuovo gruppo",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Attualmente attivo",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Scuro",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{day}/{month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateWithYear": "{day}/{month}/{year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "deactivateAccountWarning": "Disabiliterà il tuo account. Non puoi tornare indietro! Sei sicuro/a?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "Livello di autorizzazione predefinito",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Cancella",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Elimina l'account",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Elimina il messaggio",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Declina",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Dispositivo",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "ID del dispositivo",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Dispositivi",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Discussioni dirette",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "Il nominativo è stato cambiato",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Scarica il file",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Modifica",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "Modifica i server bloccati",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "Modifica le autorizzazioni discussione",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Modifica il nominativo",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "Modifica l'avatar della stanza",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "L'emote già esiste!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "Shortcode emote invalido!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "Pacchetti emotes della stanza",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Impostazioni emote",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "Scorciatoia emote",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "Devi scegliere una scorciatoia emote e aggiungere un immagine!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "Discussione vuota",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "Abilita i pacchetti emotes globalmente",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Abilita la crittografia",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "Non potrai disabilitare la crittografia in futuro. Sei sicuro?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Crittografato",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "Crittografia",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "Crittografia non abilitata",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} è entrato in chiamata",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "enterAGroupName": "Inserisci un nome del gruppo",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "Inserisci un indirizzo e-mail",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterYourHomeserver": "Inserisci il tuo server principale",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "Tutto pronto!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Estremamente offensivo",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Nome del file",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "Dimensione carattere",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "Inoltra",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "Dall'adesione",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "Dall'invito",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "goToTheNewRoom": "Vai nella nuova stanza",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "group": "Gruppo",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Descrizione del gruppo",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "Descrizione del gruppo modificata",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "Il gruppo è pubblico",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "Gruppi",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "Gruppo con {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "guestsAreForbidden": "Gli ospiti sono vietati",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "Gli ospiti possono partecipare",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "{username} ha ritirato l'invito per {targetName}",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "help": "Aiuto",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "Nascondi gli eventi eliminati",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Nascondi gli eventi sconosciuti",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "Quanto è offensivo questo contenuto?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ID",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Identità",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Ignora",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Utenti ignorati",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "Puoi ignorare gli utenti che ti stanno disturbando. Non sarai in grado di ricevere messaggi o inviti a stanze virtuali dagli utenti nel tuo elenco personale da ignorare.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Ignora il nome utente",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "Ho cliccato sul collegamento",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "Frase segrata o chiave di ripristino errate",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "Inoffensivo",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Invita contatto",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "Invita un contatto a {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "invited": "Invitato/a",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "{username} ha invitato {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invitedUsersOnly": "Solo per gli utenti invitati",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "Invita per me",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username} ti ha invitato/a a FluffyChat.\n1. Installa FluffyChat: https://fluffychat.im\n2. Iscriviti o accedi\n3. Apri il collegamento di invito: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "isTyping": "sta scrivendo…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "{username} si è unito/a alla chat",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "joinRoom": "Unisciti alla stanza",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "{username} ha espulso {targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "{username} ha espulso e bandito {targetName}",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickFromChat": "Espulsa dalla discussione",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "Ultima attività: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "lastSeenLongTimeAgo": "Visto/a molto tempo fa",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Lascia",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "Ha lasciato la chat",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Licenza",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "Chiaro",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "Carica altri {count} partecipanti",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "loadingPleaseWait": "Caricamento… Attendere prego.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Carica di più…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Accedi",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "logInTo": "Accedi a {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "logout": "Esci",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "Assicurati che l'identificatore sia valido",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Cambiamenti di membri",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "Menzione",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Messaggi",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "Il messaggio verrà rimosso per tutti i partecipanti",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Moderatore",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Silenzia discussione",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "Tieni presente che per ora hai bisogno di Pantalaimon per utilizzare la crittografia dall'inizio alla fine.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Nuova discussione",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "Nuovo messaggio in FluffyChat",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Nuova richiesta di verifica!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Avanti",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "No",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "Nessuna connessione al server",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "Nessun emote trovato. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "Puoi attivare la crittografia solo quando la stanza non è più accessibile pubblicamente.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "Sembra che tu non abbia servizi Google sul tuo telefono. Questa è una buona decisione per la tua riservatezza! Per ricevere notifiche push in FluffyChat consigliamo di utilizzare https://microg.org/ o https://unifiedpush.org/.",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "none": "Nessuno",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "Non hai ancora aggiunto un modo per recuperare la tua password.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Nessuna autorizzazione",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "Nessuna stanza trovata…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Notifiche",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "Notifiche abilitate per questo account",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "{count} utenti stanno scrivendo…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "offensive": "Offensivo",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "Fuori linea",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "OK",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "online": "In linea",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "Il backup delle chiavi in linea è abilitato",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "Ops, qualcosa è andato storto…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "Apri l'app per leggere i messaggi",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Apri fotocamera",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "(Opzionale) Nome del gruppo",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "participant": "Partecipante",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "frase segreta o chiave di recupero",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Password",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Password dimenticata",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "La password è stata cambiata",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "Recupero della password",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "people": "Persone",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "Scegli un'immagine",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Fissa",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "play": "Riproduci {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseChooseAPasscode": "Si prega di scegliere un codice di accesso",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "Si prega di scegliere un nome utente",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "Clicca sul collegamenti nell'e-mail e poi procedi.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "Inserisci 4 cifre o lascia vuoto per disabilitare il blocco dell'app.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Inserisci un identificatore Matrix.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "Inserisci la tua password",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "Inserisci il tuo nome utente",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "Segui le istruzioni sul sito web e tocca Avanti.",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Privacy",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "Stanze pubbliche",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "pushRules": "Regole notifiche",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Motivo",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "Registrazione",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "redactedAnEvent": "{username} ha eliminato un evento",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "redactMessage": "Elimina un messaggio",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "reject": "Rifiuta",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "{username} ha rifiutato l'invito",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "rejoin": "Riunisciti",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Rimuovi",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "removeAllOtherDevices": "Rimuovi tutti gli altri dispositivi",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "Rimosso da {username}",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeDevice": "Rimuovi il dispositivo",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "Rimuovi il ban dalla chat",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "Mostra i contenuti ricchi dei messaggi",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "replaceRoomWithNewerVersion": "Sostituisci la stanza con la versione più recente",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Rispondi",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "Segnala il messaggio",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Richiedi l'autorizzazione",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "La stanza è stata aggiornata",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "Versione della stanza",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Cerca",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "security": "Sicurezza",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "Visto da {username}",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "seenByUserAndCountOthers": "{count, plural, other{Visto da {username} e {count} altri}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "seenByUserAndUser": "Visto da {username} e {username2}",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "send": "Invia",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "sendAMessage": "Invia un messaggio",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "Invia un file audio",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "Invia un file",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Invia un'immagine",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "Invia messaggi",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Invia l'originale",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Invia un video",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sentAFile": "{username} ha inviato un file",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "{username} ha inviato un file audio",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "{username} ha inviato un'immagine",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "{username} ha inviato un adesivo",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAVideo": "{username} ha inviato un video",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentCallInformations": "{senderName} ha inviato informazioni sulla chiamata",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "setCustomEmotes": "Imposta emoticon personalizzate",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "setGroupDescription": "Imposta una descrizione del gruppo",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "Imposta il collegamento di invito",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "setPermissionsLevel": "Imposta il livello di autorizzazione",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "Imposta lo stato",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "Impostazioni",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "share": "Condividi",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "sharedTheLocation": "{username} ha condiviso la sua posizione",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "showPassword": "Mostra la password",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "signUp": "Iscriviti",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "Ignora",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "Codice sorgente",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "startedACall": "{senderName} ha iniziato una chiamata",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "status": "Stato",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "statusExampleMessage": "Come stai oggi?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "Invia",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "Sistema",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "theyDontMatch": "Non corrispondono",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "Corrispondono",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "toggleFavorite": "Attiva/disattiva preferito",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "Attiva/disattiva il silenziatore",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "Segna come letto / non letto",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "Troppe richieste. Per favore riprova più tardi!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "Trasferimento da un altro dispositivo",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "tryToSendAgain": "Prova a inviare di nuovo",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "Non disponibile",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "{username} ha rimosso il bando di {targetName}",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "unblockDevice": "Sblocca il dispositivo",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "Dispositivo sconosciuto",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEncryptionAlgorithm": "Algoritmo di crittografia sconosciuto",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEvent": "Evento sconosciuto «{tipo}»",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "unmuteChat": "Riattiva l'audio della discussione",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "Rimuovi",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "unreadChats": "{unreadCount, plural, other{{unreadCount} discussioni non lette}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "userAndOthersAreTyping": "{username} e {count} altri stanno scrivendo…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "userAndUserAreTyping": "{username} e {username2} stanno scrivendo…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userIsTyping": "{username} sta scrivendo…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userLeftTheChat": "{username} ha lasciato la chat",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "username": "Nome utente",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "userSentUnknownEvent": "{username} ha inviato un evento {type}",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "verified": "Verificato",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "verify": "Verifica",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "Avvia la verifica",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "Hai verificato con successo!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "Verifica dell'altro account",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "Videochiamata",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "Visibilità della cronologia della discussione",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "Visibile a tutti i partecipanti",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "Visibile a tutti",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "Messaggio vocale",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerAcceptRequest": "In attesa che il partner accetti la richiesta…",
- "@waitingPartnerAcceptRequest": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerEmoji": "In attesa che il partner accetti l'emoji…",
- "@waitingPartnerEmoji": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "In attesa che il partner accetti i numeri…",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "Immagine di sfondo",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "Attenzione!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "Ti abbiamo inviato un'e-mail",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "Chi può eseguire quale azione",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "Chi è autorizzato a unirsi a questo gruppo",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "Perché vuoi segnalarlo?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "wipeChatBackup": "Cancellare il backup della discussione per creare una nuova chiave di sicurezza?",
- "@wipeChatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "Con questi indirizzi puoi recuperare la tua password se necessario.",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "Scrivi un messaggio…",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "Sì",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "you": "Tu",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "Sei invitato/a a questa chat",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "Non stai più partecipando a questa chat",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "Non puoi invitare te stesso",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "Sei stato/a bandito/a da questa chat",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "La tua chiave pubblica",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
- },
- "singlesignon": "Accesso singolo",
- "@singlesignon": {
- "type": "text",
- "placeholders": {}
- },
- "setAsCanonicalAlias": "Imposta come alias principale",
- "@setAsCanonicalAlias": {
- "type": "text",
- "placeholders": {}
- },
- "removeYourAvatar": "Rimuovi il tuo avatar",
- "@removeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "register": "Registrati",
- "@register": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPin": "Per favore inserisci il tuo PIN",
- "@pleaseEnterYourPin": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChoose": "Si prega di scegliere",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "or": "O",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "oopsPushError": "Ops! Purtroppo si è verificato un errore durante l'impostazione delle notifiche push.",
- "@oopsPushError": {
- "type": "text",
- "placeholders": {}
- },
- "loginWith": "Accedi con {brand}",
- "@loginWith": {
- "type": "text",
- "placeholders": {
- "brand": {}
- }
- },
- "editRoomAliases": "Modifica gli alias della stanza",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "clearArchive": "Cancella archivio",
- "@clearArchive": {},
- "changeYourAvatar": "Cambia il tuo avatar",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "allChats": "Tutte le chat",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "Aggiungi a uno spazio",
- "@addToSpace": {},
- "passwordsDoNotMatch": "Le password non corrispondono!",
- "@passwordsDoNotMatch": {},
- "pleaseEnterValidEmail": "Inserire un indirizzo email valido.",
- "@pleaseEnterValidEmail": {},
- "commandHint_leave": "Lascia questa stanza",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_ban": "Banna l'utente specificato da questa stanza.",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "sendSticker": "Invia sticker",
- "@sendSticker": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_html": "Invia testo formattato in HTML",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_plain": "Invia testo non formattato",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_send": "Invia testo",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "locationDisabledNotice": "I servizi di localizzazione sono disabilitati. Per favore abilitali per poter condividere la tua posizione.",
- "@locationDisabledNotice": {
- "type": "text",
- "placeholders": {}
- },
- "saveFile": "Salva file",
- "@saveFile": {
- "type": "text",
- "placeholders": {}
- },
- "serverRequiresEmail": "Questo server ha bisogno di validare la tua email per la registrazione.",
- "@serverRequiresEmail": {},
- "openInMaps": "Apri in maps",
- "@openInMaps": {
- "type": "text",
- "placeholders": {}
- },
- "scanQrCode": "Scansiona codice QR",
- "@scanQrCode": {},
- "addAccount": "Aggiungi account",
- "@addAccount": {},
- "unverified": "Non verificato",
- "@unverified": {},
- "pleaseChooseAtLeastChars": "Per favore scegli almeno {min} caratteri.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "sendAsText": "Invia come testo",
- "@sendAsText": {
- "type": "text"
- },
- "repeatPassword": "Ripeti password",
- "@repeatPassword": {},
- "autoplayImages": "Riproduci automaticamente sticker animati ed emoticon",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "cantOpenUri": "Can't open the URI {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "commandInvalid": "Comando non valido",
- "@commandInvalid": {
- "type": "text"
- },
- "link": "Link",
- "@link": {},
- "shareLocation": "Condividi posizione",
- "@shareLocation": {
- "type": "text",
- "placeholders": {}
- },
- "yourChatBackupHasBeenSetUp": "Il tuo backup delle chat è stato configurato.",
- "@yourChatBackupHasBeenSetUp": {}
-}
\ No newline at end of file
+ "@@last_modified": "2021-08-14 12:41:09.992206",
+ "about": "Informazioni",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Accetta",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} ha accettato l'invito",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "account": "Account",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "{username} ha abilitato la crittografia end to end",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addEmail": "Aggiungi e-mail",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addGroupDescription": "Aggiungi una descrizione al gruppo",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Amministratore",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "alias",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Tutto",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} ha risposto alla chiamata",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "Tutti possono partecipare",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "Blocco dell'app",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Archivia",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "Gli utenti ospiti possono partecipare",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Sei sicuro/a?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSureYouWantToLogout": "Sei sicuro/a di voler uscire?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "Per far accedere l'altra persona, per favore inserisci la tua frase segreta o chiave di recupero.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Accettare questa richiesta di verifica da {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "badServerLoginTypesException": "L'homeserver supporta i tipi di accesso:\n{serverVersions}\nMa questa applicazione supporta solo:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "badServerVersionsException": "L'homeserver supporta le versioni Spec:\n{serverVersions}\nMa questa applicazione supporta solo {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "banFromChat": "Bandisci dalla chat",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Bandito",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} ha bandito {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "Blocca dispositivo",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "Bloccato",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Messaggi bot",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Cancella",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "Cambia nome dispositivo",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "{username} ha cambiato l'avatar della discussione",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} ha cambiato la descrizione della chat in: «{description}»",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} ha cambiato il nome della discussione in: «{chatname}»",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} ha cambiato i permessi della chat",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} ha cambiato nome in: {displayname}",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} ha cambiato le regole di accesso per ospiti",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} ha cambiato le regole di accesso per ospiti con: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username} ha cambiato la visibilità della cronologia",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} ha cambiato la visibilità della cronologia in: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} ha cambiato le regole per unirsi",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} ha cambiato le regole per unirsi in: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} ha cambiato il loro avatar",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} ha cambiato il nome delle stanze",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} ha cambiato il link di invito",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "Cambia la password",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Cambia il server principale",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Cambia il tuo stile",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Cambia il nome del gruppo",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Cambia sfondo",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "La crittografia è corrotta",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Chat",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackup": "Backup delle discussioni",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "Il backup della discussione è protetto da una chiave di sicurezza. Assicurati di non perderla.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Dettagli chat",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chats": "Discussioni",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Scegli una password complessa",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Scegli un username",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "close": "Chiudi",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareEmojiMatch": "Confronta e assicurati che le seguenti emoji corrispondano a quelle dell'altro dispositivo:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Confronta e assicurati che le seguenti emoji corrispondano a quelle dell'altro dispositivo:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "Configura la discussione",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Conferma",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Connetti",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "Il contatto è stato invitato nel gruppo",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Contiene nome visibile",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Contiene nome utente",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "Il contenuto è stato segnalato agli amministratori del server",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Copiato negli Appunti",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Copia",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Copia negli appunti",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "Impossibile decriptare messaggio: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "{count} partecipanti",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "Crea",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "{username} ha creato la chat",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "createNewGroup": "Crea un nuovo gruppo",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Attualmente attivo",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Scuro",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{day}/{month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithYear": "{day}/{month}/{year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "deactivateAccountWarning": "Disabiliterà il tuo account. Non puoi tornare indietro! Sei sicuro/a?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "Livello di autorizzazione predefinito",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Cancella",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Elimina l'account",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Elimina il messaggio",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Declina",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Dispositivo",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "ID del dispositivo",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Dispositivi",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Discussioni dirette",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "Il nominativo è stato cambiato",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Scarica il file",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Modifica",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "Modifica i server bloccati",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "Modifica le autorizzazioni discussione",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Modifica il nominativo",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "Modifica l'avatar della stanza",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "L'emote già esiste!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "Shortcode emote invalido!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "Pacchetti emotes della stanza",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Impostazioni emote",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "Scorciatoia emote",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "Devi scegliere una scorciatoia emote e aggiungere un immagine!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "Discussione vuota",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "Abilita i pacchetti emotes globalmente",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Abilita la crittografia",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "Non potrai disabilitare la crittografia in futuro. Sei sicuro?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Crittografato",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "Crittografia",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "Crittografia non abilitata",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} è entrato in chiamata",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "enterAGroupName": "Inserisci un nome del gruppo",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "Inserisci un indirizzo e-mail",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourHomeserver": "Inserisci il tuo server principale",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "Tutto pronto!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Estremamente offensivo",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Nome del file",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "Dimensione carattere",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "Inoltra",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "Dall'adesione",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "Dall'invito",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "Vai nella nuova stanza",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "Gruppo",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Descrizione del gruppo",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "Descrizione del gruppo modificata",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "Il gruppo è pubblico",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "Gruppi",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "Gruppo con {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "guestsAreForbidden": "Gli ospiti sono vietati",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "Gli ospiti possono partecipare",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "{username} ha ritirato l'invito per {targetName}",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "help": "Aiuto",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "Nascondi gli eventi eliminati",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Nascondi gli eventi sconosciuti",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "Quanto è offensivo questo contenuto?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ID",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Identità",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Ignora",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Utenti ignorati",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "Puoi ignorare gli utenti che ti stanno disturbando. Non sarai in grado di ricevere messaggi o inviti a stanze virtuali dagli utenti nel tuo elenco personale da ignorare.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Ignora il nome utente",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "Ho cliccato sul collegamento",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "Frase segrata o chiave di ripristino errate",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "Inoffensivo",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Invita contatto",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "Invita un contatto a {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "invited": "Invitato/a",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "{username} ha invitato {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invitedUsersOnly": "Solo per gli utenti invitati",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "Invita per me",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username} ti ha invitato/a a FluffyChat.\n1. Installa FluffyChat: https://fluffychat.im\n2. Iscriviti o accedi\n3. Apri il collegamento di invito: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "isTyping": "sta scrivendo…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "{username} si è unito/a alla chat",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "joinRoom": "Unisciti alla stanza",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "{username} ha espulso {targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "{username} ha espulso e bandito {targetName}",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "Espulsa dalla discussione",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "Ultima attività: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "Visto/a molto tempo fa",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Lascia",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "Ha lasciato la chat",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Licenza",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "Chiaro",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "Carica altri {count} partecipanti",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "loadingPleaseWait": "Caricamento… Attendere prego.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Carica di più…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Accedi",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "Accedi a {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "logout": "Esci",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "Assicurati che l'identificatore sia valido",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Cambiamenti di membri",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "Menzione",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Messaggi",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "Il messaggio verrà rimosso per tutti i partecipanti",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Moderatore",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Silenzia discussione",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "Tieni presente che per ora hai bisogno di Pantalaimon per utilizzare la crittografia dall'inizio alla fine.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Nuova discussione",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "Nuovo messaggio in FluffyChat",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Nuova richiesta di verifica!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Avanti",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "No",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "Nessuna connessione al server",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "Nessun emote trovato. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "Puoi attivare la crittografia solo quando la stanza non è più accessibile pubblicamente.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "Sembra che tu non abbia servizi Google sul tuo telefono. Questa è una buona decisione per la tua riservatezza! Per ricevere notifiche push in FluffyChat consigliamo di utilizzare https://microg.org/ o https://unifiedpush.org/.",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "Nessuno",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "Non hai ancora aggiunto un modo per recuperare la tua password.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Nessuna autorizzazione",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "Nessuna stanza trovata…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Notifiche",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "Notifiche abilitate per questo account",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "{count} utenti stanno scrivendo…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "offensive": "Offensivo",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "Fuori linea",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "OK",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "In linea",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "Il backup delle chiavi in linea è abilitato",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "Ops, qualcosa è andato storto…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "Apri l'app per leggere i messaggi",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Apri fotocamera",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "(Opzionale) Nome del gruppo",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "participant": "Partecipante",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "frase segreta o chiave di recupero",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Password",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Password dimenticata",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "La password è stata cambiata",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "Recupero della password",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "Persone",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "Scegli un'immagine",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Fissa",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "Riproduci {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseChooseAPasscode": "Si prega di scegliere un codice di accesso",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "Si prega di scegliere un nome utente",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "Clicca sul collegamenti nell'e-mail e poi procedi.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "Inserisci 4 cifre o lascia vuoto per disabilitare il blocco dell'app.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Inserisci un identificatore Matrix.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "Inserisci la tua password",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "Inserisci il tuo nome utente",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "Segui le istruzioni sul sito web e tocca Avanti.",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Privacy",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Stanze pubbliche",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "Regole notifiche",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Motivo",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "Registrazione",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "{username} ha eliminato un evento",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactMessage": "Elimina un messaggio",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reject": "Rifiuta",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "{username} ha rifiutato l'invito",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "rejoin": "Riunisciti",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Rimuovi",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "Rimuovi tutti gli altri dispositivi",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "Rimosso da {username}",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeDevice": "Rimuovi il dispositivo",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "Rimuovi il ban dalla chat",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "Mostra i contenuti ricchi dei messaggi",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replaceRoomWithNewerVersion": "Sostituisci la stanza con la versione più recente",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Rispondi",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "Segnala il messaggio",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Richiedi l'autorizzazione",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "La stanza è stata aggiornata",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "Versione della stanza",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Cerca",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "Sicurezza",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "Visto da {username}",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{Visto da {username} e {count} altri}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "seenByUserAndUser": "Visto da {username} e {username2}",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "send": "Invia",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAMessage": "Invia un messaggio",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "Invia un file audio",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "Invia un file",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Invia un'immagine",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "Invia messaggi",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Invia l'originale",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Invia un video",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "{username} ha inviato un file",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "{username} ha inviato un file audio",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "{username} ha inviato un'immagine",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "{username} ha inviato un adesivo",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "{username} ha inviato un video",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentCallInformations": "{senderName} ha inviato informazioni sulla chiamata",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "setCustomEmotes": "Imposta emoticon personalizzate",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setGroupDescription": "Imposta una descrizione del gruppo",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "Imposta il collegamento di invito",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "Imposta il livello di autorizzazione",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "Imposta lo stato",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "Impostazioni",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "Condividi",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "{username} ha condiviso la sua posizione",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "showPassword": "Mostra la password",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signUp": "Iscriviti",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "Ignora",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "Codice sorgente",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "{senderName} ha iniziato una chiamata",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "status": "Stato",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "Come stai oggi?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "Invia",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "Sistema",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyDontMatch": "Non corrispondono",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "Corrispondono",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "Attiva/disattiva preferito",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "Attiva/disattiva il silenziatore",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "Segna come letto / non letto",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "Troppe richieste. Per favore riprova più tardi!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "Trasferimento da un altro dispositivo",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "Prova a inviare di nuovo",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "Non disponibile",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "{username} ha rimosso il bando di {targetName}",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "unblockDevice": "Sblocca il dispositivo",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "Dispositivo sconosciuto",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEncryptionAlgorithm": "Algoritmo di crittografia sconosciuto",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "Evento sconosciuto «{tipo}»",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "unmuteChat": "Riattiva l'audio della discussione",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "Rimuovi",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unreadChats": "{unreadCount, plural, other{{unreadCount} discussioni non lette}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "userAndOthersAreTyping": "{username} e {count} altri stanno scrivendo…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "userAndUserAreTyping": "{username} e {username2} stanno scrivendo…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userIsTyping": "{username} sta scrivendo…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userLeftTheChat": "{username} ha lasciato la chat",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "username": "Nome utente",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userSentUnknownEvent": "{username} ha inviato un evento {type}",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "verified": "Verificato",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "Verifica",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "Avvia la verifica",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "Hai verificato con successo!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "Verifica dell'altro account",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "Videochiamata",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "Visibilità della cronologia della discussione",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "Visibile a tutti i partecipanti",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "Visibile a tutti",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "Messaggio vocale",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "In attesa che il partner accetti la richiesta…",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "In attesa che il partner accetti l'emoji…",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "In attesa che il partner accetti i numeri…",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "Immagine di sfondo",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "Attenzione!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "Ti abbiamo inviato un'e-mail",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "Chi può eseguire quale azione",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "Chi è autorizzato a unirsi a questo gruppo",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "Perché vuoi segnalarlo?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "Cancellare il backup della discussione per creare una nuova chiave di sicurezza?",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "Con questi indirizzi puoi recuperare la tua password se necessario.",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "Scrivi un messaggio…",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "Sì",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "Tu",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "Sei invitato/a a questa chat",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "Non stai più partecipando a questa chat",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "Non puoi invitare te stesso",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "Sei stato/a bandito/a da questa chat",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "La tua chiave pubblica",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "Accesso singolo",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setAsCanonicalAlias": "Imposta come alias principale",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "Rimuovi il tuo avatar",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "Registrati",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "Per favore inserisci il tuo PIN",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "Si prega di scegliere",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "O",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "Ops! Purtroppo si è verificato un errore durante l'impostazione delle notifiche push.",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWith": "Accedi con {brand}",
+ "@loginWith": {
+ "type": "text",
+ "placeholders": {
+ "brand": {}
+ }
+ },
+ "editRoomAliases": "Modifica gli alias della stanza",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "clearArchive": "Cancella archivio",
+ "@clearArchive": {},
+ "changeYourAvatar": "Cambia il tuo avatar",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "Tutte le chat",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "Aggiungi a uno spazio",
+ "@addToSpace": {},
+ "passwordsDoNotMatch": "Le password non corrispondono!",
+ "@passwordsDoNotMatch": {},
+ "pleaseEnterValidEmail": "Inserire un indirizzo email valido.",
+ "@pleaseEnterValidEmail": {},
+ "commandHint_leave": "Lascia questa stanza",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_ban": "Banna l'utente specificato da questa stanza.",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "sendSticker": "Invia sticker",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "Invia testo formattato in HTML",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_plain": "Invia testo non formattato",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_send": "Invia testo",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "locationDisabledNotice": "I servizi di localizzazione sono disabilitati. Per favore abilitali per poter condividere la tua posizione.",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "Salva file",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "Questo server ha bisogno di validare la tua email per la registrazione.",
+ "@serverRequiresEmail": {},
+ "openInMaps": "Apri in maps",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "scanQrCode": "Scansiona codice QR",
+ "@scanQrCode": {},
+ "addAccount": "Aggiungi account",
+ "@addAccount": {},
+ "unverified": "Non verificato",
+ "@unverified": {},
+ "pleaseChooseAtLeastChars": "Per favore scegli almeno {min} caratteri.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "sendAsText": "Invia come testo",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "repeatPassword": "Ripeti password",
+ "@repeatPassword": {},
+ "autoplayImages": "Riproduci automaticamente sticker animati ed emoticon",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "cantOpenUri": "Can't open the URI {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "commandInvalid": "Comando non valido",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "link": "Link",
+ "@link": {},
+ "shareLocation": "Condividi posizione",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourChatBackupHasBeenSetUp": "Il tuo backup delle chat è stato configurato.",
+ "@yourChatBackupHasBeenSetUp": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addToBundle": "",
+ "@addToBundle": {},
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "reportUser": "",
+ "@reportUser": {},
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "yourStory": "",
+ "@yourStory": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "emojis": "",
+ "@emojis": {},
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/l10n/intl_ja.arb b/assets/l10n/intl_ja.arb
index 90030908d..1f66efd86 100644
--- a/assets/l10n/intl_ja.arb
+++ b/assets/l10n/intl_ja.arb
@@ -2395,5 +2395,260 @@
}
},
"signInWithPassword": "パスワードでログイン",
- "@signInWithPassword": {}
+ "@signInWithPassword": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "report": "",
+ "@report": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "replace": "",
+ "@replace": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "invite": "",
+ "@invite": {},
+ "continueWith": "",
+ "@continueWith": {}
}
diff --git a/assets/l10n/intl_ko.arb b/assets/l10n/intl_ko.arb
index 4fd9fe4cf..2ed77daaf 100644
--- a/assets/l10n/intl_ko.arb
+++ b/assets/l10n/intl_ko.arb
@@ -1,2236 +1,2660 @@
{
- "@@last_modified": "2021-08-14 12:41:09.975135",
- "about": "소개",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "수락",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "allChats": "모든 채팅",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "URI {uri}를 열 수 없습니다",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "chats": "채팅",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_ban": "이 룸에서 주어진 유저 밴하기",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_html": "HTML 형식의 문자 보내기",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_invite": "주어진 유저 이 룸에 초대하기",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "commandHint_leave": "이 룸 나가기",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_me": "자신을 소개하세요",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "commandHint_plain": "형식이 지정되지 않은 문자 보내기",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_send": "문자 보내기",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "commandHint_unban": "주어진 유저 이 룸에서 밴 해제하기",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "loadMore": "더 불러오기…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "{count}명의 참가자 더 표시",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "lightTheme": "라이트",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "license": "라이선스",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "help": "도움",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "게스트가 들어올 수 있음",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "그룹",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "그룸 공개됨",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "그룹 설명 바뀜",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "그룹 설명",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "group": "그룹",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "goToTheNewRoom": "새로운 방 가기",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "초대받은 후부터",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "들어온 후부터",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "전달",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "폰트 크기",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "파일 이름",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "매우 공격적임",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "모든 것이 준비됐어요!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "enterYourHomeserver": "당신의 홈서버를 입력하세요",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "homeserver": "홈서버",
- "@homeserver": {},
- "enterASpacepName": "스페이스 이름 입력",
- "@enterASpacepName": {},
- "enterAnEmailAddress": "이메일 주소 입력",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterAGroupName": "그룹 이름 입력",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} 이 통화를 종료했습니다",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "encryptionNotEnabled": "암호화가 비활성화됨",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "암호화",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "암호화됨",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "당신은 다시 암호화를 비활성화할 수 없습니다. 확실한가요?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "암호화 켜기",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "이모트 팩 항상 사용하기",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "빈 채팅",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "이모트 단축키와 이미지를 골라야 합니다!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "이모트 단축키",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "이모트 설정",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "방을 위한 이모트 팩",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "올바르지 않은 이모트 단축키!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "이모트가 이미 존재합니다!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "방 아바타 수정",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAliases": "방 별명 수정",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "표시 이름 수정",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "채팅 권한 수정",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "수정",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "파일 다운로드",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "표시 이름이 변경되었습니다",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "기기",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "기기 ID",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "device": "기기",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "거부",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "메시지 삭제",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "계정 삭제",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "삭제",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "기본 권한 레벨",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "deactivateAccountWarning": "이것은 당신의 계정을 비활성화할 것입니다. 이것은 되돌릴 수 없습니다! 확실한가요?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "현재 활동 중",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "createNewSpace": "새로운 스페이스",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "createNewGroup": "새로운 그룹",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "💬 {username}님이 채팅을 생성함",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "create": "생성",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "countParticipants": "{count} 참여자",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "couldNotDecryptMessage": "메시지 복호화할 수 없음: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "copyToClipboard": "클립보드에 복사",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "복사",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "클립보드에 복사됨",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "콘텐츠가 서버 운영자에게 신고되었습니다",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "유저 이름 포함",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "표시 이름 포함",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "연락처가 그룹에 초대되었습니다",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "연결",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "확인",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "채팅 설정",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "다른 기기에서도 아래의 숫자가 일치하는지 비교하세요:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareEmojiMatch": "다른 기기에서도 아래의 이모지가 일치하는지 비교하세요:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "commandMissing": "{command} 는 명령어가 아닙니다.",
- "@commandMissing": {
- "type": "text",
- "placeholders": {
- "command": {}
- },
- "description": "State that {command} is not a valid /command."
- },
- "commandInvalid": "잘못된 명령어",
- "@commandInvalid": {
- "type": "text"
- },
- "commandHint_react": "답장 반응으로 보내기",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "commandHint_op": "주어진 유저의 권한 레벨 설정 (기본:50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_myroomnick": "이 방의 표시 이름 설정하기",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "commandHint_myroomavatar": "이 방의 사진 설정하기 (by mxc-uri)",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_kick": "주어진 유저 방에서 삭제하기",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_join": "주어진 방 들어가기",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "close": "닫기",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "clearArchive": "저장 지우기",
- "@clearArchive": {},
- "chooseAUsername": "닉네임 고르기",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "안전한 비밀번호를 설정하세요",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chatHasBeenAddedToThisSpace": "이 스페이스에 채팅이 추가되었습니다",
- "@chatHasBeenAddedToThisSpace": {},
- "chatDetails": "채팅 정보",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "당신의 오래된 메시지는 보안 키로 보호됩니다. 이 키를 잃어버리지 마세요.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackup": "채팅 백업",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "채팅",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "암호화가 손상되었습니다",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "아바타 바꾸기",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "배경 바꾸기",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "그룹의 이름 바꾸기",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "스타일 바꾸기",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "홈서버 바꾸기",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changePassword": "비밀번호 바꾸기",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheRoomInvitationLink": "{username}이 초대 링크 바꿈",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username}이 방 별명을 바꿈",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheProfileAvatar": "{username}이 자신의 아바타를 바꿈",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username}이 참가 규칙을 {joinRules} 로 바꿈",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheJoinRules": "{username}이 참가 규칙을 바꿈",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username}이 대화 기록 설정을 {rules} 로 바꿈",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibility": "{username}이 대화 기록 설정을 변경함",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username}이 게스트 접근 규칙을 {rules} 로 변경함",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheGuestAccessRules": "{username}이 게스트 접근 규칙을 변경함",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username}이 닉네임을 '{displayname}' 으로 바꿈",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheChatPermissions": "{username}이 채팅 권한을 바꿈",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatNameTo": "{username}이 채팅 이름을 '{chatname}' 으로 바꿈",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatDescriptionTo": "{username}이 채팅 설명을 '{description}' 으로 변경함",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatAvatar": "{username}이 채팅 아바타 바꿈",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changeDeviceName": "기기 이름 바꾸기",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "취소",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "봇 메시지",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "차단됨",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "blockDevice": "기기 차단",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username}이 {targetName} 밴함",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "banned": "밴됨",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "banFromChat": "채팅에서 밴",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "badServerVersionsException": "이 홈서버가 지원하는 Spec 버전:\n{serverVersions}\n하지만 이 앱은 {supportedVersions}만 지원합니다",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "sendOnEnter": "엔터로 보내기",
- "@sendOnEnter": {},
- "badServerLoginTypesException": "홈서버가 지원하는 로그인 유형:\n{serverVersions}\n하지만 이 앱에서 지원하는 것은:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "autoplayImages": "자동으로 움직이는 스티커와 이모트 재생",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "askVerificationRequest": "{username}의 인증 요청을 수락할까요?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "askSSSSSign": "다른 사람을 서명하기 위해서, 저장 비밀번호나 복구 키를 입력해주세요.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSureYouWantToLogout": "로그아웃하고 싶은 것이 확실한가요?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "확실한가요?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "게스트 유저가 참가 여부",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "저장",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "앱 잠금",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "anyoneCanJoin": "누구나 들어올 수 있음",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} 가 전화에 응답했습니다",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "alias": "별명",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "관리자",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "스페이스에 추가",
- "@addToSpace": {},
- "addGroupDescription": "그룹 소개 추가",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "addEmail": "이메일 추가",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "🔐 {username}님이 종단간 암호화를 활성화함",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "계정",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "👍 {username}님이 초대를 수락함",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "ignore": "무시",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "신원",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ID",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "이 콘텐츠가 얼마나 모욕적인가요?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "알 수 없는 이벤트 숨기기",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "지워진 이벤트 숨기기",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "{username}이 {targetName}에 대한 초대를 철회함",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "guestsAreForbidden": "게스트는 금지되어 있습니다",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "{displayname} 과의 그룹",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "errorObtainingLocation": "위치 얻는 중 오류: {error}",
- "@errorObtainingLocation": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "editBlockedServers": "차단된 서버 수정",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "다이렉트 채팅",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "dateWithYear": "{year}-{month}-{day}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "dateWithoutYear": "{month}-{day}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "darkTheme": "다크",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "당신은 이 채팅에 초대되었습니다",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "확인",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "메시지 작성…",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "이 주소로 당신의 비밀번호를 복구할 수 있습니다.",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "wipeChatBackup": "새로운 보안 키를 생성하기 위해 채팅 백업을 초기화할까요?",
- "@wipeChatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "왜 이것을 신고하려고 하나요?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "누가 이 그룹에 들어오도록 허용할지",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "누가 어떤 행동을 할 수 있는지",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "우리가 당신에게 이메일을 보냈습니다",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "경고!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "배경",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "상대가 숫자를 수락하길 기다리는 중…",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerEmoji": "상대가 이모지를 수락하길 기다리는 중…",
- "@waitingPartnerEmoji": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerAcceptRequest": "상대가 요청을 수락하길 기다리는 중…",
- "@waitingPartnerAcceptRequest": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "음성 메시지",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "모두에게 보임",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "모든 참가자에게 보임",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "영상 통화",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "다른 계정 확인 중",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "성공적으로 확인했어요!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "확인 시작",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "verify": "확인",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verified": "확인됨",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "username": "유저 이름",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "userLeftTheChat": "{username}이 채팅을 나감",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userIsTyping": "{username}이 입력 중…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userAndUserAreTyping": "{username}과 {username2}가 입력 중…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userAndOthersAreTyping": "{username}과 {count}명이 입력 중…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "unpin": "고정 해제",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEncryptionAlgorithm": "알 수 없는 암호화 알고리즘",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unblockDevice": "기기 차단 해제",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "고정",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "이미지 고르기",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "비밀번호 복구",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "비밀번호 까먹음",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "password": "비밀번호",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "participant": "참여자",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "(선택) 그룹 이름",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "openInMaps": "지도에서 열기",
- "@openInMaps": {
- "type": "text",
- "placeholders": {}
- },
- "addAccount": "계정 추가",
- "@addAccount": {},
- "openCamera": "카메라 열기",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "앱을 열어서 메시지를 읽으세요",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "앗, 무언가가 잘못되었습니다…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "oopsPushError": "앗! 안타깝게도, 푸시 알림을 설정하는 중 오류가 발생했습니다.",
- "@oopsPushError": {
- "type": "text",
- "placeholders": {}
- },
- "online": "온라인",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "확인",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "오프라인",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "offensive": "모욕적임",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "obtainingLocation": "위치 얻는 중…",
- "@obtainingLocation": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "{count}명이 입력 중…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "notificationsEnabledForThisAccount": "이 계정에서 알림이 활성화되었습니다",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "알림",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "권한 없음",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "scanQrCode": "QR 코드 스캔",
- "@scanQrCode": {},
- "shareYourInviteLink": "당신의 초대 링크 공유",
- "@shareYourInviteLink": {},
- "noMatrixServer": "{server1}은 matrix 서버가 아닙니다, {server2}를 대신 사용할까요?",
- "@noMatrixServer": {
- "type": "text",
- "placeholders": {
- "server1": {},
- "server2": {}
- }
- },
- "next": "다음",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "loginWith": "{brand} 로 로그인",
- "@loginWith": {
- "type": "text",
- "placeholders": {
- "brand": {}
- }
- },
- "logInTo": "{homeserver} 에 로그인",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "login": "로그인",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "locationPermissionDeniedNotice": "위치 권한이 거부되었습니다. 위치를 공유하기 위해서 허용해주세요.",
- "@locationPermissionDeniedNotice": {
- "type": "text",
- "placeholders": {}
- },
- "locationDisabledNotice": "위치 서비스가 비활성화되었습니다. 위치를 공유하려면 활성화시켜주세요.",
- "@locationDisabledNotice": {
- "type": "text",
- "placeholders": {}
- },
- "no": "아니요",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "새로운 확인 요청!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "FluffyChat에서 새로운 메시지",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "새로운 채팅",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "채팅 음소거",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "모든 참여자에게서 메시지가 지워집니다",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "메시지",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "멘션",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "logout": "로그아웃",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "unreadChats": "{unreadCount, plural, =1{읽지 않은 채팅 1} other{{unreadCount} 개}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "renderRichContent": "풍부한 메시지 콘텐츠 렌더링",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "사용할 수 없음",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "식별자가 유효한지 확인하세요",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "all": "모두",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "당신의 공개 키",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "당신은 이 채팅에서 밴되었습니다",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "자신을 초대할 수 없습니다",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "당신은 더 이상 이 채팅에 참여하지 않습니다",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "you": "당신",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "대화 기록 설정",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "userSentUnknownEvent": "{username}이 {type} 이벤트 보냄",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "unmuteChat": "음소거 해제",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEvent": "알 수 없는 이벤트 '{type}'",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "unknownDevice": "알 수 없는 기기",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "{username}이 {targetName} 밴 해제함",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "tryToSendAgain": "다시 보내도록 시도",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "다른 기기에서 가져오기",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "너무 많은 요청. 잠시 후에 다시 시도해주세요!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "메시지 안/읽음 으로 표시",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "음소거 토글",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "toggleFavorite": "즐겨찾기 토글",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "일치합니다",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "theyDontMatch": "일치하지 않습니다",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "시스템",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "synchronizingPleaseWait": "동기화 중... 기다려주세요.",
- "@synchronizingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "제출",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "statusExampleMessage": "오늘은 어떤 기분인가요?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "status": "상태",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "startedACall": "{senderName} 가 통화 시작함",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "spaceName": "스페이스 이름",
- "@spaceName": {
- "type": "text",
- "placeholders": {}
- },
- "spaceIsPublic": "스페이스가 공개됨",
- "@spaceIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "singlesignon": "단일 계정 로그인(SSO)",
- "@singlesignon": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUserAndCountOthers": "{count, plural, other{{username}과 이외 {count}명이 읽음}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "pushRules": "푸시 규칙",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Matrix ID를 입력해주세요.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "마지막 활동: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "ignoredUsers": "무시된 사용자",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "4자리 숫자를 입력하거나 앱 잠금을 사용하지 않도록 하려면 비워두세요.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAPasscode": "비밀번호를 골라주세요",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChoose": "선택해주세요",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "play": "{fileName} 재생",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "people": "사람들",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "비밀번호가 변경됨",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "비밀번호나 복구 키",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "or": "이나",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "serverRequiresEmail": "이 서버는 가입을 위해 당신의 이메일을 확인해야 합니다.",
- "@serverRequiresEmail": {},
- "enableMultiAccounts": "(베타) 이 기기에서 다중 계정 활성화",
- "@enableMultiAccounts": {},
- "bundleName": "번들 이름",
- "@bundleName": {},
- "removeFromBundle": "이 번들에서 삭제",
- "@removeFromBundle": {},
- "addToBundle": "번들에 추가",
- "@addToBundle": {},
- "editBundlesForAccount": "이 계정의 번들 수정",
- "@editBundlesForAccount": {},
- "oneClientLoggedOut": "당신의 클라이언트 중 하나가 로그아웃 됨",
- "@oneClientLoggedOut": {},
- "onlineKeyBackupEnabled": "온라인 키 백업이 활성화됨",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "아무 방도 발견되지 않았어요…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "당신은 비밀번호를 복구할 방법을 추가하지 않았습니다.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "none": "없음",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "이 휴대폰에 Google 서비스가 없는 것 같습니다. 프라이버시를 위해 좋은 결정이죠! FluffyChat에서 푸시 알림을 받으려면 https://microg.org/ 이나 https://unifiedpush.org/ 을 사용하는 것을 권장합니다.",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "당신은 방이 공개적으로 접근 가능하지 않을 때만 암호화를 켤 수 있습니다.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "이모트 발견되지 않음. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "서버에 연결 없음",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "지금 종단간 암호화를 사용하기 위해서는 Pantalaimon이 필요하다는 것을 알아주세요.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "관리자",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "참가자 변경",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "loadingPleaseWait": "로딩 중... 기다려 주세요.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "채팅을 나갔습니다",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "나가기",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "lastSeenLongTimeAgo": "오래 전 접속",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "소스 코드",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "스킵",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "signUp": "가입",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "showPassword": "비밀번호 보이기",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "shareLocation": "위치 보내기",
- "@shareLocation": {
- "type": "text",
- "placeholders": {}
- },
- "sharedTheLocation": "{username}이 위치 공유함",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "share": "공유",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "설정",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "상태 설정",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "setPermissionsLevel": "권한 레벨 설정",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "초대 링크 설정",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "setGroupDescription": "그룹 설명 설정",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setCustomEmotes": "맞춤 이모트 설정",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "setAsCanonicalAlias": "주 별명으로 설정",
- "@setAsCanonicalAlias": {
- "type": "text",
- "placeholders": {}
- },
- "sentCallInformations": "{senderName} 이 통화 정보 보냄",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "sentAVideo": "{username}이 영상 보냄",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sendOriginal": "원본 보내기",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "메시지 보내기",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "이미지 보내기",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "파일 보내기",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "오디오 보내기",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendAsText": "텍스트로 보내기",
- "@sendAsText": {
- "type": "text"
- },
- "sendAMessage": "메시지 보내기",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "send": "보내기",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUserAndUser": "{username}, {username2}가 읽음",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "seenByUser": "{username}이 읽음",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "security": "보안",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "search": "검색",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "saveFile": "파일 저장",
- "@saveFile": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "방 버전",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "방이 업그레이드되었습니다",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "권한 요청",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "이유",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "공개 방",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "프라이버시",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "웹사이트의 가이드를 따르고 다음 버튼을 눌러주세요.",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "유저 이름을 입력해주세요",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPin": "PIN을 입력해주세요",
- "@pleaseEnterYourPin": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "비밀번호를 입력해주세요",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "joinRoom": "방 들어가기",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "👋 {username}님이 채팅에 참가함",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "isTyping": "가 입력 중…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username}이 당신을 FluffyChat에 초대했습니다.\n1. FluffyChat 설치: https://fluffychat.im\n2. 가입하거나 로그인\n3. 초대 링크 열기: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "inviteForMe": "나를 위해 초대",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUsersOnly": "초대한 사용자만",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "📩 {username}님이 {targetName}님을 초대함",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invited": "초대됨",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "연락처 {groupName} 에 초대",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "inviteContact": "연락처 초대",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "모욕적이지 않음",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "올바르지 않은 복구 키나 비밀번호",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "링크를 클릭했어요",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "유저 이름 무시",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "당신을 방해하는 사용자들을 무시할 수 있습니다. 당신의 개인 무시 리스트에 있는 사용자들에게서 메시지나 방 초대를 수신할 수 없습니다.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "sentASticker": "{username}이 스티커 보냄",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "{username}이 사진 보냄",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "{username}이 오디오 보냄",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAFile": "{username}이 파일 보냄",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sendVideo": "영상 보내기",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sendSticker": "스티커 보내기",
- "@sendSticker": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "메시지 신고",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "답장",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "replaceRoomWithNewerVersion": "방 새로운 버전으로 대체하기",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "removeYourAvatar": "아바타 지우기",
- "@removeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "채팅에서 밴 해제",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "removeDevice": "기기 삭제",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "{username}에 의해 지워짐",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeAllOtherDevices": "모든 다른 기기에서 지우기",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "지우기",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "rejoin": "다시 가입",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "{username}이 초대를 거절함",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "reject": "거절",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "register": "가입",
- "@register": {
- "type": "text",
- "placeholders": {}
- },
- "redactMessage": "메시지 지우기",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "redactedAnEvent": "{username}이 이벤트를 지움",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "recording": "녹음",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "이메일의 링크를 클릭하고 진행해주세요.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "유저 이름을 골라주세요",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "kickFromChat": "채팅에서 추방",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "kickedAndBanned": "🙅 {username}님이 {targetName}님을 추방하고 차단함",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kicked": "👞 {username}님이 {targetName}님을 추방함",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "link": "링크",
- "@link": {},
- "unverified": "확인되지 않음",
- "@unverified": {},
- "yourChatBackupHasBeenSetUp": "당신의 채팅 백업이 설정되었습니다.",
- "@yourChatBackupHasBeenSetUp": {},
- "time": "시간",
- "@time": {},
- "messageType": "메시지 유형",
- "@messageType": {},
- "openGallery": "갤러리 열기",
- "@openGallery": {},
- "sender": "발신자",
- "@sender": {},
- "passwordsDoNotMatch": "비밀번호가 일치하지 않습니다!",
- "@passwordsDoNotMatch": {},
- "pleaseChooseAtLeastChars": "최소 {min}자를 선택하세요.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "messageInfo": "메시지 정보",
- "@messageInfo": {},
- "pleaseEnterValidEmail": "유효한 이메일 주소를 입력해주세요.",
- "@pleaseEnterValidEmail": {},
- "repeatPassword": "비밀번호 다시 입력",
- "@repeatPassword": {},
- "loginWithOneClick": "클릭 한 번으로 로그인",
- "@loginWithOneClick": {},
- "start": "시작",
- "@start": {},
- "removeFromSpace": "스페이스에서 삭제",
- "@removeFromSpace": {},
- "addToSpaceDescription": "이 채팅을 추가할 스페이스를 선택하세요.",
- "@addToSpaceDescription": {},
- "commandHint_discardsession": "세션 삭제",
- "@commandHint_discardsession": {
- "type": "text",
- "description": "Usage hint for the command /discardsession"
- },
- "commandHint_dm": "다이렉트 채팅 시작\t\n--no-encryption을 사용해 암호화 비활성화",
- "@commandHint_dm": {
- "type": "text",
- "description": "Usage hint for the command /dm"
- },
- "commandHint_clearcache": "캐시 지우기",
- "@commandHint_clearcache": {
- "type": "text",
- "description": "Usage hint for the command /clearcache"
- },
- "commandHint_create": "빈 그룹 채팅을 생성\t\n--no-encryption을 사용해 암호화를 비활성화",
- "@commandHint_create": {
- "type": "text",
- "description": "Usage hint for the command /create"
- },
- "openVideoCamera": "영상용 카메라 열기",
- "@openVideoCamera": {
- "type": "text",
- "placeholders": {}
- },
- "addToStory": "스토리에 추가",
- "@addToStory": {},
- "publish": "공개",
- "@publish": {},
- "yourStory": "내 스토리",
- "@yourStory": {},
- "replyHasBeenSent": "답장을 보냈습니다",
- "@replyHasBeenSent": {},
- "videoWithSize": "영상 ({size})",
- "@videoWithSize": {
- "type": "text",
- "placeholders": {
- "size": {}
- }
- },
- "storyFrom": "{date}의 스토리:\n{body}",
- "@storyFrom": {
- "type": "text",
- "placeholders": {
- "date": {},
- "body": {}
- }
- },
- "whoCanSeeMyStoriesDesc": "스토리에서 사람들이 서로를 보고 연락할 수 있다는 점에 유의하십시오.",
- "@whoCanSeeMyStoriesDesc": {},
- "whatIsGoingOn": "무슨 일이 일어나고 있나요?",
- "@whatIsGoingOn": {},
- "addDescription": "설명 추가",
- "@addDescription": {},
- "whoCanSeeMyStories": "누가 내 스토리를 볼 수 있나요?",
- "@whoCanSeeMyStories": {},
- "unsubscribeStories": "스토리 구독 해제",
- "@unsubscribeStories": {},
- "thisUserHasNotPostedAnythingYet": "이 유저는 스토리에 아무것도 올리지 않았습니다",
- "@thisUserHasNotPostedAnythingYet": {},
- "bubbleSize": "버블 크기",
- "@bubbleSize": {
- "type": "text",
- "placeholders": {}
- },
- "dismiss": "닫기",
- "@dismiss": {},
- "matrixWidgets": "Matrix 위젯",
- "@matrixWidgets": {},
- "markAsRead": "읽음으로 표시하기",
- "@markAsRead": {},
- "reportUser": "사용자 신고",
- "@reportUser": {},
- "openChat": "채팅 열기",
- "@openChat": {},
- "storyPrivacyWarning": "사람들이 서로를 보고 연락할 수 있다는 점에 유의해주세요. 스토리는 24시간 동안 보이지만 모든 기기와 서버에서 삭제된다는 보장은 없습니다.",
- "@storyPrivacyWarning": {},
- "iUnderstand": "동의합니다",
- "@iUnderstand": {},
- "reactedWith": "{sender}가 {reaction}로 반응함",
- "@reactedWith": {
- "type": "text",
- "placeholders": {
- "sender": {},
- "reaction": {}
- }
- },
- "confirmEventUnpin": "이벤트를 영구적으로 고정 해제할 것이 확실한가요?",
- "@confirmEventUnpin": {},
- "pinMessage": "방에 고정",
- "@pinMessage": {},
- "emojis": "이모지",
- "@emojis": {},
- "voiceCall": "음성 통화",
- "@voiceCall": {},
- "placeCall": "전화 걸기",
- "@placeCall": {},
- "experimentalVideoCalls": "실험적인 영상 통화",
- "@experimentalVideoCalls": {},
- "unsupportedAndroidVersion": "지원되지 않는 안드로이드 버전",
- "@unsupportedAndroidVersion": {},
- "unsupportedAndroidVersionLong": "이 기능은 새로운 안드로이드 버전을 요구합니다. Lineage OS 지원이나 업데이트를 확인해주세요.",
- "@unsupportedAndroidVersionLong": {},
- "videoCallsBetaWarning": "영상 통화는 베타임을 확인해주세요. 의도한 대로 작동하지 않거나 모든 플랫폼에서 작동하지 않을 수 있습니다.",
- "@videoCallsBetaWarning": {},
- "emailOrUsername": "이메일이나 유저 이름",
- "@emailOrUsername": {},
- "updateAvailable": "FluffyChat 업데이트 이용가능",
- "@updateAvailable": {},
- "updateNow": "백그라운드에서 업데이트 시작",
- "@updateNow": {},
- "confirmMatrixId": "계정을 삭제하려면 Matrix ID를 확인해 주세요.",
- "@confirmMatrixId": {},
- "commandHint_googly": "왕눈이 눈알 보내기",
- "@commandHint_googly": {},
- "googlyEyesContent": "{senderName} 님이 왕눈이 눈알을 보냈습니다",
- "@googlyEyesContent": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "commandHint_markasgroup": "",
- "@commandHint_markasgroup": {},
- "dehydrate": "세션을 내보내고 기기 초기화 하기",
- "@dehydrate": {},
- "dehydrateWarning": "이 동작은 되돌릴 수 없습니다. 백업 파일을 꼭 안전하게 보관하세요.",
- "@dehydrateWarning": {}
-}
\ No newline at end of file
+ "@@last_modified": "2021-08-14 12:41:09.975135",
+ "about": "소개",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "수락",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "모든 채팅",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "URI {uri}를 열 수 없습니다",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "chats": "채팅",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "이 룸에서 주어진 유저 밴하기",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_html": "HTML 형식의 문자 보내기",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_invite": "주어진 유저 이 룸에 초대하기",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "commandHint_leave": "이 룸 나가기",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_me": "자신을 소개하세요",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "commandHint_plain": "형식이 지정되지 않은 문자 보내기",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_send": "문자 보내기",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "commandHint_unban": "주어진 유저 이 룸에서 밴 해제하기",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "loadMore": "더 불러오기…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "{count}명의 참가자 더 표시",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "lightTheme": "라이트",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "라이선스",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "help": "도움",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "게스트가 들어올 수 있음",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "그룹",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "그룸 공개됨",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "그룹 설명 바뀜",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "그룹 설명",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "그룹",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "새로운 방 가기",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "초대받은 후부터",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "들어온 후부터",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "전달",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "폰트 크기",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "파일 이름",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "매우 공격적임",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "모든 것이 준비됐어요!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourHomeserver": "당신의 홈서버를 입력하세요",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "homeserver": "홈서버",
+ "@homeserver": {},
+ "enterASpacepName": "스페이스 이름 입력",
+ "@enterASpacepName": {},
+ "enterAnEmailAddress": "이메일 주소 입력",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "그룹 이름 입력",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} 이 통화를 종료했습니다",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "encryptionNotEnabled": "암호화가 비활성화됨",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "암호화",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "암호화됨",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "당신은 다시 암호화를 비활성화할 수 없습니다. 확실한가요?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "암호화 켜기",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "이모트 팩 항상 사용하기",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "빈 채팅",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "이모트 단축키와 이미지를 골라야 합니다!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "이모트 단축키",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "이모트 설정",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "방을 위한 이모트 팩",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "올바르지 않은 이모트 단축키!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "이모트가 이미 존재합니다!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "방 아바타 수정",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "방 별명 수정",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "표시 이름 수정",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "채팅 권한 수정",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "수정",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "파일 다운로드",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "표시 이름이 변경되었습니다",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "기기",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "기기 ID",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "기기",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "거부",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "메시지 삭제",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "계정 삭제",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "삭제",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "기본 권한 레벨",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deactivateAccountWarning": "이것은 당신의 계정을 비활성화할 것입니다. 이것은 되돌릴 수 없습니다! 확실한가요?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "현재 활동 중",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "새로운 스페이스",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewGroup": "새로운 그룹",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "💬 {username}님이 채팅을 생성함",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "create": "생성",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countParticipants": "{count} 참여자",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "couldNotDecryptMessage": "메시지 복호화할 수 없음: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "copyToClipboard": "클립보드에 복사",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "복사",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "클립보드에 복사됨",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "콘텐츠가 서버 운영자에게 신고되었습니다",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "유저 이름 포함",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "표시 이름 포함",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "연락처가 그룹에 초대되었습니다",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "연결",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "확인",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "채팅 설정",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "다른 기기에서도 아래의 숫자가 일치하는지 비교하세요:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareEmojiMatch": "다른 기기에서도 아래의 이모지가 일치하는지 비교하세요:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandMissing": "{command} 는 명령어가 아닙니다.",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "commandInvalid": "잘못된 명령어",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "commandHint_react": "답장 반응으로 보내기",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_op": "주어진 유저의 권한 레벨 설정 (기본:50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_myroomnick": "이 방의 표시 이름 설정하기",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "commandHint_myroomavatar": "이 방의 사진 설정하기 (by mxc-uri)",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_kick": "주어진 유저 방에서 삭제하기",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_join": "주어진 방 들어가기",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "close": "닫기",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "clearArchive": "저장 지우기",
+ "@clearArchive": {},
+ "chooseAUsername": "닉네임 고르기",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "안전한 비밀번호를 설정하세요",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "이 스페이스에 채팅이 추가되었습니다",
+ "@chatHasBeenAddedToThisSpace": {},
+ "chatDetails": "채팅 정보",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "당신의 오래된 메시지는 보안 키로 보호됩니다. 이 키를 잃어버리지 마세요.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackup": "채팅 백업",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "채팅",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "암호화가 손상되었습니다",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "아바타 바꾸기",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "배경 바꾸기",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "그룹의 이름 바꾸기",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "스타일 바꾸기",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "홈서버 바꾸기",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changePassword": "비밀번호 바꾸기",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomInvitationLink": "{username}이 초대 링크 바꿈",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username}이 방 별명을 바꿈",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username}이 자신의 아바타를 바꿈",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username}이 참가 규칙을 {joinRules} 로 바꿈",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheJoinRules": "{username}이 참가 규칙을 바꿈",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username}이 대화 기록 설정을 {rules} 로 바꿈",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username}이 대화 기록 설정을 변경함",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username}이 게스트 접근 규칙을 {rules} 로 변경함",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username}이 게스트 접근 규칙을 변경함",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username}이 닉네임을 '{displayname}' 으로 바꿈",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheChatPermissions": "{username}이 채팅 권한을 바꿈",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatNameTo": "{username}이 채팅 이름을 '{chatname}' 으로 바꿈",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username}이 채팅 설명을 '{description}' 으로 변경함",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatAvatar": "{username}이 채팅 아바타 바꿈",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeDeviceName": "기기 이름 바꾸기",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "취소",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "봇 메시지",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "차단됨",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "기기 차단",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username}이 {targetName} 밴함",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "banned": "밴됨",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banFromChat": "채팅에서 밴",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerVersionsException": "이 홈서버가 지원하는 Spec 버전:\n{serverVersions}\n하지만 이 앱은 {supportedVersions}만 지원합니다",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "sendOnEnter": "엔터로 보내기",
+ "@sendOnEnter": {},
+ "badServerLoginTypesException": "홈서버가 지원하는 로그인 유형:\n{serverVersions}\n하지만 이 앱에서 지원하는 것은:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "autoplayImages": "자동으로 움직이는 스티커와 이모트 재생",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "askVerificationRequest": "{username}의 인증 요청을 수락할까요?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "askSSSSSign": "다른 사람을 서명하기 위해서, 저장 비밀번호나 복구 키를 입력해주세요.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSureYouWantToLogout": "로그아웃하고 싶은 것이 확실한가요?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "확실한가요?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "게스트 유저가 참가 여부",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "저장",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "앱 잠금",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "누구나 들어올 수 있음",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} 가 전화에 응답했습니다",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "alias": "별명",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "관리자",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "스페이스에 추가",
+ "@addToSpace": {},
+ "addGroupDescription": "그룹 소개 추가",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "이메일 추가",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "🔐 {username}님이 종단간 암호화를 활성화함",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "account": "계정",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "👍 {username}님이 초대를 수락함",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "ignore": "무시",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "신원",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ID",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "이 콘텐츠가 얼마나 모욕적인가요?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "알 수 없는 이벤트 숨기기",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "지워진 이벤트 숨기기",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "{username}이 {targetName}에 대한 초대를 철회함",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "guestsAreForbidden": "게스트는 금지되어 있습니다",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "{displayname} 과의 그룹",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "errorObtainingLocation": "위치 얻는 중 오류: {error}",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "editBlockedServers": "차단된 서버 수정",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "다이렉트 채팅",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateWithYear": "{year}-{month}-{day}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithoutYear": "{month}-{day}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "darkTheme": "다크",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "당신은 이 채팅에 초대되었습니다",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "확인",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "메시지 작성…",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "이 주소로 당신의 비밀번호를 복구할 수 있습니다.",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "새로운 보안 키를 생성하기 위해 채팅 백업을 초기화할까요?",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "왜 이것을 신고하려고 하나요?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "누가 이 그룹에 들어오도록 허용할지",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "누가 어떤 행동을 할 수 있는지",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "우리가 당신에게 이메일을 보냈습니다",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "경고!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "배경",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "상대가 숫자를 수락하길 기다리는 중…",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "상대가 이모지를 수락하길 기다리는 중…",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "상대가 요청을 수락하길 기다리는 중…",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "음성 메시지",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "모두에게 보임",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "모든 참가자에게 보임",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "영상 통화",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "다른 계정 확인 중",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "성공적으로 확인했어요!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "확인 시작",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "확인",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "확인됨",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "username": "유저 이름",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userLeftTheChat": "{username}이 채팅을 나감",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userIsTyping": "{username}이 입력 중…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userAndUserAreTyping": "{username}과 {username2}가 입력 중…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userAndOthersAreTyping": "{username}과 {count}명이 입력 중…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "unpin": "고정 해제",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEncryptionAlgorithm": "알 수 없는 암호화 알고리즘",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "기기 차단 해제",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "고정",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "이미지 고르기",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "비밀번호 복구",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "비밀번호 까먹음",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "비밀번호",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "participant": "참여자",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "(선택) 그룹 이름",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "지도에서 열기",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addAccount": "계정 추가",
+ "@addAccount": {},
+ "openCamera": "카메라 열기",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "앱을 열어서 메시지를 읽으세요",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "앗, 무언가가 잘못되었습니다…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "앗! 안타깝게도, 푸시 알림을 설정하는 중 오류가 발생했습니다.",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "온라인",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "확인",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "오프라인",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "모욕적임",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "위치 얻는 중…",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "{count}명이 입력 중…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "notificationsEnabledForThisAccount": "이 계정에서 알림이 활성화되었습니다",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "알림",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "권한 없음",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "scanQrCode": "QR 코드 스캔",
+ "@scanQrCode": {},
+ "shareYourInviteLink": "당신의 초대 링크 공유",
+ "@shareYourInviteLink": {},
+ "noMatrixServer": "{server1}은 matrix 서버가 아닙니다, {server2}를 대신 사용할까요?",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "next": "다음",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWith": "{brand} 로 로그인",
+ "@loginWith": {
+ "type": "text",
+ "placeholders": {
+ "brand": {}
+ }
+ },
+ "logInTo": "{homeserver} 에 로그인",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "login": "로그인",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationPermissionDeniedNotice": "위치 권한이 거부되었습니다. 위치를 공유하기 위해서 허용해주세요.",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "위치 서비스가 비활성화되었습니다. 위치를 공유하려면 활성화시켜주세요.",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "아니요",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "새로운 확인 요청!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "FluffyChat에서 새로운 메시지",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "새로운 채팅",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "채팅 음소거",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "모든 참여자에게서 메시지가 지워집니다",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "메시지",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "멘션",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logout": "로그아웃",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unreadChats": "{unreadCount, plural, =1{읽지 않은 채팅 1} other{{unreadCount} 개}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "renderRichContent": "풍부한 메시지 콘텐츠 렌더링",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "사용할 수 없음",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "식별자가 유효한지 확인하세요",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "모두",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "당신의 공개 키",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "당신은 이 채팅에서 밴되었습니다",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "자신을 초대할 수 없습니다",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "당신은 더 이상 이 채팅에 참여하지 않습니다",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "당신",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "대화 기록 설정",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userSentUnknownEvent": "{username}이 {type} 이벤트 보냄",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "unmuteChat": "음소거 해제",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "알 수 없는 이벤트 '{type}'",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "unknownDevice": "알 수 없는 기기",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "{username}이 {targetName} 밴 해제함",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "tryToSendAgain": "다시 보내도록 시도",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "다른 기기에서 가져오기",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "너무 많은 요청. 잠시 후에 다시 시도해주세요!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "메시지 안/읽음 으로 표시",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "음소거 토글",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "즐겨찾기 토글",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "일치합니다",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyDontMatch": "일치하지 않습니다",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "시스템",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "동기화 중... 기다려주세요.",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "제출",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "오늘은 어떤 기분인가요?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "status": "상태",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "{senderName} 가 통화 시작함",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "spaceName": "스페이스 이름",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "스페이스가 공개됨",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "단일 계정 로그인(SSO)",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{{username}과 이외 {count}명이 읽음}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "pushRules": "푸시 규칙",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Matrix ID를 입력해주세요.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "마지막 활동: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "ignoredUsers": "무시된 사용자",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "4자리 숫자를 입력하거나 앱 잠금을 사용하지 않도록 하려면 비워두세요.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "비밀번호를 골라주세요",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "선택해주세요",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "{fileName} 재생",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "people": "사람들",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "비밀번호가 변경됨",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "비밀번호나 복구 키",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "이나",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "이 서버는 가입을 위해 당신의 이메일을 확인해야 합니다.",
+ "@serverRequiresEmail": {},
+ "enableMultiAccounts": "(베타) 이 기기에서 다중 계정 활성화",
+ "@enableMultiAccounts": {},
+ "bundleName": "번들 이름",
+ "@bundleName": {},
+ "removeFromBundle": "이 번들에서 삭제",
+ "@removeFromBundle": {},
+ "addToBundle": "번들에 추가",
+ "@addToBundle": {},
+ "editBundlesForAccount": "이 계정의 번들 수정",
+ "@editBundlesForAccount": {},
+ "oneClientLoggedOut": "당신의 클라이언트 중 하나가 로그아웃 됨",
+ "@oneClientLoggedOut": {},
+ "onlineKeyBackupEnabled": "온라인 키 백업이 활성화됨",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "아무 방도 발견되지 않았어요…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "당신은 비밀번호를 복구할 방법을 추가하지 않았습니다.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "없음",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "이 휴대폰에 Google 서비스가 없는 것 같습니다. 프라이버시를 위해 좋은 결정이죠! FluffyChat에서 푸시 알림을 받으려면 https://microg.org/ 이나 https://unifiedpush.org/ 을 사용하는 것을 권장합니다.",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "당신은 방이 공개적으로 접근 가능하지 않을 때만 암호화를 켤 수 있습니다.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "이모트 발견되지 않음. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "서버에 연결 없음",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "지금 종단간 암호화를 사용하기 위해서는 Pantalaimon이 필요하다는 것을 알아주세요.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "관리자",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "참가자 변경",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadingPleaseWait": "로딩 중... 기다려 주세요.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "채팅을 나갔습니다",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "나가기",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "오래 전 접속",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "소스 코드",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "스킵",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signUp": "가입",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "비밀번호 보이기",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareLocation": "위치 보내기",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "{username}이 위치 공유함",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "share": "공유",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "설정",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "상태 설정",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "권한 레벨 설정",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "초대 링크 설정",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setGroupDescription": "그룹 설명 설정",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "맞춤 이모트 설정",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setAsCanonicalAlias": "주 별명으로 설정",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentCallInformations": "{senderName} 이 통화 정보 보냄",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "sentAVideo": "{username}이 영상 보냄",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sendOriginal": "원본 보내기",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "메시지 보내기",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "이미지 보내기",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "파일 보내기",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "오디오 보내기",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "텍스트로 보내기",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "sendAMessage": "메시지 보내기",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "보내기",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "{username}, {username2}가 읽음",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "seenByUser": "{username}이 읽음",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "security": "보안",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "검색",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "파일 저장",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "방 버전",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "방이 업그레이드되었습니다",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "권한 요청",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "이유",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "공개 방",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "프라이버시",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "웹사이트의 가이드를 따르고 다음 버튼을 눌러주세요.",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "유저 이름을 입력해주세요",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "PIN을 입력해주세요",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "비밀번호를 입력해주세요",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "방 들어가기",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "👋 {username}님이 채팅에 참가함",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "isTyping": "가 입력 중…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username}이 당신을 FluffyChat에 초대했습니다.\n1. FluffyChat 설치: https://fluffychat.im\n2. 가입하거나 로그인\n3. 초대 링크 열기: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "inviteForMe": "나를 위해 초대",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUsersOnly": "초대한 사용자만",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "📩 {username}님이 {targetName}님을 초대함",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invited": "초대됨",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "연락처 {groupName} 에 초대",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "inviteContact": "연락처 초대",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "모욕적이지 않음",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "올바르지 않은 복구 키나 비밀번호",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "링크를 클릭했어요",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "유저 이름 무시",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "당신을 방해하는 사용자들을 무시할 수 있습니다. 당신의 개인 무시 리스트에 있는 사용자들에게서 메시지나 방 초대를 수신할 수 없습니다.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentASticker": "{username}이 스티커 보냄",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "{username}이 사진 보냄",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "{username}이 오디오 보냄",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAFile": "{username}이 파일 보냄",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sendVideo": "영상 보내기",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendSticker": "스티커 보내기",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "메시지 신고",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "답장",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replaceRoomWithNewerVersion": "방 새로운 버전으로 대체하기",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "아바타 지우기",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "채팅에서 밴 해제",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "기기 삭제",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "{username}에 의해 지워짐",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeAllOtherDevices": "모든 다른 기기에서 지우기",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "지우기",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejoin": "다시 가입",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "{username}이 초대를 거절함",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "reject": "거절",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "가입",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactMessage": "메시지 지우기",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "{username}이 이벤트를 지움",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "recording": "녹음",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "이메일의 링크를 클릭하고 진행해주세요.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "유저 이름을 골라주세요",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kickFromChat": "채팅에서 추방",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kickedAndBanned": "🙅 {username}님이 {targetName}님을 추방하고 차단함",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kicked": "👞 {username}님이 {targetName}님을 추방함",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "link": "링크",
+ "@link": {},
+ "unverified": "확인되지 않음",
+ "@unverified": {},
+ "yourChatBackupHasBeenSetUp": "당신의 채팅 백업이 설정되었습니다.",
+ "@yourChatBackupHasBeenSetUp": {},
+ "time": "시간",
+ "@time": {},
+ "messageType": "메시지 유형",
+ "@messageType": {},
+ "openGallery": "갤러리 열기",
+ "@openGallery": {},
+ "sender": "발신자",
+ "@sender": {},
+ "passwordsDoNotMatch": "비밀번호가 일치하지 않습니다!",
+ "@passwordsDoNotMatch": {},
+ "pleaseChooseAtLeastChars": "최소 {min}자를 선택하세요.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "messageInfo": "메시지 정보",
+ "@messageInfo": {},
+ "pleaseEnterValidEmail": "유효한 이메일 주소를 입력해주세요.",
+ "@pleaseEnterValidEmail": {},
+ "repeatPassword": "비밀번호 다시 입력",
+ "@repeatPassword": {},
+ "loginWithOneClick": "클릭 한 번으로 로그인",
+ "@loginWithOneClick": {},
+ "start": "시작",
+ "@start": {},
+ "removeFromSpace": "스페이스에서 삭제",
+ "@removeFromSpace": {},
+ "addToSpaceDescription": "이 채팅을 추가할 스페이스를 선택하세요.",
+ "@addToSpaceDescription": {},
+ "commandHint_discardsession": "세션 삭제",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "commandHint_dm": "다이렉트 채팅 시작\t\n--no-encryption을 사용해 암호화 비활성화",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_clearcache": "캐시 지우기",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "commandHint_create": "빈 그룹 채팅을 생성\t\n--no-encryption을 사용해 암호화를 비활성화",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "openVideoCamera": "영상용 카메라 열기",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "스토리에 추가",
+ "@addToStory": {},
+ "publish": "공개",
+ "@publish": {},
+ "yourStory": "내 스토리",
+ "@yourStory": {},
+ "replyHasBeenSent": "답장을 보냈습니다",
+ "@replyHasBeenSent": {},
+ "videoWithSize": "영상 ({size})",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "storyFrom": "{date}의 스토리:\n{body}",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "스토리에서 사람들이 서로를 보고 연락할 수 있다는 점에 유의하십시오.",
+ "@whoCanSeeMyStoriesDesc": {},
+ "whatIsGoingOn": "무슨 일이 일어나고 있나요?",
+ "@whatIsGoingOn": {},
+ "addDescription": "설명 추가",
+ "@addDescription": {},
+ "whoCanSeeMyStories": "누가 내 스토리를 볼 수 있나요?",
+ "@whoCanSeeMyStories": {},
+ "unsubscribeStories": "스토리 구독 해제",
+ "@unsubscribeStories": {},
+ "thisUserHasNotPostedAnythingYet": "이 유저는 스토리에 아무것도 올리지 않았습니다",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "bubbleSize": "버블 크기",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dismiss": "닫기",
+ "@dismiss": {},
+ "matrixWidgets": "Matrix 위젯",
+ "@matrixWidgets": {},
+ "markAsRead": "읽음으로 표시하기",
+ "@markAsRead": {},
+ "reportUser": "사용자 신고",
+ "@reportUser": {},
+ "openChat": "채팅 열기",
+ "@openChat": {},
+ "storyPrivacyWarning": "사람들이 서로를 보고 연락할 수 있다는 점에 유의해주세요. 스토리는 24시간 동안 보이지만 모든 기기와 서버에서 삭제된다는 보장은 없습니다.",
+ "@storyPrivacyWarning": {},
+ "iUnderstand": "동의합니다",
+ "@iUnderstand": {},
+ "reactedWith": "{sender}가 {reaction}로 반응함",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "confirmEventUnpin": "이벤트를 영구적으로 고정 해제할 것이 확실한가요?",
+ "@confirmEventUnpin": {},
+ "pinMessage": "방에 고정",
+ "@pinMessage": {},
+ "emojis": "이모지",
+ "@emojis": {},
+ "voiceCall": "음성 통화",
+ "@voiceCall": {},
+ "placeCall": "전화 걸기",
+ "@placeCall": {},
+ "experimentalVideoCalls": "실험적인 영상 통화",
+ "@experimentalVideoCalls": {},
+ "unsupportedAndroidVersion": "지원되지 않는 안드로이드 버전",
+ "@unsupportedAndroidVersion": {},
+ "unsupportedAndroidVersionLong": "이 기능은 새로운 안드로이드 버전을 요구합니다. Lineage OS 지원이나 업데이트를 확인해주세요.",
+ "@unsupportedAndroidVersionLong": {},
+ "videoCallsBetaWarning": "영상 통화는 베타임을 확인해주세요. 의도한 대로 작동하지 않거나 모든 플랫폼에서 작동하지 않을 수 있습니다.",
+ "@videoCallsBetaWarning": {},
+ "emailOrUsername": "이메일이나 유저 이름",
+ "@emailOrUsername": {},
+ "updateAvailable": "FluffyChat 업데이트 이용가능",
+ "@updateAvailable": {},
+ "updateNow": "백그라운드에서 업데이트 시작",
+ "@updateNow": {},
+ "confirmMatrixId": "계정을 삭제하려면 Matrix ID를 확인해 주세요.",
+ "@confirmMatrixId": {},
+ "commandHint_googly": "왕눈이 눈알 보내기",
+ "@commandHint_googly": {},
+ "googlyEyesContent": "{senderName} 님이 왕눈이 눈알을 보냈습니다",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "dehydrate": "세션을 내보내고 기기 초기화 하기",
+ "@dehydrate": {},
+ "dehydrateWarning": "이 동작은 되돌릴 수 없습니다. 백업 파일을 꼭 안전하게 보관하세요.",
+ "@dehydrateWarning": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "invite": "",
+ "@invite": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {}
+}
diff --git a/assets/l10n/intl_lt.arb b/assets/l10n/intl_lt.arb
index bec00b0eb..1569ad13d 100644
--- a/assets/l10n/intl_lt.arb
+++ b/assets/l10n/intl_lt.arb
@@ -1,2408 +1,2652 @@
{
- "commandHint_leave": "Palikti pokalbių kambarį",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "confirm": "Patvirtinti",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Atšaukti",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Redaguoti",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Atsisiųsti failą",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "about": "Apie",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Visi",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Failo vardas",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "changePassword": "Keisti slaptažodį",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "close": "Uždaryti",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Archyvas",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "Praleisti",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "share": "Bendrinti",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "showPassword": "Rodyti slaptažodį",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "time": "Laikas",
- "@time": {},
- "settings": "Nustatytmai",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "sender": "Siuntėjas",
- "@sender": {},
- "yes": "Taip",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "you": "Jūs",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "logout": "Atsijungti",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Žinutės",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "scanQrCode": "Nuskanuokite QR kodą",
- "@scanQrCode": {},
- "ok": "OK",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "addAccount": "Pridėti paskyrą",
- "@addAccount": {},
- "or": "Arba",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Slaptažodis",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "Slaptažodis pakeistas",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "Įveskite savo slaptažodį",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "Įveskite savo vartotojo vardą",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Atsakyti",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "blockDevice": "Blokuoti įrenginį",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "Užblokuotas",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Pasirinkite saugų slaptažodį",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "createNewGroup": "Sukurti naują grupę",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Ištrinti žinutę",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Atmesti",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Įrenginys",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "Įrenginio ID",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Įrenginiai",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "homeserver": "Namų serveris",
- "@homeserver": {},
- "enterYourHomeserver": "Įveskite namų serverį",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "Viskas paruošta!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "Šrifto dydis",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "clearArchive": "Išvalyti archyvą",
- "@clearArchive": {},
- "create": "Sukurti",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Prisijungti",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "people": "Žmonės",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "Žinutė bus pašalinta visiem dalyviams",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Moderatorius",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Nutildyti pokalbį",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Naujas pokalbis",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "shareYourInviteLink": "Bendrinti savo pakvietimo nuorodą",
- "@shareYourInviteLink": {},
- "none": "Nė vienas",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Nėra leidimo",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "Nerasta kambarių…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Pranešimai",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "Pranešimai aktyvuoti šitai paskyrai",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "obtainingLocation": "Gaunama vieta…",
- "@obtainingLocation": {
- "type": "text",
- "placeholders": {}
- },
- "offensive": "Agresyvus",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "Neprisijungta",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "online": "Prisijungta",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "oopsPushError": "Oi! Deja, nustatant tiesioginius pranešimus įvyko klaida.",
- "@oopsPushError": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "Oi, kažkas nutiko ne taip…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "Atidarykite programėlę, kad perskaityti žinutes",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "link": "Nuoroda",
- "@link": {},
- "participant": "Dalyvis",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "Slapta frazė arba atkūrimo raktas",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Slaptažodis užmirštas",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "Slaptažodžio atkūrimas",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "Pasirinkite paveiksliuką",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Prisegti",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChoose": "Prašome pasirinkti",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAPasscode": "Pasirinkite slaptą kodą",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "Pasirinkite vartotojo vardą",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "Paspauskite nuorodą el. pašte ir tęskite toliau.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "Įveskite 4 skaitmenis arba palikite tuščią, jei norite išjungti programėlės užraktą.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Įveskite Matrix ID.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPin": "Įveskite savo PIN kodą",
- "@pleaseEnterYourPin": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "Vadovaukitės svetainėje pateiktais nurodymais ir bakstelėkite Toliau.",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Privatumas",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "Vieši kambariai",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Priežastis",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "Įrašymas",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "redactMessage": "Pašalinti žinutę",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "register": "Registruotis",
- "@register": {
- "type": "text",
- "placeholders": {}
- },
- "reject": "Atmesti",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "rejoin": "Vėl prisijungti",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Pašalinti",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "removeAllOtherDevices": "Pašalinti visus kitus įrenginius",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "removeDevice": "Pašalinti įrenginį",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "removeYourAvatar": "Pašalinti savo avatarą",
- "@removeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "replaceRoomWithNewerVersion": "Pakeisti kambarį naujesne versija",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Prašyti leidimo",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "Kambarys buvo atnaujintas",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "Kambario versija",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Ieškoti",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Sutinku",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "passwordsDoNotMatch": "Slaptažodžiai nesutampa!",
- "@passwordsDoNotMatch": {},
- "pleaseEnterValidEmail": "Įveskite teisingą el. pašto adresą.",
- "@pleaseEnterValidEmail": {},
- "repeatPassword": "Pakartokite slaptažodį",
- "@repeatPassword": {},
- "addEmail": "Pridėti el. paštą",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "addGroupDescription": "Pridėkite grupės aprašymą",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Administratorius",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "slapyvardis",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "allChats": "Visi pokalbiai",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "anyoneCanJoin": "Bet kas gali prisijungti",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Ar esate tikri?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSureYouWantToLogout": "Ar tikrai norite atsijungti?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Pakeisti namų serverį",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Keisti savo stilių",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Keisti grupės pavadinimą",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Keisti ekrano užsklandą",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "Keisti savo avatarą",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Pokalbis",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Pokalbio detalės",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chats": "Pokalbiai",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_ban": "Užblokuoti vartotoją šiame kambaryje",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_clearcache": "Išvalyti laikiną talpyklą",
- "@commandHint_clearcache": {
- "type": "text",
- "description": "Usage hint for the command /clearcache"
- },
- "commandHint_discardsession": "Atmesti sesiją",
- "@commandHint_discardsession": {
- "type": "text",
- "description": "Usage hint for the command /discardsession"
- },
- "commandHint_html": "Siųsti tekstą HTML formatu",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_invite": "Pakviesti vartotoją į šitą kambarį",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "commandHint_join": "Prisijungti prie nurodyto kambario",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_kick": "Pašalinti vartotoja iš šito kambario",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_myroomnick": "Nustatyti savo rodomą vardą šiame kambaryje",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "commandHint_plain": "Siųsti neformatuotą tekstą",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_send": "Siųsti tekstą",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "commandHint_unban": "Atblokuoti vartotoją šiame kambaryje",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "commandInvalid": "Neteisinga komanda",
- "@commandInvalid": {
- "type": "text"
- },
- "configureChat": "Konfigūruoti pokalbį",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "Nukopijuota į iškarpinę",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Kopijuoti",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Koipjuoti į iškarpinę",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Šiuo metu aktyvus",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Tamsi",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Ištrinti",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Panaikinti paskyra",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Tiesioginiai pokalbiai",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Užšifruotas",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "Šifravimas aktyvuotas",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "enterAGroupName": "Įveskite grupės vardą",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "Įveskite el. pašto adresą",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Itin įžeidžiantis",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "Toliau",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "Nuo prisijungimo",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "Nuo pakvietimo",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "goToTheNewRoom": "Eiti į naują kambarį",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "group": "Grupė",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Grupės aprašymas",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "Grupės aprašymas pakeistas",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "Grupė yra vieša",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "Grupės",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "guestsAreForbidden": "Svečiams draudžiama",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "Svečiai gali prisijungti",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "help": "Pagalba",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "Slėpti pašalintus įvykius",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Slėpti nežinomus įvykius",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Tapatybė",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Ignoruoti",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Ignoruoti vartotojai",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Palikti",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "loginWithOneClick": "Prisijungti vienu paspaudimu",
- "@loginWithOneClick": {},
- "makeSureTheIdentifierIsValid": "Įsitikinkite, kad indentifikatorius galiojantis",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Narių pokyčiai",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "Paminėti",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "Šifravimas",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Aktyvuoti šifravimą",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "Redaguoti blokuotus serverius",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "Redaguoti pokalbio leidimus",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Prisijungti",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "sendOnEnter": "Išsiųsti paspaudus Enter",
- "@sendOnEnter": {},
- "banFromChat": "Užblokuoti iš pokalbio",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Užblokuotas",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "changeDeviceName": "Pakeisti įrenginio vardą",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "yourChatBackupHasBeenSetUp": "Jūsų pokalbio atsarginė kopija buvo nustatyta.",
- "@yourChatBackupHasBeenSetUp": {},
- "chatBackup": "Pokalbio atsargine kopija",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_me": "Apibūdinkite save",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "displaynameHasBeenChanged": "Rodomas vardas buvo pakeistas",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Redaguoti rodomą vardą",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAliases": "Redaguoti kambario pseudonimus",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "Redaguoti kambario avatarą",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "Kiek įžeižiantis šis turinys?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ID",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Ignoruoti vartotoją",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "Aš paspaudžiau nuorodą",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "Neteisinga slaptafrazė arba atkūrimo raktas",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "Neįžeidžiantis",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Pakviesti kontaktą",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "invited": "Pakviestas",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUsersOnly": "Tik pakviesti vartotojai",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "isTyping": "rašo…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinRoom": "Prisijungti prie kambario",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kickFromChat": "Išmesti iš pokalbio",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastSeenLongTimeAgo": "Seniai matytas",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "Paliko pokalbį",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Licencija",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "Šviesi",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "loadingPleaseWait": "Kraunama… Prašome palaukti.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Rodyti daugiau…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "💬 Nauja žinutė FluffyChat'e",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Nauja patvirtinimo užklausa!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Toliau",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "Ne",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "Nėra ryšio su serveriu",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "setGroupDescription": "Nustatyti grupės aprašymą",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "Nustatyti pakvietimo nuorodą",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "singlesignon": "Vienkartinis prisijungimas",
- "@singlesignon": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "Programinis kodas",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "spaceIsPublic": "Erdvė yra vieša",
- "@spaceIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "spaceName": "Erdvės pavadinimas",
- "@spaceName": {
- "type": "text",
- "placeholders": {}
- },
- "status": "Būsena",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "statusExampleMessage": "Kaip sekasi šiandien?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "Pateikti",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "synchronizingPleaseWait": "Sinchronizuojama… Prašome palaukti.",
- "@synchronizingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "Perkėlimas iš kito įrenginio",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "verify": "Patvirtinti",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "Pradėti patvirtinimą",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "Jūs sėkmingai patvirtinote!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "Patvirtinama kita paskyra",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "Pokalbių istorijos matomumas",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "Matoma visiems dalyviams",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerAcceptRequest": "Laukiama, kol dalyvis priims užklausą…",
- "@waitingPartnerAcceptRequest": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "Rašyti žinutę…",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "Esate pakviesti į šį pokalbį",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "Jūs nebedalyvaujate šiame pokalbyje",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "Jūs negalite pakviesti savęs",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "Jums buvo uždrausta dalyvauti šiame pokalbyje",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "messageInfo": "Žinutės informacija",
- "@messageInfo": {},
- "removeFromSpace": "Pašalinti iš erdvės",
- "@removeFromSpace": {},
- "security": "Apsauga",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "sendAsText": "Siųsti kaip tekstą",
- "@sendAsText": {
- "type": "text"
- },
- "sendAudio": "Siųsti garso įrašą",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Siųsti paveiksliuką",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "Sųsti bylą",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "Siųsti žinutes",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Siųsti originalą",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Siųsti video",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "separateChatTypes": "Atskirti tiesioginius pokalbius ir grupes",
- "@separateChatTypes": {
- "type": "text",
- "placeholders": {}
- },
- "setAsCanonicalAlias": "Nustatyti kaip pagrindinį slapyvardį",
- "@setAsCanonicalAlias": {
- "type": "text",
- "placeholders": {}
- },
- "setPermissionsLevel": "Nustatyti leidimų lygį",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "Nustatyti būseną",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "shareLocation": "Bendrinti vietą",
- "@shareLocation": {
- "type": "text",
- "placeholders": {}
- },
- "showDirectChatsInSpaces": "Rodyti susijusius tiesioginius pokalbius erdvėse",
- "@showDirectChatsInSpaces": {
- "type": "text",
- "placeholders": {}
- },
- "signUp": "Registruotis",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "Sistema",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "Nepasiekiamas",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "unblockDevice": "Atblokuoti įrenginį",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEncryptionAlgorithm": "Nežinomas šifravimo algoritmas",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unmuteChat": "Įjungti pokalbio garsą",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "Atsegti",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "username": "Vartotojo vardas",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "unverified": "Nepatvirtinta",
- "@unverified": {},
- "verified": "Patvirtinta",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "Vaizdo skambutis",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "Jūsų viešasis raktas",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpaceDescription": "Pasirinkite erdvę, kad prie jos pridėtumėte šį pokalbį.",
- "@addToSpaceDescription": {},
- "start": "Pradžia",
- "@start": {},
- "account": "Paskyra",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "Pridėti į erdvę",
- "@addToSpace": {},
- "appLock": "Programos užraktas",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "Ar svečiams leidžiama prisijungti",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Botų žinutės",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "bubbleSize": "Burbulo dydis",
- "@bubbleSize": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "Šifravimas buvo sugadintas",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "chatHasBeenAddedToThisSpace": "Pokalbis buvo pridėtas prie šios erdvės",
- "@chatHasBeenAddedToThisSpace": {},
- "compareEmojiMatch": "Palyginkite jaustukus",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Palyginkite skaičius",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "Kontaktas buvo pakviestas į grupę",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "Apie turinį pranešta serverio administratoriams",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "createNewSpace": "Nauja erdvė",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "deactivateAccountWarning": "Tai deaktyvuos jūsų vartotojo paskyrą. Tai negali būti atšaukta! Ar jūs tuo tikri?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "Numatytasis teisių lygis",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "Šifravimo nebegalėsite išjungti. Ar jūs tuo tikri?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "enterASpacepName": "Įveskite erdvės vardą",
- "@enterASpacepName": {},
- "send": "Siųsti",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "sendAMessage": "Siųsti žinutę",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "Pažymėti kaip skaitytą/neskaitytą",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "Per daug užklausų. Pabandykite dar kartą vėliau!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerEmoji": "Laukiama, kol dalyvis priims jaustukus…",
- "@waitingPartnerEmoji": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "Laukiama, kol dalyvis priims skaičius…",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "Užsklanda",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "Įspėjimas!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "Išsiuntėme jums el. laišką",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "Kas gali atlikti kokį veiksmą",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "Kam leidžiama prisijungti prie šios grupės",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "Kodėl norite apie tai pranešti?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "wipeChatBackup": "Ištrinti atsarginę pokalbių kopiją, kad sukurti naują atkūrimo raktą?",
- "@wipeChatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "Naudodami šiuos adresus galite atkurti savo slaptažodį.",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "messageType": "Žinutės tipas",
- "@messageType": {},
- "openGallery": "Atverti galeriją",
- "@openGallery": {},
- "chooseAUsername": "Pasirinkite vartotojo vardą",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "Nežinomas įrenginys",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "Balso žinutė",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "Matoma visiems",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "tryToSendAgain": "Pabandykite išsiųsti dar kartą",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "locationPermissionDeniedNotice": "Vietos leidimas atmestas. Suteikite leidimą kad galėtumėte bendrinti savo vietą.",
- "@locationPermissionDeniedNotice": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "Atminkite, kad norint naudoti end-to-end šifravimą, reikalingas Pantalaimon.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "Šifravimą galite suaktyvinti tik tada, kai kambarys nebebus viešai pasiekiamas.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "Nerasta jaustukų. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "Atrodo, kad jūsų telefone nėra Google Services. Tai geras sprendimas jūsų privatumui! Norėdami gauti tiesioginius pranešimus FluffyChat, rekomenduojame naudoti https://microg.org/ arba https://unifiedpush.org/.",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "Dar nepridėjote slaptažodžio atkūrimo būdo.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "oneClientLoggedOut": "Vienas iš jūsų klientų atsijungė",
- "@oneClientLoggedOut": {},
- "onlineKeyBackupEnabled": "Internetinė atsarginė raktų kopija įjungta",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Atidarykite kamerą",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "openVideoCamera": "Atidarykite kamerą vaizdo įrašui",
- "@openVideoCamera": {
- "type": "text",
- "placeholders": {}
- },
- "editBundlesForAccount": "Redaguoti šios paskyros paketus",
- "@editBundlesForAccount": {},
- "serverRequiresEmail": "Šis serveris turi patvirtinti jūsų el. pašto adresą registracijai.",
- "@serverRequiresEmail": {},
- "optionalGroupName": "(Nebūtina) Grupės pavadinimas",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "addToBundle": "Pridėti prie paketų",
- "@addToBundle": {},
- "removeFromBundle": "Pašalinkite iš šio paketo",
- "@removeFromBundle": {},
- "bundleName": "Paketo vardas",
- "@bundleName": {},
- "play": "Groti {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "redactedAnEvent": "{username} pašalino įvykį",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "rejectedTheInvitation": "{username} atmetė kvietimą",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removedBy": "Pašalino vartotojas {username}",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "unbanFromChat": "Atblokuoti pokalbyje",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "Atvaizduoti turtingą žinutės turinį",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "Pranešti apie žinutę",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "saveFile": "Išsaugoti failą",
- "@saveFile": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "Matė {username}",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sendSticker": "Siųsti lipduką",
- "@sendSticker": {
- "type": "text",
- "placeholders": {}
- },
- "sentAFile": "📁 {username} atsiuntė failą",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "🎤 {username} atsiuntė garso įrašą",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "😊 {username} atsiuntė lipduką",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sharedTheLocation": "{username} bendrino savo vietą",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "startedACall": "{senderName} pradėjo skambutį",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "theyDontMatch": "Jie nesutampa",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "Jie sutampa",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "{username} atblokavo {targetName}",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "unknownEvent": "Nežinomas įvykis '{type}'",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "userAndOthersAreTyping": "{username} ir dar {count} kiti rašo…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "userAndUserAreTyping": "{username} ir {username2} rašo…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userIsTyping": "{username} rašo…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userSentUnknownEvent": "{username} išsiuntė {type} įvykį",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "addToStory": "Pridėti prie istorijos",
- "@addToStory": {},
- "publish": "Paskelbti",
- "@publish": {},
- "whoCanSeeMyStories": "Kas gali matyti mano istorijas?",
- "@whoCanSeeMyStories": {},
- "unsubscribeStories": "Atsisakyti istorijų prenumeratos",
- "@unsubscribeStories": {},
- "thisUserHasNotPostedAnythingYet": "Šis vartotojas dar nieko nepaskelbė savo istorijoje",
- "@thisUserHasNotPostedAnythingYet": {},
- "storyPrivacyWarning": "Atminkite, kad žmonės gali matyti vienas kitą ir susisiekti tarpusavyje jūsų istorijoje. Jūsų istorijos bus matomos 24 valandas, tačiau nėra garantijos, kad jos bus ištrintos iš visų įrenginių ir serverių.",
- "@storyPrivacyWarning": {},
- "openChat": "Atverti pokalbį",
- "@openChat": {},
- "reportUser": "Pranešti apie vartotoją",
- "@reportUser": {},
- "dismiss": "Atsisakyti",
- "@dismiss": {},
- "reactedWith": "{sender} sureagavo su {reaction}",
- "@reactedWith": {
- "type": "text",
- "placeholders": {
- "sender": {},
- "reaction": {}
- }
- },
- "unsupportedAndroidVersion": "Nepalaikoma Android versija",
- "@unsupportedAndroidVersion": {},
- "emailOrUsername": "El. paštas arba vartotojo vardas",
- "@emailOrUsername": {},
- "widgetVideo": "Video",
- "@widgetVideo": {},
- "widgetNameError": "Pateikite rodomą vardą.",
- "@widgetNameError": {},
- "pleaseChooseAtLeastChars": "Pasirinkite bent {min} simbolius.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "acceptedTheInvitation": "👍 {username} priėmė kvietimą",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "activatedEndToEndEncryption": "🔐 {username} aktyvavo visapusį šifravimą",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "answeredTheCall": "{senderName} atsiliepė į skambutį",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "askVerificationRequest": "Priimti šią patvirtinimo užklausą iš {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "badServerLoginTypesException": "Namų serveris palaiko šiuos prisijungimo tipus:\n{serverVersions}\nTačiau ši programa palaiko tik:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "badServerVersionsException": "Namų serveris palaiko spec. versijas:\n{serverVersions}\nTačiau ši programa palaiko tik {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "bannedUser": "{username} užblokavo {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "changedTheHistoryVisibility": "{username} pakeitė istorijos matomumą",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} pakeitė istorijos matomumą į: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "chatBackupDescription": "Jūsų senos žinutės yra apsaugotos atkūrimo raktu. Pasirūpinkite, kad jo neprarastumėte.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_create": "Sukurti tuščią grupinį pokalbį\nNaudokite --no-encryption kad išjungti šifravimą",
- "@commandHint_create": {
- "type": "text",
- "description": "Usage hint for the command /create"
- },
- "commandHint_dm": "Pradėti tiesioginį pokalbį\nNaudokite --no-encryption kad išjungti šifravimą",
- "@commandHint_dm": {
- "type": "text",
- "description": "Usage hint for the command /dm"
- },
- "commandHint_myroomavatar": "Nustatyti savo nuotrauką šiame kambaryje (su mxc-uri)",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_op": "Nustatyti naudotojo galios lygį (numatytasis: 50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_react": "Siųsti atsakymą kaip reakciją",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "commandMissing": "{command} nėra komanda.",
- "@commandMissing": {
- "type": "text",
- "placeholders": {
- "command": {}
- },
- "description": "State that {command} is not a valid /command."
- },
- "containsDisplayName": "Turi rodomą vardą",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Turi vartotojo vardą",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "Nepavyko iššifruoti pranešimo: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "{count} dalyviai",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "createdTheChat": "💬 {username} sukūrė pokalbį",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "emptyChat": "Tuščias pokalbis",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "Jaustukas jau egzistuoja!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "Neteisingas jaustuko trumpasis kodas!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "Jaustukų paketai kambariui",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Jaustukų nustatymai",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "Jaustuko trumpasis kodas",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "Turite pasirinkti jaustuko trumpąjį kodą ir paveiksliuką!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "Įgalinti jaustukų paketą visur",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} baigė skambutį",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "errorObtainingLocation": "Klaida nustatant vietą: {error}",
- "@errorObtainingLocation": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "groupWith": "Grupė su {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "hasWithdrawnTheInvitationFor": "{username} atšaukė {targetName} kvietimą",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "inviteForMe": "Pakvietimas man",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "Pakviesti kontaktą į {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "invitedUser": "📩 {username} pakvietė {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "inviteText": "{username} pakvietė jus prisijungti prie FluffyChat. \n1. Įdiekite FluffyChat: https://fluffychat.im \n2. Prisiregistruokite arba prisijunkite \n3. Atidarykite pakvietimo nuorodą: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "joinedTheChat": "👋 {username} prisijungė prie pokalbio",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "kicked": "👞 {username} išmetė {targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "🙅 {username} išmetė ir užblokavo {targetName}",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "lastActiveAgo": "Paskutinis aktyvumas: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "loadCountMoreParticipants": "Įkelti dar {count} dalyvius",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "logInTo": "Prisijungti prie {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "seenByUserAndUser": "Matė {username} ir {username2}",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "toggleFavorite": "Perjungti parankinius",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "Perjungti nutildytą",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "Nepavyksta atidaryti URI {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "changedTheChatAvatar": "{username} pakeitė pokalbio avatarą",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} pakeitė pokalbio aprašymą į: '{description}'",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatNameTo": "{username} pakeitė pokalbio pavadinimą į: '{chatname}'",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatPermissions": "{username} pakeitė pokalbių leidimus",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} pakeitė rodomą vardą į: '{displayname}'",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRules": "{username} pakeitė svečio prieigos taisykles",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} pakeitė svečio prieigos taisykles į: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} pakeitė prisijungimo taisykles",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username} pakeitė prisijungimo taisykles į: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} pakeitė savo avatarą",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} pakeitė kambario pseudonimus",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} pakeitė pakvietimo nuorodą",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "yourStory": "Tavo istorija",
- "@yourStory": {},
- "replyHasBeenSent": "Atsakymas išsiųstas",
- "@replyHasBeenSent": {},
- "videoWithSize": "Vaizdo įrašas ({size})",
- "@videoWithSize": {
- "type": "text",
- "placeholders": {
- "size": {}
- }
- },
- "storyFrom": "Istorija nuo {date}: \n{body}",
- "@storyFrom": {
- "type": "text",
- "placeholders": {
- "date": {},
- "body": {}
- }
- },
- "whoCanSeeMyStoriesDesc": "Atminkite, kad žmonės gali matyti vienas kitą ir susisiekti tarpusavyje jūsų istorijoje.",
- "@whoCanSeeMyStoriesDesc": {},
- "whatIsGoingOn": "Kas vyksta?",
- "@whatIsGoingOn": {},
- "addDescription": "Pridėti aprašymą",
- "@addDescription": {},
- "iUnderstand": "Aš suprantu",
- "@iUnderstand": {},
- "pinMessage": "Prisegti prie kambario",
- "@pinMessage": {},
- "confirmEventUnpin": "Ar tikrai norite visam laikui atsegti įvykį?",
- "@confirmEventUnpin": {},
- "emojis": "Jaustukai",
- "@emojis": {},
- "placeCall": "Skambinti",
- "@placeCall": {},
- "voiceCall": "Balso skambutis",
- "@voiceCall": {},
- "unsupportedAndroidVersionLong": "Šiai funkcijai reikalinga naujesnė Android versija. Patikrinkite, ar nėra naujinimų arba Lineage OS palaikymo.",
- "@unsupportedAndroidVersionLong": {},
- "videoCallsBetaWarning": "Atminkite, kad vaizdo skambučiai šiuo metu yra beta versijos. Jie gali neveikti taip kaip tikėtasi, arba iš viso neveikti visose platformose.",
- "@videoCallsBetaWarning": {},
- "experimentalVideoCalls": "Eksperimentiniai vaizdo skambučiai",
- "@experimentalVideoCalls": {},
- "switchToAccount": "Perjungti paskyrą į {number}",
- "@switchToAccount": {
- "type": "number",
- "placeholders": {
- "number": {}
- }
- },
- "nextAccount": "Kita paskyra",
- "@nextAccount": {},
- "previousAccount": "Ankstesnė paskyra",
- "@previousAccount": {},
- "widgetEtherpad": "Teksto pastaba",
- "@widgetEtherpad": {},
- "widgetJitsi": "Jitsi Meet",
- "@widgetJitsi": {},
- "widgetName": "Vardas",
- "@widgetName": {},
- "widgetUrlError": "Netinkamas URL.",
- "@widgetUrlError": {},
- "youRejectedTheInvitation": "Jūs atmetėte kvietimą",
- "@youRejectedTheInvitation": {},
- "youJoinedTheChat": "Jūs prisijungėte prie pokalbio",
- "@youJoinedTheChat": {},
- "youAcceptedTheInvitation": "👍 Jūs priėmėte kvietimą",
- "@youAcceptedTheInvitation": {},
- "youBannedUser": "Jūs užblokavote {user}",
- "@youBannedUser": {
- "placeholders": {
- "user": {}
- }
- },
- "youHaveWithdrawnTheInvitationFor": "Jūs atšaukėte kvietimą {user}",
- "@youHaveWithdrawnTheInvitationFor": {
- "placeholders": {
- "user": {}
- }
- },
- "youInvitedBy": "📩 Jus pakvietė {user}",
- "@youInvitedBy": {
- "placeholders": {
- "user": {}
- }
- },
- "youKicked": "👞 Jūs išmetėte {user}",
- "@youKicked": {
- "placeholders": {
- "user": {}
- }
- },
- "youInvitedUser": "📩 Pakvietėte {user}",
- "@youInvitedUser": {
- "placeholders": {
- "user": {}
- }
- },
- "youKickedAndBanned": "🙅 Jūs išmetėte ir užblokavote {user}",
- "@youKickedAndBanned": {
- "placeholders": {
- "user": {}
- }
- },
- "youUnbannedUser": "Jūs atblokavote {user}",
- "@youUnbannedUser": {
- "placeholders": {
- "user": {}
- }
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{month}-{day}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateWithYear": "{year}-{month}-{day}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "locationDisabledNotice": "Vietos nustatymo paslaugos yra išjungtos. Kad galėtumėte bendrinti savo buvimo vietą, įjunkite jas.",
- "@locationDisabledNotice": {
- "type": "text",
- "placeholders": {}
- },
- "noMatrixServer": "{server1} nėra Matrix serveris, ar vietoj jo naudoti {server2}?",
- "@noMatrixServer": {
- "type": "text",
- "placeholders": {
- "server1": {},
- "server2": {}
- }
- },
- "numUsersTyping": "{count} vartotojai rašo…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "enableMultiAccounts": "(BETA) Įgalinkite kelias paskyras šiame įrenginyje",
- "@enableMultiAccounts": {},
- "openInMaps": "Atidaryti žemėlapiuose",
- "@openInMaps": {
- "type": "text",
- "placeholders": {}
- },
- "sentAPicture": "🖼️ {username} atsiuntė nuotrauką",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAVideo": "🎥 {username} atsiuntė vaizdo įrašą",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentCallInformations": "{senderName} išsiuntė skambučio informaciją",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "setCustomEmotes": "Nustatyti pasirinktinius jaustukus",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "userLeftTheChat": "🚪 {username} paliko pokalbį",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "markAsRead": "Žymėti kaip skaitytą",
- "@markAsRead": {},
- "pushRules": "Tiesioginių pranešimų taisyklės",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUserAndCountOthers": "{count, plural, other{Matė {username} ir {count} kiti}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "unreadChats": "{unreadCount, plural, =1{1 unread chat} other{{unreadCount} neperskaityti pokalbiai}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "matrixWidgets": "Matrix valdikliai",
- "@matrixWidgets": {},
- "editWidgets": "Redaguoti programėles",
- "@editWidgets": {},
- "addWidget": "Pridėti programėlę",
- "@addWidget": {},
- "widgetCustom": "Pasirinktinis",
- "@widgetCustom": {},
- "errorAddingWidget": "Pridedant valdiklį įvyko klaida.",
- "@errorAddingWidget": {},
- "askSSSSSign": "Kad galėtumėte prijungti kitą asmenį, įveskite savo saugyklos slaptafrazę arba atkūrimo raktą.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "autoplayImages": "Automatiškai leisti animuotus lipdukus ir jaustukus",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "ignoreListDescription": "Galite ignoruoti vartotojus, kurie jums trukdo. Negalėsite gauti jokių pranešimų ar kvietimų į kambarį iš vartotojų, įtrauktų į asmeninį ignoruojamųjų sąrašą.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_markasdm": "Pažymėti kaip tiesioginio pokalbio kambarį",
- "@commandHint_markasdm": {},
- "dehydrateTorLong": "TOR naudotojams rekomenduojama eksportuoti sesiją prieš uždarant langą.",
- "@dehydrateTorLong": {},
- "dehydrateWarning": "Šio veiksmo negalima atšaukti. Įsitikinkite, kad saugiai saugote atsarginę kopiją.",
- "@dehydrateWarning": {},
- "hydrateTorLong": "Ar paskutinį kartą eksportavote savo sesiją naudodami TOR? Greitai ją importuokite ir tęskite pokalbį.",
- "@hydrateTorLong": {},
- "commandHint_markasgroup": "Pažymėti kaip grupę",
- "@commandHint_markasgroup": {},
- "pleaseEnterRecoveryKeyDescription": "Norėdami atrakinti senas žinutes, įveskite atkūrimo raktą, kuris buvo sukurtas ankstesnės sesijos metu. Atkūrimo raktas NĖRA jūsų slaptažodis.",
- "@pleaseEnterRecoveryKeyDescription": {},
- "callingPermissions": "Skambinimo leidimai",
- "@callingPermissions": {},
- "storeInAppleKeyChain": "Saugoti Apple raktų grandinėje",
- "@storeInAppleKeyChain": {},
- "callingAccount": "Skambinimo paskyra",
- "@callingAccount": {},
- "newSpace": "Nauja erdvė",
- "@newSpace": {},
- "callingAccountDetails": "Leidžia FluffyChat naudoti vietinę Android rinkiklio programą.",
- "@callingAccountDetails": {},
- "appearOnTop": "Rodyti viršuje",
- "@appearOnTop": {},
- "enterSpace": "Įeiti į erdvę",
- "@enterSpace": {},
- "enterRoom": "Įeiti į kambarį",
- "@enterRoom": {},
- "allSpaces": "Visos erdvės",
- "@allSpaces": {},
- "user": "Vartotojas",
- "@user": {},
- "custom": "Pasirinktinis",
- "@custom": {},
- "confirmMatrixId": "Norėdami ištrinti savo paskyrą, patvirtinkite savo Matrix ID.",
- "@confirmMatrixId": {},
- "supposedMxid": "Tai turėtų būti {mxid}",
- "@supposedMxid": {
- "type": "text",
- "placeholders": {
- "mxid": {}
- }
- },
- "dehydrate": "Eksportuoti sesiją ir išvalyti įrenginį",
- "@dehydrate": {},
- "dehydrateTor": "TOR Naudotojai: Eksportuoti sesiją",
- "@dehydrateTor": {},
- "hydrateTor": "TOR Naudotojai: Importuoti sesijos eksportą",
- "@hydrateTor": {},
- "hydrate": "Atkurti iš atsarginės kopijos failo",
- "@hydrate": {},
- "pleaseEnterRecoveryKey": "Įveskite savo atkūrimo raktą:",
- "@pleaseEnterRecoveryKey": {},
- "recoveryKey": "Atkūrimo raktas",
- "@recoveryKey": {},
- "recoveryKeyLost": "Pamestas atkūrimo raktas?",
- "@recoveryKeyLost": {},
- "indexedDbErrorLong": "Deja, pagal numatytuosius nustatymus žinučių saugojimas privačiame režime nėra įjungtas.\nPrašome apsilankyti\n - about:config\n - nustatykite dom.indexedDB.privateBrowsing.enabled į true\nPriešingu atveju FluffyChat paleisti neįmanoma.",
- "@indexedDbErrorLong": {},
- "noEmailWarning": "Įveskite galiojantį el. pašto adresą. Priešingu atveju negalėsite iš naujo nustatyti slaptažodžio. Jei nenorite, dar kartą bakstelėkite mygtuką, kad galėtumėte tęsti.",
- "@noEmailWarning": {},
- "countFiles": "{count} failai",
- "@countFiles": {
- "placeholders": {
- "count": {}
- }
- },
- "updateAvailable": "Galimas FluffyChat atnaujinimas",
- "@updateAvailable": {},
- "updateNow": "Pradėti atnaujinimą fone",
- "@updateNow": {},
- "storeInSecureStorageDescription": "Atkūrimo raktą laikyti saugioje šio prietaiso saugykloje.",
- "@storeInSecureStorageDescription": {},
- "saveKeyManuallyDescription": "Įrašykite šį raktą rankiniu būdu, įjungę sistemos bendrinimo dialogo langą arba iškarpinę.",
- "@saveKeyManuallyDescription": {},
- "users": "Vartotojai",
- "@users": {},
- "stories": "Istorijos",
- "@stories": {},
- "storeSecurlyOnThisDevice": "Saugiai laikyti šiame prietaise",
- "@storeSecurlyOnThisDevice": {},
- "unlockOldMessages": "Atrakinti senas žinutes",
- "@unlockOldMessages": {},
- "storeInAndroidKeystore": "Saugoti Android raktų saugykloje",
- "@storeInAndroidKeystore": {},
- "indexedDbErrorTitle": "Privataus režimo problemos",
- "@indexedDbErrorTitle": {},
- "noKeyForThisMessage": "Taip gali atsitikti, jei žinutė buvo išsiųsta prieš prisijungiant prie paskyros šiame prietaise.\n\nTaip pat gali būti, kad siuntėjas užblokavo jūsų prietaisą arba kažkas sutriko su interneto ryšiu.\n\nAr galite perskaityti žinutę kitoje sesijoje? Tada galite perkelti žinutę iš jos! Eikite į Nustatymai > Prietaisai ir įsitikinkite, kad jūsų prietaisai patvirtino vienas kitą. Kai kitą kartą atidarysite kambarį ir abi sesijos bus pirmame plane, raktai bus perduoti automatiškai.\n\nNenorite prarasti raktų atsijungdami arba keisdami įrenginius? Įsitikinkite, kad nustatymuose įjungėte pokalbių atsarginę kopiją.",
- "@noKeyForThisMessage": {},
- "foregroundServiceRunning": "Šis pranešimas rodomas, kai veikia pirmojo plano paslauga.",
- "@foregroundServiceRunning": {},
- "screenSharingTitle": "ekrano bendrinimas",
- "@screenSharingTitle": {},
- "appearOnTopDetails": "Leidžia programėlę rodyti viršuje (nebūtina, jei jau esate nustatę Fluffychat kaip skambinimo paskyrą)",
- "@appearOnTopDetails": {},
- "otherCallingPermissions": "Mikrofonas, kamera ir kiti FluffyChat leidimai",
- "@otherCallingPermissions": {},
- "whyIsThisMessageEncrypted": "Kodėl ši žinutė neperskaitoma?",
- "@whyIsThisMessageEncrypted": {},
- "newGroup": "Nauja grupė",
- "@newGroup": {},
- "screenSharingDetail": "Bendrinate savo ekraną per FuffyChat",
- "@screenSharingDetail": {},
- "numChats": "{number} pokalbiai",
- "@numChats": {
- "type": "number",
- "placeholders": {
- "number": {}
- }
- },
- "hideUnimportantStateEvents": "Slėpti nesvarbius būsenos įvykius",
- "@hideUnimportantStateEvents": {}
-}
\ No newline at end of file
+ "commandHint_leave": "Palikti pokalbių kambarį",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "confirm": "Patvirtinti",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Atšaukti",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Redaguoti",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Atsisiųsti failą",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "about": "Apie",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Visi",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Failo vardas",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changePassword": "Keisti slaptažodį",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "close": "Uždaryti",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Archyvas",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "Praleisti",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "Bendrinti",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "Rodyti slaptažodį",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "time": "Laikas",
+ "@time": {},
+ "settings": "Nustatytmai",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sender": "Siuntėjas",
+ "@sender": {},
+ "yes": "Taip",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "Jūs",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logout": "Atsijungti",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Žinutės",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "scanQrCode": "Nuskanuokite QR kodą",
+ "@scanQrCode": {},
+ "ok": "OK",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addAccount": "Pridėti paskyrą",
+ "@addAccount": {},
+ "or": "Arba",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Slaptažodis",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "Slaptažodis pakeistas",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "Įveskite savo slaptažodį",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "Įveskite savo vartotojo vardą",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Atsakyti",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "Blokuoti įrenginį",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "Užblokuotas",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Pasirinkite saugų slaptažodį",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewGroup": "Sukurti naują grupę",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Ištrinti žinutę",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Atmesti",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Įrenginys",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "Įrenginio ID",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Įrenginiai",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "homeserver": "Namų serveris",
+ "@homeserver": {},
+ "enterYourHomeserver": "Įveskite namų serverį",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "Viskas paruošta!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "Šrifto dydis",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "clearArchive": "Išvalyti archyvą",
+ "@clearArchive": {},
+ "create": "Sukurti",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Prisijungti",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "Žmonės",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "Žinutė bus pašalinta visiem dalyviams",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Moderatorius",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Nutildyti pokalbį",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Naujas pokalbis",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareYourInviteLink": "Bendrinti savo pakvietimo nuorodą",
+ "@shareYourInviteLink": {},
+ "none": "Nė vienas",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Nėra leidimo",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "Nerasta kambarių…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Pranešimai",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "Pranešimai aktyvuoti šitai paskyrai",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "Gaunama vieta…",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "Agresyvus",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "Neprisijungta",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "Prisijungta",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "Oi! Deja, nustatant tiesioginius pranešimus įvyko klaida.",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "Oi, kažkas nutiko ne taip…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "Atidarykite programėlę, kad perskaityti žinutes",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "Nuoroda",
+ "@link": {},
+ "participant": "Dalyvis",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "Slapta frazė arba atkūrimo raktas",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Slaptažodis užmirštas",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "Slaptažodžio atkūrimas",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "Pasirinkite paveiksliuką",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Prisegti",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "Prašome pasirinkti",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "Pasirinkite slaptą kodą",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "Pasirinkite vartotojo vardą",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "Paspauskite nuorodą el. pašte ir tęskite toliau.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "Įveskite 4 skaitmenis arba palikite tuščią, jei norite išjungti programėlės užraktą.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Įveskite Matrix ID.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "Įveskite savo PIN kodą",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "Vadovaukitės svetainėje pateiktais nurodymais ir bakstelėkite Toliau.",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Privatumas",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Vieši kambariai",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Priežastis",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "Įrašymas",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactMessage": "Pašalinti žinutę",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "Registruotis",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reject": "Atmesti",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejoin": "Vėl prisijungti",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Pašalinti",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "Pašalinti visus kitus įrenginius",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "Pašalinti įrenginį",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "Pašalinti savo avatarą",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replaceRoomWithNewerVersion": "Pakeisti kambarį naujesne versija",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Prašyti leidimo",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "Kambarys buvo atnaujintas",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "Kambario versija",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Ieškoti",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Sutinku",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordsDoNotMatch": "Slaptažodžiai nesutampa!",
+ "@passwordsDoNotMatch": {},
+ "pleaseEnterValidEmail": "Įveskite teisingą el. pašto adresą.",
+ "@pleaseEnterValidEmail": {},
+ "repeatPassword": "Pakartokite slaptažodį",
+ "@repeatPassword": {},
+ "addEmail": "Pridėti el. paštą",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addGroupDescription": "Pridėkite grupės aprašymą",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Administratorius",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "slapyvardis",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "Visi pokalbiai",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "Bet kas gali prisijungti",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Ar esate tikri?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSureYouWantToLogout": "Ar tikrai norite atsijungti?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Pakeisti namų serverį",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Keisti savo stilių",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Keisti grupės pavadinimą",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Keisti ekrano užsklandą",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "Keisti savo avatarą",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Pokalbis",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Pokalbio detalės",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chats": "Pokalbiai",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "Užblokuoti vartotoją šiame kambaryje",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_clearcache": "Išvalyti laikiną talpyklą",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "commandHint_discardsession": "Atmesti sesiją",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "commandHint_html": "Siųsti tekstą HTML formatu",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_invite": "Pakviesti vartotoją į šitą kambarį",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "commandHint_join": "Prisijungti prie nurodyto kambario",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_kick": "Pašalinti vartotoja iš šito kambario",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_myroomnick": "Nustatyti savo rodomą vardą šiame kambaryje",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "commandHint_plain": "Siųsti neformatuotą tekstą",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_send": "Siųsti tekstą",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "commandHint_unban": "Atblokuoti vartotoją šiame kambaryje",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "commandInvalid": "Neteisinga komanda",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "configureChat": "Konfigūruoti pokalbį",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Nukopijuota į iškarpinę",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Kopijuoti",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Koipjuoti į iškarpinę",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Šiuo metu aktyvus",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Tamsi",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Ištrinti",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Panaikinti paskyra",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Tiesioginiai pokalbiai",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Užšifruotas",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "Šifravimas aktyvuotas",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "Įveskite grupės vardą",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "Įveskite el. pašto adresą",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Itin įžeidžiantis",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "Toliau",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "Nuo prisijungimo",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "Nuo pakvietimo",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "Eiti į naują kambarį",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "Grupė",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Grupės aprašymas",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "Grupės aprašymas pakeistas",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "Grupė yra vieša",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "Grupės",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsAreForbidden": "Svečiams draudžiama",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "Svečiai gali prisijungti",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "help": "Pagalba",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "Slėpti pašalintus įvykius",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Slėpti nežinomus įvykius",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Tapatybė",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Ignoruoti",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Ignoruoti vartotojai",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Palikti",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "Prisijungti vienu paspaudimu",
+ "@loginWithOneClick": {},
+ "makeSureTheIdentifierIsValid": "Įsitikinkite, kad indentifikatorius galiojantis",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Narių pokyčiai",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "Paminėti",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "Šifravimas",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Aktyvuoti šifravimą",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "Redaguoti blokuotus serverius",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "Redaguoti pokalbio leidimus",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Prisijungti",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "Išsiųsti paspaudus Enter",
+ "@sendOnEnter": {},
+ "banFromChat": "Užblokuoti iš pokalbio",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Užblokuotas",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "Pakeisti įrenginio vardą",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourChatBackupHasBeenSetUp": "Jūsų pokalbio atsarginė kopija buvo nustatyta.",
+ "@yourChatBackupHasBeenSetUp": {},
+ "chatBackup": "Pokalbio atsargine kopija",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_me": "Apibūdinkite save",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "displaynameHasBeenChanged": "Rodomas vardas buvo pakeistas",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Redaguoti rodomą vardą",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "Redaguoti kambario pseudonimus",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "Redaguoti kambario avatarą",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "Kiek įžeižiantis šis turinys?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ID",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Ignoruoti vartotoją",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "Aš paspaudžiau nuorodą",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "Neteisinga slaptafrazė arba atkūrimo raktas",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "Neįžeidžiantis",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Pakviesti kontaktą",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invited": "Pakviestas",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUsersOnly": "Tik pakviesti vartotojai",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "isTyping": "rašo…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "Prisijungti prie kambario",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kickFromChat": "Išmesti iš pokalbio",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "Seniai matytas",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "Paliko pokalbį",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Licencija",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "Šviesi",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadingPleaseWait": "Kraunama… Prašome palaukti.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Rodyti daugiau…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "💬 Nauja žinutė FluffyChat'e",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Nauja patvirtinimo užklausa!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Toliau",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "Ne",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "Nėra ryšio su serveriu",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setGroupDescription": "Nustatyti grupės aprašymą",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "Nustatyti pakvietimo nuorodą",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "Vienkartinis prisijungimas",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "Programinis kodas",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "Erdvė yra vieša",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceName": "Erdvės pavadinimas",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "status": "Būsena",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "Kaip sekasi šiandien?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "Pateikti",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "Sinchronizuojama… Prašome palaukti.",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "Perkėlimas iš kito įrenginio",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "Patvirtinti",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "Pradėti patvirtinimą",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "Jūs sėkmingai patvirtinote!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "Patvirtinama kita paskyra",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "Pokalbių istorijos matomumas",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "Matoma visiems dalyviams",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "Laukiama, kol dalyvis priims užklausą…",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "Rašyti žinutę…",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "Esate pakviesti į šį pokalbį",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "Jūs nebedalyvaujate šiame pokalbyje",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "Jūs negalite pakviesti savęs",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "Jums buvo uždrausta dalyvauti šiame pokalbyje",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "Žinutės informacija",
+ "@messageInfo": {},
+ "removeFromSpace": "Pašalinti iš erdvės",
+ "@removeFromSpace": {},
+ "security": "Apsauga",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "Siųsti kaip tekstą",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "sendAudio": "Siųsti garso įrašą",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Siųsti paveiksliuką",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "Sųsti bylą",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "Siųsti žinutes",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Siųsti originalą",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Siųsti video",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "separateChatTypes": "Atskirti tiesioginius pokalbius ir grupes",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setAsCanonicalAlias": "Nustatyti kaip pagrindinį slapyvardį",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "Nustatyti leidimų lygį",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "Nustatyti būseną",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareLocation": "Bendrinti vietą",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showDirectChatsInSpaces": "Rodyti susijusius tiesioginius pokalbius erdvėse",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signUp": "Registruotis",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "Sistema",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "Nepasiekiamas",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "Atblokuoti įrenginį",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEncryptionAlgorithm": "Nežinomas šifravimo algoritmas",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unmuteChat": "Įjungti pokalbio garsą",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "Atsegti",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "username": "Vartotojo vardas",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "Nepatvirtinta",
+ "@unverified": {},
+ "verified": "Patvirtinta",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "Vaizdo skambutis",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "Jūsų viešasis raktas",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpaceDescription": "Pasirinkite erdvę, kad prie jos pridėtumėte šį pokalbį.",
+ "@addToSpaceDescription": {},
+ "start": "Pradžia",
+ "@start": {},
+ "account": "Paskyra",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "Pridėti į erdvę",
+ "@addToSpace": {},
+ "appLock": "Programos užraktas",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "Ar svečiams leidžiama prisijungti",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Botų žinutės",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bubbleSize": "Burbulo dydis",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "Šifravimas buvo sugadintas",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "Pokalbis buvo pridėtas prie šios erdvės",
+ "@chatHasBeenAddedToThisSpace": {},
+ "compareEmojiMatch": "Palyginkite jaustukus",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Palyginkite skaičius",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "Kontaktas buvo pakviestas į grupę",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "Apie turinį pranešta serverio administratoriams",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "Nauja erdvė",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deactivateAccountWarning": "Tai deaktyvuos jūsų vartotojo paskyrą. Tai negali būti atšaukta! Ar jūs tuo tikri?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "Numatytasis teisių lygis",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "Šifravimo nebegalėsite išjungti. Ar jūs tuo tikri?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterASpacepName": "Įveskite erdvės vardą",
+ "@enterASpacepName": {},
+ "send": "Siųsti",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAMessage": "Siųsti žinutę",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "Pažymėti kaip skaitytą/neskaitytą",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "Per daug užklausų. Pabandykite dar kartą vėliau!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "Laukiama, kol dalyvis priims jaustukus…",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "Laukiama, kol dalyvis priims skaičius…",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "Užsklanda",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "Įspėjimas!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "Išsiuntėme jums el. laišką",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "Kas gali atlikti kokį veiksmą",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "Kam leidžiama prisijungti prie šios grupės",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "Kodėl norite apie tai pranešti?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "Ištrinti atsarginę pokalbių kopiją, kad sukurti naują atkūrimo raktą?",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "Naudodami šiuos adresus galite atkurti savo slaptažodį.",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "Žinutės tipas",
+ "@messageType": {},
+ "openGallery": "Atverti galeriją",
+ "@openGallery": {},
+ "chooseAUsername": "Pasirinkite vartotojo vardą",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "Nežinomas įrenginys",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "Balso žinutė",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "Matoma visiems",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "Pabandykite išsiųsti dar kartą",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationPermissionDeniedNotice": "Vietos leidimas atmestas. Suteikite leidimą kad galėtumėte bendrinti savo vietą.",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "Atminkite, kad norint naudoti end-to-end šifravimą, reikalingas Pantalaimon.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "Šifravimą galite suaktyvinti tik tada, kai kambarys nebebus viešai pasiekiamas.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "Nerasta jaustukų. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "Atrodo, kad jūsų telefone nėra Google Services. Tai geras sprendimas jūsų privatumui! Norėdami gauti tiesioginius pranešimus FluffyChat, rekomenduojame naudoti https://microg.org/ arba https://unifiedpush.org/.",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "Dar nepridėjote slaptažodžio atkūrimo būdo.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneClientLoggedOut": "Vienas iš jūsų klientų atsijungė",
+ "@oneClientLoggedOut": {},
+ "onlineKeyBackupEnabled": "Internetinė atsarginė raktų kopija įjungta",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Atidarykite kamerą",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "Atidarykite kamerą vaizdo įrašui",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "Redaguoti šios paskyros paketus",
+ "@editBundlesForAccount": {},
+ "serverRequiresEmail": "Šis serveris turi patvirtinti jūsų el. pašto adresą registracijai.",
+ "@serverRequiresEmail": {},
+ "optionalGroupName": "(Nebūtina) Grupės pavadinimas",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "Pridėti prie paketų",
+ "@addToBundle": {},
+ "removeFromBundle": "Pašalinkite iš šio paketo",
+ "@removeFromBundle": {},
+ "bundleName": "Paketo vardas",
+ "@bundleName": {},
+ "play": "Groti {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "redactedAnEvent": "{username} pašalino įvykį",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "rejectedTheInvitation": "{username} atmetė kvietimą",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removedBy": "Pašalino vartotojas {username}",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "unbanFromChat": "Atblokuoti pokalbyje",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "Atvaizduoti turtingą žinutės turinį",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "Pranešti apie žinutę",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "Išsaugoti failą",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "Matė {username}",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sendSticker": "Siųsti lipduką",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "📁 {username} atsiuntė failą",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "🎤 {username} atsiuntė garso įrašą",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "😊 {username} atsiuntė lipduką",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sharedTheLocation": "{username} bendrino savo vietą",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "startedACall": "{senderName} pradėjo skambutį",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "theyDontMatch": "Jie nesutampa",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "Jie sutampa",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "{username} atblokavo {targetName}",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "unknownEvent": "Nežinomas įvykis '{type}'",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "userAndOthersAreTyping": "{username} ir dar {count} kiti rašo…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "userAndUserAreTyping": "{username} ir {username2} rašo…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userIsTyping": "{username} rašo…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userSentUnknownEvent": "{username} išsiuntė {type} įvykį",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "addToStory": "Pridėti prie istorijos",
+ "@addToStory": {},
+ "publish": "Paskelbti",
+ "@publish": {},
+ "whoCanSeeMyStories": "Kas gali matyti mano istorijas?",
+ "@whoCanSeeMyStories": {},
+ "unsubscribeStories": "Atsisakyti istorijų prenumeratos",
+ "@unsubscribeStories": {},
+ "thisUserHasNotPostedAnythingYet": "Šis vartotojas dar nieko nepaskelbė savo istorijoje",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "storyPrivacyWarning": "Atminkite, kad žmonės gali matyti vienas kitą ir susisiekti tarpusavyje jūsų istorijoje. Jūsų istorijos bus matomos 24 valandas, tačiau nėra garantijos, kad jos bus ištrintos iš visų įrenginių ir serverių.",
+ "@storyPrivacyWarning": {},
+ "openChat": "Atverti pokalbį",
+ "@openChat": {},
+ "reportUser": "Pranešti apie vartotoją",
+ "@reportUser": {},
+ "dismiss": "Atsisakyti",
+ "@dismiss": {},
+ "reactedWith": "{sender} sureagavo su {reaction}",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "unsupportedAndroidVersion": "Nepalaikoma Android versija",
+ "@unsupportedAndroidVersion": {},
+ "emailOrUsername": "El. paštas arba vartotojo vardas",
+ "@emailOrUsername": {},
+ "widgetVideo": "Video",
+ "@widgetVideo": {},
+ "widgetNameError": "Pateikite rodomą vardą.",
+ "@widgetNameError": {},
+ "pleaseChooseAtLeastChars": "Pasirinkite bent {min} simbolius.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "acceptedTheInvitation": "👍 {username} priėmė kvietimą",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "activatedEndToEndEncryption": "🔐 {username} aktyvavo visapusį šifravimą",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "answeredTheCall": "{senderName} atsiliepė į skambutį",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "askVerificationRequest": "Priimti šią patvirtinimo užklausą iš {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "badServerLoginTypesException": "Namų serveris palaiko šiuos prisijungimo tipus:\n{serverVersions}\nTačiau ši programa palaiko tik:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "badServerVersionsException": "Namų serveris palaiko spec. versijas:\n{serverVersions}\nTačiau ši programa palaiko tik {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "bannedUser": "{username} užblokavo {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username} pakeitė istorijos matomumą",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} pakeitė istorijos matomumą į: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "chatBackupDescription": "Jūsų senos žinutės yra apsaugotos atkūrimo raktu. Pasirūpinkite, kad jo neprarastumėte.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_create": "Sukurti tuščią grupinį pokalbį\nNaudokite --no-encryption kad išjungti šifravimą",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "commandHint_dm": "Pradėti tiesioginį pokalbį\nNaudokite --no-encryption kad išjungti šifravimą",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_myroomavatar": "Nustatyti savo nuotrauką šiame kambaryje (su mxc-uri)",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_op": "Nustatyti naudotojo galios lygį (numatytasis: 50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_react": "Siųsti atsakymą kaip reakciją",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandMissing": "{command} nėra komanda.",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "containsDisplayName": "Turi rodomą vardą",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Turi vartotojo vardą",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "Nepavyko iššifruoti pranešimo: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "{count} dalyviai",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "createdTheChat": "💬 {username} sukūrė pokalbį",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "emptyChat": "Tuščias pokalbis",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "Jaustukas jau egzistuoja!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "Neteisingas jaustuko trumpasis kodas!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "Jaustukų paketai kambariui",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Jaustukų nustatymai",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "Jaustuko trumpasis kodas",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "Turite pasirinkti jaustuko trumpąjį kodą ir paveiksliuką!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "Įgalinti jaustukų paketą visur",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} baigė skambutį",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "errorObtainingLocation": "Klaida nustatant vietą: {error}",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "groupWith": "Grupė su {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "hasWithdrawnTheInvitationFor": "{username} atšaukė {targetName} kvietimą",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "inviteForMe": "Pakvietimas man",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "Pakviesti kontaktą į {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "invitedUser": "📩 {username} pakvietė {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "inviteText": "{username} pakvietė jus prisijungti prie FluffyChat. \n1. Įdiekite FluffyChat: https://fluffychat.im \n2. Prisiregistruokite arba prisijunkite \n3. Atidarykite pakvietimo nuorodą: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "joinedTheChat": "👋 {username} prisijungė prie pokalbio",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "kicked": "👞 {username} išmetė {targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "🙅 {username} išmetė ir užblokavo {targetName}",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "lastActiveAgo": "Paskutinis aktyvumas: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "loadCountMoreParticipants": "Įkelti dar {count} dalyvius",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "logInTo": "Prisijungti prie {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "seenByUserAndUser": "Matė {username} ir {username2}",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "toggleFavorite": "Perjungti parankinius",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "Perjungti nutildytą",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "Nepavyksta atidaryti URI {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "changedTheChatAvatar": "{username} pakeitė pokalbio avatarą",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} pakeitė pokalbio aprašymą į: '{description}'",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} pakeitė pokalbio pavadinimą į: '{chatname}'",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} pakeitė pokalbių leidimus",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} pakeitė rodomą vardą į: '{displayname}'",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} pakeitė svečio prieigos taisykles",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} pakeitė svečio prieigos taisykles į: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} pakeitė prisijungimo taisykles",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} pakeitė prisijungimo taisykles į: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} pakeitė savo avatarą",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} pakeitė kambario pseudonimus",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} pakeitė pakvietimo nuorodą",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "yourStory": "Tavo istorija",
+ "@yourStory": {},
+ "replyHasBeenSent": "Atsakymas išsiųstas",
+ "@replyHasBeenSent": {},
+ "videoWithSize": "Vaizdo įrašas ({size})",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "storyFrom": "Istorija nuo {date}: \n{body}",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "Atminkite, kad žmonės gali matyti vienas kitą ir susisiekti tarpusavyje jūsų istorijoje.",
+ "@whoCanSeeMyStoriesDesc": {},
+ "whatIsGoingOn": "Kas vyksta?",
+ "@whatIsGoingOn": {},
+ "addDescription": "Pridėti aprašymą",
+ "@addDescription": {},
+ "iUnderstand": "Aš suprantu",
+ "@iUnderstand": {},
+ "pinMessage": "Prisegti prie kambario",
+ "@pinMessage": {},
+ "confirmEventUnpin": "Ar tikrai norite visam laikui atsegti įvykį?",
+ "@confirmEventUnpin": {},
+ "emojis": "Jaustukai",
+ "@emojis": {},
+ "placeCall": "Skambinti",
+ "@placeCall": {},
+ "voiceCall": "Balso skambutis",
+ "@voiceCall": {},
+ "unsupportedAndroidVersionLong": "Šiai funkcijai reikalinga naujesnė Android versija. Patikrinkite, ar nėra naujinimų arba Lineage OS palaikymo.",
+ "@unsupportedAndroidVersionLong": {},
+ "videoCallsBetaWarning": "Atminkite, kad vaizdo skambučiai šiuo metu yra beta versijos. Jie gali neveikti taip kaip tikėtasi, arba iš viso neveikti visose platformose.",
+ "@videoCallsBetaWarning": {},
+ "experimentalVideoCalls": "Eksperimentiniai vaizdo skambučiai",
+ "@experimentalVideoCalls": {},
+ "switchToAccount": "Perjungti paskyrą į {number}",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "nextAccount": "Kita paskyra",
+ "@nextAccount": {},
+ "previousAccount": "Ankstesnė paskyra",
+ "@previousAccount": {},
+ "widgetEtherpad": "Teksto pastaba",
+ "@widgetEtherpad": {},
+ "widgetJitsi": "Jitsi Meet",
+ "@widgetJitsi": {},
+ "widgetName": "Vardas",
+ "@widgetName": {},
+ "widgetUrlError": "Netinkamas URL.",
+ "@widgetUrlError": {},
+ "youRejectedTheInvitation": "Jūs atmetėte kvietimą",
+ "@youRejectedTheInvitation": {},
+ "youJoinedTheChat": "Jūs prisijungėte prie pokalbio",
+ "@youJoinedTheChat": {},
+ "youAcceptedTheInvitation": "👍 Jūs priėmėte kvietimą",
+ "@youAcceptedTheInvitation": {},
+ "youBannedUser": "Jūs užblokavote {user}",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "Jūs atšaukėte kvietimą {user}",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youInvitedBy": "📩 Jus pakvietė {user}",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youKicked": "👞 Jūs išmetėte {user}",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youInvitedUser": "📩 Pakvietėte {user}",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youKickedAndBanned": "🙅 Jūs išmetėte ir užblokavote {user}",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youUnbannedUser": "Jūs atblokavote {user}",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{month}-{day}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithYear": "{year}-{month}-{day}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "locationDisabledNotice": "Vietos nustatymo paslaugos yra išjungtos. Kad galėtumėte bendrinti savo buvimo vietą, įjunkite jas.",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "{server1} nėra Matrix serveris, ar vietoj jo naudoti {server2}?",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "numUsersTyping": "{count} vartotojai rašo…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "enableMultiAccounts": "(BETA) Įgalinkite kelias paskyras šiame įrenginyje",
+ "@enableMultiAccounts": {},
+ "openInMaps": "Atidaryti žemėlapiuose",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "🖼️ {username} atsiuntė nuotrauką",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "🎥 {username} atsiuntė vaizdo įrašą",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentCallInformations": "{senderName} išsiuntė skambučio informaciją",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "setCustomEmotes": "Nustatyti pasirinktinius jaustukus",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userLeftTheChat": "🚪 {username} paliko pokalbį",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "markAsRead": "Žymėti kaip skaitytą",
+ "@markAsRead": {},
+ "pushRules": "Tiesioginių pranešimų taisyklės",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{Matė {username} ir {count} kiti}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "unreadChats": "{unreadCount, plural, =1{1 unread chat} other{{unreadCount} neperskaityti pokalbiai}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "matrixWidgets": "Matrix valdikliai",
+ "@matrixWidgets": {},
+ "editWidgets": "Redaguoti programėles",
+ "@editWidgets": {},
+ "addWidget": "Pridėti programėlę",
+ "@addWidget": {},
+ "widgetCustom": "Pasirinktinis",
+ "@widgetCustom": {},
+ "errorAddingWidget": "Pridedant valdiklį įvyko klaida.",
+ "@errorAddingWidget": {},
+ "askSSSSSign": "Kad galėtumėte prijungti kitą asmenį, įveskite savo saugyklos slaptafrazę arba atkūrimo raktą.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "autoplayImages": "Automatiškai leisti animuotus lipdukus ir jaustukus",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "ignoreListDescription": "Galite ignoruoti vartotojus, kurie jums trukdo. Negalėsite gauti jokių pranešimų ar kvietimų į kambarį iš vartotojų, įtrauktų į asmeninį ignoruojamųjų sąrašą.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasdm": "Pažymėti kaip tiesioginio pokalbio kambarį",
+ "@commandHint_markasdm": {},
+ "dehydrateTorLong": "TOR naudotojams rekomenduojama eksportuoti sesiją prieš uždarant langą.",
+ "@dehydrateTorLong": {},
+ "dehydrateWarning": "Šio veiksmo negalima atšaukti. Įsitikinkite, kad saugiai saugote atsarginę kopiją.",
+ "@dehydrateWarning": {},
+ "hydrateTorLong": "Ar paskutinį kartą eksportavote savo sesiją naudodami TOR? Greitai ją importuokite ir tęskite pokalbį.",
+ "@hydrateTorLong": {},
+ "commandHint_markasgroup": "Pažymėti kaip grupę",
+ "@commandHint_markasgroup": {},
+ "pleaseEnterRecoveryKeyDescription": "Norėdami atrakinti senas žinutes, įveskite atkūrimo raktą, kuris buvo sukurtas ankstesnės sesijos metu. Atkūrimo raktas NĖRA jūsų slaptažodis.",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "callingPermissions": "Skambinimo leidimai",
+ "@callingPermissions": {},
+ "storeInAppleKeyChain": "Saugoti Apple raktų grandinėje",
+ "@storeInAppleKeyChain": {},
+ "callingAccount": "Skambinimo paskyra",
+ "@callingAccount": {},
+ "newSpace": "Nauja erdvė",
+ "@newSpace": {},
+ "callingAccountDetails": "Leidžia FluffyChat naudoti vietinę Android rinkiklio programą.",
+ "@callingAccountDetails": {},
+ "appearOnTop": "Rodyti viršuje",
+ "@appearOnTop": {},
+ "enterSpace": "Įeiti į erdvę",
+ "@enterSpace": {},
+ "enterRoom": "Įeiti į kambarį",
+ "@enterRoom": {},
+ "allSpaces": "Visos erdvės",
+ "@allSpaces": {},
+ "user": "Vartotojas",
+ "@user": {},
+ "custom": "Pasirinktinis",
+ "@custom": {},
+ "confirmMatrixId": "Norėdami ištrinti savo paskyrą, patvirtinkite savo Matrix ID.",
+ "@confirmMatrixId": {},
+ "supposedMxid": "Tai turėtų būti {mxid}",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "dehydrate": "Eksportuoti sesiją ir išvalyti įrenginį",
+ "@dehydrate": {},
+ "dehydrateTor": "TOR Naudotojai: Eksportuoti sesiją",
+ "@dehydrateTor": {},
+ "hydrateTor": "TOR Naudotojai: Importuoti sesijos eksportą",
+ "@hydrateTor": {},
+ "hydrate": "Atkurti iš atsarginės kopijos failo",
+ "@hydrate": {},
+ "pleaseEnterRecoveryKey": "Įveskite savo atkūrimo raktą:",
+ "@pleaseEnterRecoveryKey": {},
+ "recoveryKey": "Atkūrimo raktas",
+ "@recoveryKey": {},
+ "recoveryKeyLost": "Pamestas atkūrimo raktas?",
+ "@recoveryKeyLost": {},
+ "indexedDbErrorLong": "Deja, pagal numatytuosius nustatymus žinučių saugojimas privačiame režime nėra įjungtas.\nPrašome apsilankyti\n - about:config\n - nustatykite dom.indexedDB.privateBrowsing.enabled į true\nPriešingu atveju FluffyChat paleisti neįmanoma.",
+ "@indexedDbErrorLong": {},
+ "noEmailWarning": "Įveskite galiojantį el. pašto adresą. Priešingu atveju negalėsite iš naujo nustatyti slaptažodžio. Jei nenorite, dar kartą bakstelėkite mygtuką, kad galėtumėte tęsti.",
+ "@noEmailWarning": {},
+ "countFiles": "{count} failai",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "updateAvailable": "Galimas FluffyChat atnaujinimas",
+ "@updateAvailable": {},
+ "updateNow": "Pradėti atnaujinimą fone",
+ "@updateNow": {},
+ "storeInSecureStorageDescription": "Atkūrimo raktą laikyti saugioje šio prietaiso saugykloje.",
+ "@storeInSecureStorageDescription": {},
+ "saveKeyManuallyDescription": "Įrašykite šį raktą rankiniu būdu, įjungę sistemos bendrinimo dialogo langą arba iškarpinę.",
+ "@saveKeyManuallyDescription": {},
+ "users": "Vartotojai",
+ "@users": {},
+ "stories": "Istorijos",
+ "@stories": {},
+ "storeSecurlyOnThisDevice": "Saugiai laikyti šiame prietaise",
+ "@storeSecurlyOnThisDevice": {},
+ "unlockOldMessages": "Atrakinti senas žinutes",
+ "@unlockOldMessages": {},
+ "storeInAndroidKeystore": "Saugoti Android raktų saugykloje",
+ "@storeInAndroidKeystore": {},
+ "indexedDbErrorTitle": "Privataus režimo problemos",
+ "@indexedDbErrorTitle": {},
+ "noKeyForThisMessage": "Taip gali atsitikti, jei žinutė buvo išsiųsta prieš prisijungiant prie paskyros šiame prietaise.\n\nTaip pat gali būti, kad siuntėjas užblokavo jūsų prietaisą arba kažkas sutriko su interneto ryšiu.\n\nAr galite perskaityti žinutę kitoje sesijoje? Tada galite perkelti žinutę iš jos! Eikite į Nustatymai > Prietaisai ir įsitikinkite, kad jūsų prietaisai patvirtino vienas kitą. Kai kitą kartą atidarysite kambarį ir abi sesijos bus pirmame plane, raktai bus perduoti automatiškai.\n\nNenorite prarasti raktų atsijungdami arba keisdami įrenginius? Įsitikinkite, kad nustatymuose įjungėte pokalbių atsarginę kopiją.",
+ "@noKeyForThisMessage": {},
+ "foregroundServiceRunning": "Šis pranešimas rodomas, kai veikia pirmojo plano paslauga.",
+ "@foregroundServiceRunning": {},
+ "screenSharingTitle": "ekrano bendrinimas",
+ "@screenSharingTitle": {},
+ "appearOnTopDetails": "Leidžia programėlę rodyti viršuje (nebūtina, jei jau esate nustatę Fluffychat kaip skambinimo paskyrą)",
+ "@appearOnTopDetails": {},
+ "otherCallingPermissions": "Mikrofonas, kamera ir kiti FluffyChat leidimai",
+ "@otherCallingPermissions": {},
+ "whyIsThisMessageEncrypted": "Kodėl ši žinutė neperskaitoma?",
+ "@whyIsThisMessageEncrypted": {},
+ "newGroup": "Nauja grupė",
+ "@newGroup": {},
+ "screenSharingDetail": "Bendrinate savo ekraną per FuffyChat",
+ "@screenSharingDetail": {},
+ "numChats": "{number} pokalbiai",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "hideUnimportantStateEvents": "Slėpti nesvarbius būsenos įvykius",
+ "@hideUnimportantStateEvents": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "tryAgain": "",
+ "@tryAgain": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "letsStart": "",
+ "@letsStart": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "invite": "",
+ "@invite": {},
+ "continueWith": "",
+ "@continueWith": {}
+}
diff --git a/assets/l10n/intl_lv.arb b/assets/l10n/intl_lv.arb
index 0967ef424..d138084cf 100644
--- a/assets/l10n/intl_lv.arb
+++ b/assets/l10n/intl_lv.arb
@@ -1 +1,2620 @@
-{}
+{
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "darkTheme": "",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "close": "",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "device": "",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "editDisplayname": "",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "banFromChat": "",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "askSSSSSign": "",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "changedTheChatDescriptionTo": "",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "countParticipants": "",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "areGuestsAllowedToJoin": "",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "dateWithoutYear": "",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "couldNotDecryptMessage": "",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheGuestAccessRules": "",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "dateWithYear": "",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "create": "",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "all": "",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "chatBackup": "",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "compareEmojiMatch": "",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomAliases": "",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "help": "",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "chatDetails": "",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "delete": "",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatPermissions": "",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeWallpaper": "",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "acceptedTheInvitation": "",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "changedTheChatNameTo": "",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "account": "",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "placeCall": "",
+ "@placeCall": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "openCamera": "",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "chat": "",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheProfileAvatar": "",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "allChats": "",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "badServerVersionsException": "",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "",
+ "@addToSpace": {},
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "about": "",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "activatedEndToEndEncryption": "",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "fluffychat": "",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "cancel": "",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "appLock": "",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "copiedToClipboard": "",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "confirm": "",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "dateAndTimeOfDay": "",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "logout": "",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "contactHasBeenInvitedToTheGroup": "",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "bannedUser": "",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "askVerificationRequest": "",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "changeTheHomeserver": "",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "changePassword": "",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "chooseAUsername": "",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ }
+}
diff --git a/assets/l10n/intl_nb.arb b/assets/l10n/intl_nb.arb
index da9120355..3d2f185e5 100644
--- a/assets/l10n/intl_nb.arb
+++ b/assets/l10n/intl_nb.arb
@@ -1,1783 +1,2651 @@
{
- "@@last_modified": "2021-08-14 12:41:09.967351",
- "about": "Om",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Godta",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} godtok invitasjonen",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "Konto",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "{username} skrudde på ende-til-ende -kryptering",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addGroupDescription": "Legg til gruppebeskrivelse",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Administrator",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "alias",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Alle",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} besvarte anropet",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "Hvem som helst kan delta",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "Programlås",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Arkiv",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "Skal gjester tillates å ta del",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Er du sikker?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSureYouWantToLogout": "Er du sikker på at du vil logge ut?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "For å kunne signere den andre personen, skriv inn ditt sikre lagerpassord eller gjenopprettingsnøkkel.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Godta denne bekreftelsesforespørselen fra {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "banFromChat": "Bannlys fra sludring",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Bannlyst",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} bannlyste {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "Blokker enhet",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Bot-meldinger",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Avbryt",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "changeDeviceName": "Endre enhetsnavn",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "{username} endret sludreavatar",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} endret sludrebeskrivelse til: «{description}»",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatNameTo": "{username} endret sludringsnavn til: «{chatname}»",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatPermissions": "{username} endret sludretilgangene",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} endret visningsnavn til: {displayname}",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRules": "{username} endret gjestetilgangsreglene",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} endret gjestetilgangsregler til: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibility": "{username} endret historikksynlighet",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} endret historikksynlighet til: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} endret tilgangsreglene",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username} endret tilgangsreglene til: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} endret avataren sin",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} endret rom-aliasene",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} endret invitasjonslenken",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "Endre passord",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Endre hjemmetjener",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Endre din stil",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Endre gruppens navn",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Endre bakgrunnsbilde",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "Krypteringen er skadet",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Sludring",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackup": "Sludringssikkerhetskopi",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "Din sludringssikkerhetskopi er sikret med en sikkerhetsnøkkel. Ikke mist den.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Sludringsdetaljer",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Velg et sterkt passord",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Velg et brukernavn",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "close": "Lukk",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "compareEmojiMatch": "Sammenlign og forsikre at følgende smilefjes samsvarer med de på den andre enheten:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Sammenlign og forsikre at følgende tall samsvarer med de på den andre enheten:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "Sett opp sludring",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Bekreft",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Koble til",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "Kontakt invitert til gruppen",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Inneholder visningsnavn",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Inneholder brukernavn",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "Innholdet har blitt rapportert til tjeneradministratorene",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "Kopiert til utklippstavle",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Kopier",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Kopier til utklippstavle",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "Kunne ikke dekryptere melding: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "{count} deltagere",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "Opprett",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "{username} opprettet sludringen",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "createNewGroup": "Opprett ny gruppe",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Aktiv nå",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Mørk",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{timeOfDay}, {date}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{day} {month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateWithYear": "{day} {month} {year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "deactivateAccountWarning": "Dette vil skru av din brukerkonto for godt, og kan ikke angres! Er du sikker?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "Forvalgt tilgangsnivå",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Slett",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Slett konto",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Slett melding",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Nekt",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Enhet",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "Enhets-ID",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Enheter",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Direktesludringer",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "Visningsnavn endret",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Last ned fil",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Rediger",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "Rediger blokkerte tjenere",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "Rediger sludringstilganger",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Rediger visningsnavn",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "Rediger romavatar",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "Smilefjeset finnes allerede!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "Ugyldig smilefjes-kode!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "Smilefjespakker for rommet",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Smilefjes-innstillinger",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "Smilefjes-kode",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "Du må velge en smilefjes-kode og et bilde!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "Tom sludring",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "Skru på smilefjespakke for hele programmet",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Skru på kryptering",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "Du vil ikke kunne skru av kryptering lenger. Er du sikker?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Kryptert",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "Kryptering",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "Kryptering er ikke påskrudd",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} avsluttet samtalen",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "enterAGroupName": "Skriv inn et gruppenavn",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "Skriv inn en e-postadresse",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterYourHomeserver": "Skriv inn din hjemmetjener",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "Alt er klart!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Veldig",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Filnavn",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "Skriftstørrelse",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "Videre",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "Fra å ta del",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "Fra invitasjonen",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "group": "Gruppe",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Gruppebeskrivelse",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "Gruppebeskrivelse endret",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "Gruppen er offentlig",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "Grupper",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "Gruppe med {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "guestsAreForbidden": "Gjester forbudt",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "Gjester kan ta del",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "{username} har trukket tilbake invitasjonen til {targetName}",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "help": "Hjelp",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "Skjul tilbaketrukne hendelser",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Skjul ukjente hendelser",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "Hvor støtende er innholdet?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ID",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Identitet",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Ignorer",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Ignorerte brukere",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "Du kan ignorere brukere som forstyrrer deg. Du vil ikke lenger kunne motta meldinger eller rominvitasjoner fra brukere på din personlige ignoreringsliste.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Ignorer brukernavn",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "Jeg har klikket på lenken",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "Feilaktig passord eller gjenopprettingsnøkkel",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "Harmløst",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Inviter kontakt",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "Inviter kontakt til {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "invited": "Invitert",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "{username} inviterte {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invitedUsersOnly": "Kun inviterte brukere",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "Invitasjon for meg",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username} har invitert deg til FluffyChat. \n1. Installer FluffyChat: https://fluffychat.im \n2. Registrer deg eller logg inn \n3. Åpne invitasjonslenken: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "isTyping": "skriver…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "{username}ble med i samtalen",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "joinRoom": "Ta del i rom",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "{username} kastet ut {targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "{username} kastet ut og bannlyste {targetName}",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickFromChat": "Kast ut av sludringen",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "Sist aktiv: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "lastSeenLongTimeAgo": "Sett for lenge siden",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Forlat",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "Forlat sludringen",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Lisens",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "Lys",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "Last inn {count} deltagere til",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "loadingPleaseWait": "Laster inn… Vent.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Last inn mer…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Logg inn",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "logInTo": "Logg inn på {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "logout": "Logg ut",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "Forsikre deg om at identifikatoren er gyldig",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Medlemsendringer",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "Nevn",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Meldinger",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "Meldingen vil bli fjernet for alle deltagere",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Moderator",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Forstum sludring",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "Merk at du trenger Pantalaimon for å bruke ende-til-ende -kryptering inntil videre.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Ny sludring",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "Ny melding i FluffyChat",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Ny bekreftelsesforespørsel!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Neste",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "Nei",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "Fant ingen smilefjes. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "Bruk https://microg.org/ for å få Google-tjenester (uten at det går ut over personvernet) for å få push-merknader i FluffyChat:",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "none": "Ingen",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "Du har ikke lagt til en måte å gjenopprette passordet ditt på.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Ingen tilgang",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "Fant ingen rom …",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Merknader",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "Merknader påslått for denne kontoen",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "{count} brukere skriver …",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "offensive": "Støtende",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "Frakoblet",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "OK",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "online": "Pålogget",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "Nettbasert sikkerhetskopiering av nøkler på",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "Oida, noe gikk galt …",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "Åpne programmet for å lese meldinger",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Åpne kamera",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "Gruppenavn (valgfritt)",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "participant": "Deltager",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "Passord eller gjenopprettingsnøkkel",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Passord",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Passord glemt",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "Passord endret",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "Passordgjenoppretting",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "Velg bilde",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Fest",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "play": "Spill av {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseChooseAUsername": "Velg et brukernavn",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "Klikk på lenken i e-posten og fortsett.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Skriv inn en Matrix-ID.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "Skriv inn passordet ditt",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "Skriv inn brukernavnet ditt",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "Følg instruksen på nettsiden og trykk på «Neste».",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Personvern",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "Offentlige rom",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "pushRules": "Dyttingsregler",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Grunn",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "Opptak",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "redactedAnEvent": "{username} har trukket tilbake en hendelse",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "reject": "Avslå",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "{username} avslo invitasjonen",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "rejoin": "Ta del igjen",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Fjern",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "removeAllOtherDevices": "Fjern alle andre enheter",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "Fjernet av {username}",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeDevice": "Fjern enhet",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "Opphev bannlysning",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "Tegn rikt meldingsinnhold",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "replaceRoomWithNewerVersion": "Erstatt rom med nyere versjon",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Svar",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "Rapporter melding",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Forespør tilgang",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "Rommet har blitt oppgradert",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Søk",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "security": "Sikkerhet",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "Sett av {username}",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "seenByUserAndCountOthers": "{count, plural, other{Sett av {username} og {count} andre}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "seenByUserAndUser": "Sett av {username} og {username2}",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "send": "Send",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "sendAMessage": "Send en melding",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "Send lyd",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "Send fil",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Send bilde",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "Send meldinger",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Send original",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Send video",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sentAFile": "{username} sendte en fil",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "{username} sendte lyd",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "{username} sendte et bilde",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "{username} sendte et klistremerke",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAVideo": "{username} sendte en video",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentCallInformations": "{senderName} sendte anropsinfo",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "setCustomEmotes": "Sett tilpassede smilefjes",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "setGroupDescription": "Sett gruppebeskrivelse",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "Sett invitasjonslenke",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "setPermissionsLevel": "Sett tilgangsnivå",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "Angi status",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "Innstilinger",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "share": "Del",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "sharedTheLocation": "{username} delte posisjonen",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "signUp": "Registrer deg",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "Hopp over",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "Kildekode",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "startedACall": "{senderName} startet en samtale",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "status": "Status",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "statusExampleMessage": "Hvordan har du det i dag?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "Send inn",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "System",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "theyDontMatch": "Samsvarer ikke",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "Samsvarer",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "For mange forespørsler. Prøv igjen senere!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "Overfør fra en annen enhet",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "tryToSendAgain": "Prøv å sende igjen",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "Utilgjengelig",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "{username} opphevet bannlysning av {targetName}",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "unblockDevice": "Opphev blokkering av enhet",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "Ukjent enhet",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEncryptionAlgorithm": "Ukjent krypteringsalgoritme",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEvent": "Ukjent hendelse «{type}»",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "unmuteChat": "Opphev forstumming av sludring",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "Løsne",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "unreadChats": "{unreadCount, plural, other{{unreadCount} uleste sludringer}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "userAndOthersAreTyping": "{username} og {count} andre skriver…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "userAndUserAreTyping": "{username} og {username2} skriver…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userIsTyping": "{username} skriver…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userLeftTheChat": "{username} har forlatt sludringen",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "username": "Brukernavn",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "userSentUnknownEvent": "{username} sendte en {type}-hendelse",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "verify": "Bekreft",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "Start bekreftelse",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "Du har bekreftet!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "Bekrefter annen konto",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "Videosamtale",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "Sludrehistorikkens synlighet",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "Synlig for alle deltagere",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "Synlig for alle",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "Lydmelding",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "Venter på at samtalepartner skal godta tallene …",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "Bakgrunnsbilde",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "Advarsel!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "Du har fått en e-post",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "Hvem kan utføre hvilken handling",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "Hvem tillates å ta del i denne gruppen",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "Hvorfor ønsker du å rapportere dette?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "Med disse adressene kan du gjenopprette passordet ditt hvis du trenger det.",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "Skriv en melding …",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "Ja",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "you": "Deg",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "Du er invitert til denne sludringen",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "Du deltar ikke lenger i denne sludringen",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "Du kan ikke invitere deg selv",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "Du har blitt bannlyst fra denne sludringen",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "Din offentlige nøkkel",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "Marker som lest/ulest",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "Veksle forstumming",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "toggleFavorite": "Veksle favorittmerking",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "Ingen tilkobling til tjeneren",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterValidEmail": "Skriv inn en gyldig e-postadresse.",
- "@pleaseEnterValidEmail": {},
- "addEmail": "Legg til e-post",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAtLeastChars": "Vennligst velg minst {min} tegn.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "repeatPassword": "Gjenta passord",
- "@repeatPassword": {},
- "passwordsDoNotMatch": "Passordet samsvarer ikke!",
- "@passwordsDoNotMatch": {},
- "addToSpace": "Legg til space",
- "@addToSpace": {},
- "allChats": "Alle samtaler",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "autoplayImages": "Automatisk spill av animerte stickers og emojis",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "badServerLoginTypesException": "Denne hjemme serveren støtter følgende innloggings-typer:\n{serverVersions}\nMen denne applikasjonen støtter kun:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "sendOnEnter": "Trykk på enter for å sende",
- "@sendOnEnter": {},
- "badServerVersionsException": "Denne hjemme serveren støtter følgene Spec-versjoner:\n{serverVersions}\nMen denne applikasjonen støtter kun {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "blocked": "Blokkert",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "Kan ikke åpne URI {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "changeYourAvatar": "Bytt profilbilde",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
+ "@@last_modified": "2021-08-14 12:41:09.967351",
+ "about": "Om",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Godta",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} godtok invitasjonen",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
}
-}
\ No newline at end of file
+ },
+ "account": "Konto",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "{username} skrudde på ende-til-ende -kryptering",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addGroupDescription": "Legg til gruppebeskrivelse",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Administrator",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "alias",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Alle",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} besvarte anropet",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "Hvem som helst kan delta",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "Programlås",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Arkiv",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "Skal gjester tillates å ta del",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Er du sikker?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSureYouWantToLogout": "Er du sikker på at du vil logge ut?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "For å kunne signere den andre personen, skriv inn ditt sikre lagerpassord eller gjenopprettingsnøkkel.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Godta denne bekreftelsesforespørselen fra {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banFromChat": "Bannlys fra sludring",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Bannlyst",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} bannlyste {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "Blokker enhet",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Bot-meldinger",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Avbryt",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "Endre enhetsnavn",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "{username} endret sludreavatar",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} endret sludrebeskrivelse til: «{description}»",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} endret sludringsnavn til: «{chatname}»",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} endret sludretilgangene",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} endret visningsnavn til: {displayname}",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} endret gjestetilgangsreglene",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} endret gjestetilgangsregler til: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username} endret historikksynlighet",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} endret historikksynlighet til: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} endret tilgangsreglene",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} endret tilgangsreglene til: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} endret avataren sin",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} endret rom-aliasene",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} endret invitasjonslenken",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "Endre passord",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Endre hjemmetjener",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Endre din stil",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Endre gruppens navn",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Endre bakgrunnsbilde",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "Krypteringen er skadet",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Sludring",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackup": "Sludringssikkerhetskopi",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "Din sludringssikkerhetskopi er sikret med en sikkerhetsnøkkel. Ikke mist den.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Sludringsdetaljer",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Velg et sterkt passord",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Velg et brukernavn",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "close": "Lukk",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareEmojiMatch": "Sammenlign og forsikre at følgende smilefjes samsvarer med de på den andre enheten:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Sammenlign og forsikre at følgende tall samsvarer med de på den andre enheten:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "Sett opp sludring",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Bekreft",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Koble til",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "Kontakt invitert til gruppen",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Inneholder visningsnavn",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Inneholder brukernavn",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "Innholdet har blitt rapportert til tjeneradministratorene",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Kopiert til utklippstavle",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Kopier",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Kopier til utklippstavle",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "Kunne ikke dekryptere melding: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "{count} deltagere",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "Opprett",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "{username} opprettet sludringen",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "createNewGroup": "Opprett ny gruppe",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Aktiv nå",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Mørk",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{timeOfDay}, {date}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{day} {month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithYear": "{day} {month} {year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "deactivateAccountWarning": "Dette vil skru av din brukerkonto for godt, og kan ikke angres! Er du sikker?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "Forvalgt tilgangsnivå",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Slett",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Slett konto",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Slett melding",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Nekt",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Enhet",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "Enhets-ID",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Enheter",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Direktesludringer",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "Visningsnavn endret",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Last ned fil",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Rediger",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "Rediger blokkerte tjenere",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "Rediger sludringstilganger",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Rediger visningsnavn",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "Rediger romavatar",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "Smilefjeset finnes allerede!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "Ugyldig smilefjes-kode!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "Smilefjespakker for rommet",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Smilefjes-innstillinger",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "Smilefjes-kode",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "Du må velge en smilefjes-kode og et bilde!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "Tom sludring",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "Skru på smilefjespakke for hele programmet",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Skru på kryptering",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "Du vil ikke kunne skru av kryptering lenger. Er du sikker?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Kryptert",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "Kryptering",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "Kryptering er ikke påskrudd",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} avsluttet samtalen",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "enterAGroupName": "Skriv inn et gruppenavn",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "Skriv inn en e-postadresse",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourHomeserver": "Skriv inn din hjemmetjener",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "Alt er klart!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Veldig",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Filnavn",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "Skriftstørrelse",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "Videre",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "Fra å ta del",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "Fra invitasjonen",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "Gruppe",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Gruppebeskrivelse",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "Gruppebeskrivelse endret",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "Gruppen er offentlig",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "Grupper",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "Gruppe med {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "guestsAreForbidden": "Gjester forbudt",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "Gjester kan ta del",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "{username} har trukket tilbake invitasjonen til {targetName}",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "help": "Hjelp",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "Skjul tilbaketrukne hendelser",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Skjul ukjente hendelser",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "Hvor støtende er innholdet?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ID",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Identitet",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Ignorer",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Ignorerte brukere",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "Du kan ignorere brukere som forstyrrer deg. Du vil ikke lenger kunne motta meldinger eller rominvitasjoner fra brukere på din personlige ignoreringsliste.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Ignorer brukernavn",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "Jeg har klikket på lenken",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "Feilaktig passord eller gjenopprettingsnøkkel",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "Harmløst",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Inviter kontakt",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "Inviter kontakt til {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "invited": "Invitert",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "{username} inviterte {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invitedUsersOnly": "Kun inviterte brukere",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "Invitasjon for meg",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username} har invitert deg til FluffyChat. \n1. Installer FluffyChat: https://fluffychat.im \n2. Registrer deg eller logg inn \n3. Åpne invitasjonslenken: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "isTyping": "skriver…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "{username}ble med i samtalen",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "joinRoom": "Ta del i rom",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "{username} kastet ut {targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "{username} kastet ut og bannlyste {targetName}",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "Kast ut av sludringen",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "Sist aktiv: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "Sett for lenge siden",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Forlat",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "Forlat sludringen",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Lisens",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "Lys",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "Last inn {count} deltagere til",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "loadingPleaseWait": "Laster inn… Vent.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Last inn mer…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Logg inn",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "Logg inn på {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "logout": "Logg ut",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "Forsikre deg om at identifikatoren er gyldig",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Medlemsendringer",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "Nevn",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Meldinger",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "Meldingen vil bli fjernet for alle deltagere",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Moderator",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Forstum sludring",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "Merk at du trenger Pantalaimon for å bruke ende-til-ende -kryptering inntil videre.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Ny sludring",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "Ny melding i FluffyChat",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Ny bekreftelsesforespørsel!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Neste",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "Nei",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "Fant ingen smilefjes. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "Bruk https://microg.org/ for å få Google-tjenester (uten at det går ut over personvernet) for å få push-merknader i FluffyChat:",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "Ingen",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "Du har ikke lagt til en måte å gjenopprette passordet ditt på.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Ingen tilgang",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "Fant ingen rom …",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Merknader",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "Merknader påslått for denne kontoen",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "{count} brukere skriver …",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "offensive": "Støtende",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "Frakoblet",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "OK",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "Pålogget",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "Nettbasert sikkerhetskopiering av nøkler på",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "Oida, noe gikk galt …",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "Åpne programmet for å lese meldinger",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Åpne kamera",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "Gruppenavn (valgfritt)",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "participant": "Deltager",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "Passord eller gjenopprettingsnøkkel",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Passord",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Passord glemt",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "Passord endret",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "Passordgjenoppretting",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "Velg bilde",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Fest",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "Spill av {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseChooseAUsername": "Velg et brukernavn",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "Klikk på lenken i e-posten og fortsett.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Skriv inn en Matrix-ID.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "Skriv inn passordet ditt",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "Skriv inn brukernavnet ditt",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "Følg instruksen på nettsiden og trykk på «Neste».",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Personvern",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Offentlige rom",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "Dyttingsregler",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Grunn",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "Opptak",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "{username} har trukket tilbake en hendelse",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "reject": "Avslå",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "{username} avslo invitasjonen",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "rejoin": "Ta del igjen",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Fjern",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "Fjern alle andre enheter",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "Fjernet av {username}",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeDevice": "Fjern enhet",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "Opphev bannlysning",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "Tegn rikt meldingsinnhold",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replaceRoomWithNewerVersion": "Erstatt rom med nyere versjon",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Svar",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "Rapporter melding",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Forespør tilgang",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "Rommet har blitt oppgradert",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Søk",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "Sikkerhet",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "Sett av {username}",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{Sett av {username} og {count} andre}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "seenByUserAndUser": "Sett av {username} og {username2}",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "send": "Send",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAMessage": "Send en melding",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "Send lyd",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "Send fil",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Send bilde",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "Send meldinger",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Send original",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Send video",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "{username} sendte en fil",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "{username} sendte lyd",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "{username} sendte et bilde",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "{username} sendte et klistremerke",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "{username} sendte en video",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentCallInformations": "{senderName} sendte anropsinfo",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "setCustomEmotes": "Sett tilpassede smilefjes",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setGroupDescription": "Sett gruppebeskrivelse",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "Sett invitasjonslenke",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "Sett tilgangsnivå",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "Angi status",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "Innstilinger",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "Del",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "{username} delte posisjonen",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signUp": "Registrer deg",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "Hopp over",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "Kildekode",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "{senderName} startet en samtale",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "status": "Status",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "Hvordan har du det i dag?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "Send inn",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "System",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyDontMatch": "Samsvarer ikke",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "Samsvarer",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "For mange forespørsler. Prøv igjen senere!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "Overfør fra en annen enhet",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "Prøv å sende igjen",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "Utilgjengelig",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "{username} opphevet bannlysning av {targetName}",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "unblockDevice": "Opphev blokkering av enhet",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "Ukjent enhet",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEncryptionAlgorithm": "Ukjent krypteringsalgoritme",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "Ukjent hendelse «{type}»",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "unmuteChat": "Opphev forstumming av sludring",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "Løsne",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unreadChats": "{unreadCount, plural, other{{unreadCount} uleste sludringer}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "userAndOthersAreTyping": "{username} og {count} andre skriver…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "userAndUserAreTyping": "{username} og {username2} skriver…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userIsTyping": "{username} skriver…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userLeftTheChat": "{username} har forlatt sludringen",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "username": "Brukernavn",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userSentUnknownEvent": "{username} sendte en {type}-hendelse",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "verify": "Bekreft",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "Start bekreftelse",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "Du har bekreftet!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "Bekrefter annen konto",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "Videosamtale",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "Sludrehistorikkens synlighet",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "Synlig for alle deltagere",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "Synlig for alle",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "Lydmelding",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "Venter på at samtalepartner skal godta tallene …",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "Bakgrunnsbilde",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "Advarsel!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "Du har fått en e-post",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "Hvem kan utføre hvilken handling",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "Hvem tillates å ta del i denne gruppen",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "Hvorfor ønsker du å rapportere dette?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "Med disse adressene kan du gjenopprette passordet ditt hvis du trenger det.",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "Skriv en melding …",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "Ja",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "Deg",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "Du er invitert til denne sludringen",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "Du deltar ikke lenger i denne sludringen",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "Du kan ikke invitere deg selv",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "Du har blitt bannlyst fra denne sludringen",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "Din offentlige nøkkel",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "Marker som lest/ulest",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "Veksle forstumming",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "Veksle favorittmerking",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "Ingen tilkobling til tjeneren",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "Skriv inn en gyldig e-postadresse.",
+ "@pleaseEnterValidEmail": {},
+ "addEmail": "Legg til e-post",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAtLeastChars": "Vennligst velg minst {min} tegn.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "repeatPassword": "Gjenta passord",
+ "@repeatPassword": {},
+ "passwordsDoNotMatch": "Passordet samsvarer ikke!",
+ "@passwordsDoNotMatch": {},
+ "addToSpace": "Legg til space",
+ "@addToSpace": {},
+ "allChats": "Alle samtaler",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "autoplayImages": "Automatisk spill av animerte stickers og emojis",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "badServerLoginTypesException": "Denne hjemme serveren støtter følgende innloggings-typer:\n{serverVersions}\nMen denne applikasjonen støtter kun:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "sendOnEnter": "Trykk på enter for å sende",
+ "@sendOnEnter": {},
+ "badServerVersionsException": "Denne hjemme serveren støtter følgene Spec-versjoner:\n{serverVersions}\nMen denne applikasjonen støtter kun {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "blocked": "Blokkert",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "Kan ikke åpne URI {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "changeYourAvatar": "Bytt profilbilde",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "addAccount": "",
+ "@addAccount": {},
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addToBundle": "",
+ "@addToBundle": {},
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "yourStory": "",
+ "@yourStory": {},
+ "unverified": "",
+ "@unverified": {},
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "emojis": "",
+ "@emojis": {},
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/l10n/intl_nl.arb b/assets/l10n/intl_nl.arb
index 88d0dcd1f..6c96fcd85 100644
--- a/assets/l10n/intl_nl.arb
+++ b/assets/l10n/intl_nl.arb
@@ -1167,7 +1167,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "Het lijkt erop dat je geen Google-services op je telefoon hebt. Dat is een goede beslissing voor je privacy! Om pushmeldingen in FluffyChat te ontvangen raden we je https://microg.org/ of https://unifiedpush.org aan.",
+ "noGoogleServicesWarning": "Firebase Cloud Messaging lijkt niet beschikbaar op je apparaat. Om nog steeds meldingen te krijgen, adviseren we om ntfy te installeren. Met ntfy of een andere Unified Push provider kun je meldingen ontvangen op een veilige manier. Je kunt ntfy downloaden van de PlayStore of van F-Droid.",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -2616,5 +2616,45 @@
"placeholders": {
"seconds": {}
}
- }
+ },
+ "banUserDescription": "De persoon zal worden verbannen van de chat en kan niet meer toetreden totdat de verbanning is opgeheven.",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "Je wordt op dit apparaat uitgelogd en zal niet langer in staat zijn om berichten te ontvangen.",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "De persoon zal weer in staat zijn om de chat te betreden als ze het proberen.",
+ "@unbanUserDescription": {},
+ "todoLists": "(Beta) Todo's",
+ "@todoLists": {},
+ "editTodo": "Wijzig todo",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "Meldingen zijn niet beschikbaar",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "Voeg een titel toe",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "Wanneer je deze persoon beheerder maakt kun je dit niet ongedaan maken als jullie dezelfde rechten hebben.",
+ "@makeAdminDescription": {},
+ "noTodosYet": "Er zijn nog geen todo's toegevoegd aan deze chat. Maak je eerste todo en start met samenwerken met anderen. 📝",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "De chat zal naar het archief worden verplaatst. Andere personen zullen in staat zijn te zien dat je de chat hebt verlaten.",
+ "@archiveRoomDescription": {},
+ "todosUnencrypted": "Let op dat todo's zichtbaar zijn voor iedereen in de chat en niet zijn versleuteld.",
+ "@todosUnencrypted": {},
+ "hasKnocked": "{user} heeft geklopt",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newTodo": "Nieuwe todo",
+ "@newTodo": {},
+ "learnMore": "Lees meer",
+ "@learnMore": {},
+ "todoListChangedError": "Oeps... De todo's zijn aangepast terwijl je aan het bewerken was.",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "De chat zal dan opnieuw gemaakt worden met de nieuwe kamerversie. Alle deelnemers worden geïnformeerd dat ze moeten overstappen naar de nieuwe chat. Je kan meer lezen over kamerversies op https://spec.matrix.org/latest/rooms/",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "Vul een getal in groter dan 0",
+ "@pleaseEnterANumber": {},
+ "kickUserDescription": "De persoon is verwijderd uit de chat, maar is niet verbannen. In publieke chats kan de persoon op elk moment opnieuw deelnemen.",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_pl.arb b/assets/l10n/intl_pl.arb
index c66066775..705d8ac47 100644
--- a/assets/l10n/intl_pl.arb
+++ b/assets/l10n/intl_pl.arb
@@ -844,7 +844,7 @@
"type": "text",
"placeholders": {}
},
- "inviteText": "{username} zaprosił/-a cię do FluffyChat. \n1. Zainstaluj FluffyChat: https://fluffychat.im \n2. Zarejestuj się lub zaloguj \n3. Otwórz link zaproszenia: {link}",
+ "inviteText": "{username} zaprosił/-a cię do FluffyChat. \n1. Odwiedź fluffychat.im i zainstaluj aplikację\n2. Zarejestuj się lub zaloguj \n3. Otwórz link zaproszenia:\n{link}",
"@inviteText": {
"type": "text",
"placeholders": {
@@ -1490,7 +1490,7 @@
"type": "text",
"placeholders": {}
},
- "wallpaper": "Tapeta",
+ "wallpaper": "Tapeta:",
"@wallpaper": {
"type": "text",
"placeholders": {}
@@ -1827,7 +1827,7 @@
"type": "text",
"placeholders": {}
},
- "redactMessage": "Przekaż wiadomość",
+ "redactMessage": "Utajnij wiadomość",
"@redactMessage": {
"type": "text",
"placeholders": {}
@@ -1992,7 +1992,7 @@
"@whoCanSeeMyStoriesDesc": {},
"shareYourInviteLink": "Udostępnij swój link zaproszenia",
"@shareYourInviteLink": {},
- "separateChatTypes": "Oddzielenie czatów bezpośrednich i grup",
+ "separateChatTypes": "Oddzielenie czatów bezpośrednich i grupowych",
"@separateChatTypes": {
"type": "text",
"placeholders": {}
@@ -2202,7 +2202,7 @@
"mxid": {}
}
},
- "commandHint_markasdm": "Oznacz jako pokój wiadomości bezpośrednich",
+ "commandHint_markasdm": "Oznacz jako pokój wiadomości bezpośrednich dla podanego Matrix ID",
"@commandHint_markasdm": {},
"confirmMatrixId": "Potwierdź swój identyfikator Matrix w celu usunięcia konta.",
"@confirmMatrixId": {},
@@ -2483,5 +2483,172 @@
"removeFromBundle": "Usuń z tej paczki",
"@removeFromBundle": {},
"openLinkInBrowser": "Otwórz link w przeglądarce",
- "@openLinkInBrowser": {}
+ "@openLinkInBrowser": {},
+ "allRooms": "Wszystkie czaty grupowe",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "O nie. Coś poszło nie tak. Spróbuj ponownie później. Jeśli chcesz, możesz zgłosić błąd programistom.",
+ "@reportErrorDescription": {},
+ "setColorTheme": "Ustal styl kolorów:",
+ "@setColorTheme": {},
+ "requests": "Żądania",
+ "@requests": {},
+ "tryAgain": "Spróbuj ponownie",
+ "@tryAgain": {},
+ "messagesStyle": "Wiadomości:",
+ "@messagesStyle": {},
+ "chatDescription": "Opis czatu",
+ "@chatDescription": {},
+ "invalidServerName": "Nieprawidłowa nazwa serwera",
+ "@invalidServerName": {},
+ "chatPermissions": "Uprawnienia czatu",
+ "@chatPermissions": {},
+ "signInWithPassword": "Zaloguj się z hasłem",
+ "@signInWithPassword": {},
+ "setChatDescription": "Ustaw opis czatu",
+ "@setChatDescription": {},
+ "importFromZipFile": "Zaimportuj z pliku .zip",
+ "@importFromZipFile": {},
+ "discover": "Odkrywanie",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedBy": "Utajnione przez {username}",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signInWith": "Zaloguj się z {provider}",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "optionalRedactReason": "(Opcjonalnie) Powód utajnienia tej wiadomości...",
+ "@optionalRedactReason": {},
+ "exportEmotePack": "Eksportuj pakiet Emotikon jako .zip",
+ "@exportEmotePack": {},
+ "savedEmotePack": "Zapisano pakiet emotikon do {path}!",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "inviteContactToGroupQuestion": "Czy chcesz zaprosić {contact} do czatu „{groupName}”?",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "Utajnione przez {username} z powodu: \"{reason}\"",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "importZipFile": "Zaimportuj plik .zip",
+ "@importZipFile": {},
+ "anyoneCanKnock": "Każdy może zapukać",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "Wiadomość zostanie utajniona u wszystkich uczestników tej rozmowy. Nie można tego cofnąć.",
+ "@redactMessageDescription": {},
+ "invalidInput": "Nieprawidłowe dane!",
+ "@invalidInput": {},
+ "report": "raport",
+ "@report": {},
+ "addChatDescription": "Dodaj opis tego czatu",
+ "@addChatDescription": {},
+ "directChat": "Rozmowa bezpośrednia",
+ "@directChat": {},
+ "noOneCanJoin": "Nikt nie może dołączyć",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "Wprowadzono nieprawidłowy kod PIN! Spróbuj ponownie za {seconds} sekund...",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "Wysyłaj powiadomienie o pisaniu",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "📨 Zaproszenie do rozmowy grupowej",
+ "@inviteGroupChat": {},
+ "invitePrivateChat": "📨 Zaproszenie do rozmowy prywatnej",
+ "@invitePrivateChat": {},
+ "importEmojis": "Zaimportuj Emoji",
+ "@importEmojis": {},
+ "noChatDescriptionYet": "Nie utworzono jeszcze opisu czatu.",
+ "@noChatDescriptionYet": {},
+ "notAnImage": "To nie jest plik obrazu.",
+ "@notAnImage": {},
+ "chatDescriptionHasBeenChanged": "Zmieniono opis czatu",
+ "@chatDescriptionHasBeenChanged": {},
+ "profileNotFound": "Nie można odnaleźć użytkownika na serwerze. Być może wystąpił problem z połączeniem lub użytkownik nie istnieje.",
+ "@profileNotFound": {},
+ "shareInviteLink": "Udostępnij link zaproszenia",
+ "@shareInviteLink": {},
+ "emoteKeyboardNoRecents": "Tutaj pojawiają się ostatnio używane emotikony...",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "Ustaw wygląd:",
+ "@setTheme": {},
+ "replace": "Zastąp",
+ "@replace": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "Spróbuj ponownie później lub wybierz inny serwer.",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "Utwórz grupę",
+ "@createGroup": {},
+ "importNow": "Zaimportuj",
+ "@importNow": {},
+ "invite": "Zaproszenie",
+ "@invite": {},
+ "continueWith": "Kontynuuj z:",
+ "@continueWith": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_pt.arb b/assets/l10n/intl_pt.arb
index 49312de13..0c90a1404 100644
--- a/assets/l10n/intl_pt.arb
+++ b/assets/l10n/intl_pt.arb
@@ -1,120 +1,2621 @@
{
- "@@last_modified": "2021-08-14 12:41:09.940318",
- "copiedToClipboard": "Copiada para a área de transferência",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Iniciar sessão",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "about": "Sobre",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Admin",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Tens a certeza?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Notificações",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "account": "Conta",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Cancelar",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Eliminar",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithYear": "{day}-{month}-{year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "help": "Ajuda",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Mensagens",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Razão",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Privacidade",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Abrir câmara",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "Configurações",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "logout": "Terminar sessão",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Pesquisar",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "users": "Utilizadores",
- "@users": {},
- "close": "Fechar",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "dateWithoutYear": "{day}-{month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
+ "@@last_modified": "2021-08-14 12:41:09.940318",
+ "copiedToClipboard": "Copiada para a área de transferência",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Iniciar sessão",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "about": "Sobre",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Admin",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Tens a certeza?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Notificações",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "account": "Conta",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Cancelar",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Eliminar",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
}
-}
\ No newline at end of file
+ },
+ "dateWithYear": "{day}-{month}-{year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "help": "Ajuda",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Mensagens",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Razão",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Privacidade",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Abrir câmara",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "Configurações",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logout": "Terminar sessão",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Pesquisar",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "users": "Utilizadores",
+ "@users": {},
+ "close": "Fechar",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateWithoutYear": "{day}-{month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "darkTheme": "",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "device": "",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "editDisplayname": "",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "banFromChat": "",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "askSSSSSign": "",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "changedTheChatDescriptionTo": "",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "countParticipants": "",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "areGuestsAllowedToJoin": "",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "answeredTheCall": "",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "couldNotDecryptMessage": "",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheGuestAccessRules": "",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "create": "",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "all": "",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "chatBackup": "",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "compareEmojiMatch": "",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomAliases": "",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "chatDetails": "",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatPermissions": "",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeWallpaper": "",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "acceptedTheInvitation": "",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "changedTheChatNameTo": "",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "chat": "",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheProfileAvatar": "",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "allChats": "",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "badServerVersionsException": "",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "",
+ "@addToSpace": {},
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "chooseAStrongPassword": "",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "activatedEndToEndEncryption": "",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "fluffychat": "",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "appLock": "",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "confirm": "",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "contactHasBeenInvitedToTheGroup": "",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "bannedUser": "",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "askVerificationRequest": "",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "changeTheHomeserver": "",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "changePassword": "",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "chooseAUsername": "",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "placeCall": "",
+ "@placeCall": {},
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ }
+}
diff --git a/assets/l10n/intl_pt_BR.arb b/assets/l10n/intl_pt_BR.arb
index af0dab535..4a4ce685b 100644
--- a/assets/l10n/intl_pt_BR.arb
+++ b/assets/l10n/intl_pt_BR.arb
@@ -2476,5 +2476,185 @@
"exportEmotePack": "Exportar pacote de Emotes como .zip",
"@exportEmotePack": {},
"replace": "Substituir",
- "@replace": {}
+ "@replace": {},
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "tryAgain": "",
+ "@tryAgain": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "letsStart": "",
+ "@letsStart": {},
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "report": "",
+ "@report": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "invite": "",
+ "@invite": {},
+ "continueWith": "",
+ "@continueWith": {}
}
diff --git a/assets/l10n/intl_pt_PT.arb b/assets/l10n/intl_pt_PT.arb
index cd99918f7..8ce67b83f 100644
--- a/assets/l10n/intl_pt_PT.arb
+++ b/assets/l10n/intl_pt_PT.arb
@@ -1,1688 +1,2647 @@
{
- "passwordsDoNotMatch": "As palavras-passe não correspondem!",
- "@passwordsDoNotMatch": {},
- "pleaseEnterValidEmail": "Por favor, insere um endereço de correio eletrónico válido.",
- "@pleaseEnterValidEmail": {},
- "repeatPassword": "Repete a palavra-passe",
- "@repeatPassword": {},
- "pleaseChooseAtLeastChars": "Por favor, usa no mínimo {min} caracteres.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "about": "Acerca de",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Aceitar",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} aceitou o convite",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "Conta",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "{username} ativou encriptação ponta-a-ponta",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addEmail": "Adicionar correio eletrónico",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "addGroupDescription": "Adicionar descrição de grupo",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "Adicionar ao espaço",
- "@addToSpace": {},
- "admin": "Admin",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "alcunha",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Todos(as)",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "allChats": "Todas as conversas",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} atendeu a chamada",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "Qualquer pessoa pode entrar",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Arquivo",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "Todos os visitantes podem entrar",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Tens a certeza?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSureYouWantToLogout": "Tens a certeza que queres sair?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "Para poderes assinar a outra pessoa, por favor, insere a tua senha de armazenamento seguro ou a chave de recuperação.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Aceitar este pedido de verificação de {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "autoplayImages": "Automaticamente reproduzir autocolantes e emotes animados",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "sendOnEnter": "Enviar com Enter",
- "@sendOnEnter": {},
- "badServerVersionsException": "O servidor suporta as versões Spec:\n{serverVersions}\nMas esta aplicação apenas suporta {suportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "badServerLoginTypesException": "O servidor suporta os tipos de início de sessão:\n{serverVersions}\nMas esta aplicação apenas suporta:\n{suportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "banFromChat": "Banir da conversa",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Banido(a)",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} baniu {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "Bloquear dispositivo",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "Bloqueado",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Mensagens de robôs",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Cancelar",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "Não é possível abrir o URI {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "changeDeviceName": "Alterar nome do dispositivo",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatPermissions": "{username} alterou as permissões da conversa",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} alterou o seu nome para: '{displayname}'",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} alterou as regras de acesso de visitantes para: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} alterou as regras de entrada",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username} alterou as regras de entrada para: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} alterou o seu avatar",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} alterou as alcunhas da sala",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} alterou a ligação de convite",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "Alterar palavra-passe",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Alterar o servidor",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Alterar o teu estilo",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Alterar o nome do grupo",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Alterar o fundo",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "Alterar o teu avatar",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "A encriptação foi corrompida",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Conversa",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "yourChatBackupHasBeenSetUp": "A cópia de segurança foi configurada.",
- "@yourChatBackupHasBeenSetUp": {},
- "chatBackup": "Cópia de segurança de conversas",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "A tuas mensagens antigas estão protegidas com uma chave de recuperação. Por favor, certifica-te que não a perdes.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Detalhes de conversa",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chatHasBeenAddedToThisSpace": "A conversa foi adicionada a este espaço",
- "@chatHasBeenAddedToThisSpace": {},
- "chats": "Conversas",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Escolhe uma palavra-passe forte",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Escolhe um nome de utilizador",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "clearArchive": "Limpar arquivo",
- "@clearArchive": {},
- "close": "Fechar",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_ban": "Banir o utilizador dado desta sala",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_html": "Enviar texto formatado com HTML",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_invite": "Convidar o utilizador dado a esta sala",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "commandHint_join": "Entrar na sala dada",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_kick": "Remover o utilizador dado desta sala",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_leave": "Sair desta sala",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_me": "Descreve-te",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "commandHint_myroomavatar": "Definir a tua imagem para esta sala (por mxc-uri)",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_myroomnick": "Definir o teu nome para esta sala",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "commandHint_op": "Definir o nível de poder do utilizador dado (por omissão: 50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_plain": "Enviar texto não formatado",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_react": "Enviar respostas como reações",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "commandHint_send": "Enviar texto",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "commandHint_unban": "Perdoar o utilizador dado",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "commandInvalid": "Comando inválido",
- "@commandInvalid": {
- "type": "text"
- },
- "commandMissing": "{command} não é um comando.",
- "@commandMissing": {
- "type": "text",
- "placeholders": {
- "command": {}
- },
- "description": "State that {command} is not a valid /command."
- },
- "compareEmojiMatch": "Compara e certifica-te que os emojis que se seguem correspondem aos do outro dispositivo:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Compara e certifica-te que os números que se seguem correspondem aos do outro dispositivo:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "Configurar conversa",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Confirmar",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Ligar",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "O contacto foi convidado para o grupo",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Contém nome de exibição",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Contém nome de utilizador",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "O conteúdo foi denunciado aos admins do servidor",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "Copiado para a área de transferência",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Copiar",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Copiar para a área de transferência",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "Não foi possível desencriptar mensagem: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "{count} participantes",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "Criar",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "{username} criou a conversa",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "createNewGroup": "Criar novo grupo",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "createNewSpace": "Novo espaço",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Ativo(a) agora",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Escuro",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date} às {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{day}-{month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateWithYear": "{day}-{month}-{year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "deactivateAccountWarning": "Isto irá desativar a tua conta. Não é reversível! Tens a certeza?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "Nível de permissão normal",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Eliminar",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Eliminar conta",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Eliminar mensagem",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Recusar",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Dispositivo",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "ID de dispositivo",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Dispositivos",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Conversas diretas",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "Nome de exibição alterado",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Descarregar ficheiro",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Editar",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "Editar servidores bloqueados",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "Editar permissões de conversa",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Editar nome de exibição",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAliases": "Editar alcunhas da sala",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "Editar avatar da sala",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "Emote já existente!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "Código de emote inválido!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "Pacotes de emotes da sala",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Configurações de emotes",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "Código do emote",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "Precisas de escolher um código de emote e uma imagem!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "Conversa vazia",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "Ativar pacote de emotes globalmente",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Ativar encriptação",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "Nunca mais poderás desativar a encriptação. Tens a certeza?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Encriptada",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "Encriptação",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "A encriptação não está ativada",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} terminou a chamada",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "enterAGroupName": "Insere o nome do grupo",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "Insere um endereço de correio eletrónico",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterASpacepName": "Insere o nome do espaço",
- "@enterASpacepName": {},
- "homeserver": "Servidor",
- "@homeserver": {},
- "enterYourHomeserver": "Insere o teu servidor",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "errorObtainingLocation": "Erro ao obter localização: {error}",
- "@errorObtainingLocation": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "everythingReady": "Tudo a postos!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Extremamente ofensivo",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Nome do ficheiro",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "Tamanho da letra",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "Reencaminhar",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "goToTheNewRoom": "Ir para a nova sala",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "group": "Grupo",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Descrição do grupo",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "Descrição do grupo alterada",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "O grupo é público",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "Grupos",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "Grupo com {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "guestsAreForbidden": "São proibidos visitantes",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "Podem entrar visitantes",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "{username} revogou o convite para {targetName}",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "help": "Ajuda",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "Esconder eventos eliminados",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Esconder eventos desconhecidos",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "Quão ofensivo é este conteúdo?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ID",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Identidade",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Ignorar",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Utilizadores ignorados",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "Podes ignorar utilizadores que te incomodem. Não irás poder receber quaisquer mensagens ou convites para salas de utilizadores na tua lista pessoal de ignorados.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Nome do utilizador a ignorar",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "Eu cliquei na ligação",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "Senha ou chave de recuperação incorretos",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "Inofensivo",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Convidar contacto",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "Convidar contacto para {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "invited": "Convidado(a)",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "{username} convidou {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invitedUsersOnly": "Utilizadores(as) convidados(as) apenas",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "Convite para mim",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username} convidou-te para o FluffyChat.\n1. Instala o FluffyChat: https://fluffychat.im\n2. Regista-te ou inicia sessão.\n3. Abre a ligação de convite: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "isTyping": "está a escrever…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "{username} entrou na conversa",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "joinRoom": "Entrar na sala",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "{username} expulsou {targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "{username} expulsou e baniu {targetName}",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickFromChat": "Expulsar da conversa",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "Ativo(a) pela última vez: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "lastSeenLongTimeAgo": "Visto(a) há muito tempo",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Sair",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "Saiu da conversa",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Licença",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "Claro",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "Carregar mais {count} participantes",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "loadingPleaseWait": "A carregar... Por favor aguarde.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Carregar mais…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "locationDisabledNotice": "Os serviços de localização estão desativados. Por favor, ativa-os para poder partilhar a sua localização.",
- "@locationDisabledNotice": {
- "type": "text",
- "placeholders": {}
- },
- "locationPermissionDeniedNotice": "Permissão de localização recusada. Por favor, concede permissão para poderes partilhar a tua posição.",
- "@locationPermissionDeniedNotice": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Entrar",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "logInTo": "Entrar em {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "loginWithOneClick": "Entrar com um clique",
- "@loginWithOneClick": {},
- "logout": "Sair",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "Certifica-te que o identificador é válido",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Alterações de membros",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "Mencionar",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Mensagens",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "A mensagem será eliminada para todos os participantes",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Moderador",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Silenciar conversa",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "Por favor,",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Nova conversa",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "Nova mensagem no FluffyChat",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Novo pedido de verificação!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Próximo",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "Não",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "Nenhuma ligação ao servidor",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "Nenhuns emotes encontrados. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "Só podes ativar a encriptação quando a sala não for publicamente acessível.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "Parece que não tens nenhuns serviços da Google no seu telemóvel. É uma boa decisão para a sua privacidade! Para receber notificações instantâneas no FluffyChat, recomendamos que uses https://microg.org/ ou https://unifiedpush.org/.",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "noMatrixServer": "{server1} não é um servidor Matrix, usar {server2}?",
- "@noMatrixServer": {
- "type": "text",
- "placeholders": {
- "server1": {},
- "server2": {}
- }
- },
- "shareYourInviteLink": "Partilhar a ligação de convite",
- "@shareYourInviteLink": {},
- "none": "Nenhum",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "{username} alterou o avatar da conversa",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} alterou a visibilidade do histórico para: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} alterou a descrição da conversa para: '{description}'",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatNameTo": "{username} alterou o nome da conversa para: '{chatname}'",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheGuestAccessRules": "{username} alterou as regras de acesso de visitantes",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibility": "{username} alterou a visibilidade do histórico",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sendAMessage": "Enviar a mensagem",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "Enviar áudio",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendAsText": "Enviar como texto",
- "@sendAsText": {
- "type": "text"
- },
- "send": "Enviar",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "Bloqueio da aplicação",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "Ainda não adicionaste uma forma de recuperar a tua palavra-passe.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Sem permissão",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "Não foram encontradas nenhumas salas…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Notificações",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "Notificações ativadas para esta conta",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "Estão {count} utilizadores(as) a escrever…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "obtainingLocation": "A obter localização…",
- "@obtainingLocation": {
- "type": "text",
- "placeholders": {}
- },
- "offensive": "Offensivo",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "Offline",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "ok",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "online": "Online",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "A cópia de segurança online de chaves está ativada",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "oopsPushError": "Ups! Infelizmente, ocorreu um erro ao configurar as notificações instantâneas.",
- "@oopsPushError": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "Ups, algo correu mal…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "Abrir aplicação para ler mensagens",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Abrir câmara",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "oneClientLoggedOut": "Um dos teus clientes terminou sessão",
- "@oneClientLoggedOut": {},
- "addAccount": "Adicionar conta",
- "@addAccount": {},
- "editBundlesForAccount": "Editar pacotes para esta conta",
- "@editBundlesForAccount": {},
- "addToBundle": "Adicionar ao pacote",
- "@addToBundle": {},
- "removeFromBundle": "Remover deste pacote",
- "@removeFromBundle": {},
- "bundleName": "Nome do pacote",
- "@bundleName": {},
- "enableMultiAccounts": "(BETA) Ativar múltiplas contas neste dispositivo",
- "@enableMultiAccounts": {},
- "openInMaps": "Abrir nos mapas",
- "@openInMaps": {
- "type": "text",
- "placeholders": {}
- },
- "link": "Ligação",
- "@link": {},
- "serverRequiresEmail": "Este servidor precisa de validar o teu endereço de correio eletrónico para o registo.",
- "@serverRequiresEmail": {},
- "optionalGroupName": "(Opcional) Nome do grupo",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "or": "Ou",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "participant": "Participante",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "senha ou chave de recuperação",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Palavra-passe",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Palavra-passe esquecida",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "A palavra-passe foi alterada",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "Recuperação de palavra-passe",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "people": "Pessoas",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "Escolher uma imagem",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Afixar",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "play": "Reproduzir {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseChoose": "Por favor, escolhe",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAPasscode": "Por favor, escolhe um código-passe",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "Por favor, escolhe um nome de utilizador",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "Por favor, clica na ligação no correio eletrónico e depois continua.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "Por favor, insere 4 dígitos ou deixa vazio para desativar o bloqueio da aplicação.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Por favor, insere um ID Matrix.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "Por favor, insere a tua palavra-passe",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPin": "Por favor, insere o teu código",
- "@pleaseEnterYourPin": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "Por favor, insere o teu nome de utilizador",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "Por favor, segue as instruções no website e clica em \"Seguinte\".",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Privacidade",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "Salas públicas",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Razão",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "redactedAnEvent": "{username} eliminou um evento",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "recording": "A gravar",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "redactMessage": "Eliminar mensagem",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "register": "Registar",
- "@register": {
- "type": "text",
- "placeholders": {}
- },
- "reject": "Rejeitar",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "{username} rejeitou o convite",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "rejoin": "Reentrar",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Remover",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "removeAllOtherDevices": "Remover todos os outros dispositivos",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "Removido por {username}",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeDevice": "Remover dispositivo",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "Perdoar nesta conversa",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "removeYourAvatar": "Remover o teu avatar",
- "@removeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "Exibir conteúdo de mensagem rico",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "replaceRoomWithNewerVersion": "Substituir sala com versão mais recente",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Responder",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "Reportar mensagem",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Pedir permissão",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "A sala foi atualizada",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "Versão da sala",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "saveFile": "Guardar ficheiro",
- "@saveFile": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Procurar",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "security": "Segurança",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "Visto por {username}",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "seenByUserAndUser": "Visto por {username} e por {username2}",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "sendFile": "Enviar ficheiro",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Enviar imagem",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "Enviar mensagens",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Enviar original",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendSticker": "Enviar autocolante",
- "@sendSticker": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Enviar vídeo",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sentAFile": "{username} enviar um ficheiro",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "{username} enviar um áudio",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "{username} enviar uma imagem",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "{username} enviou um autocolante",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAVideo": "{username} enviou um vídeo",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "updateAvailable": "Atualização do FluffyChat disponível",
- "@updateAvailable": {},
- "updateNow": "Iniciar atualização me segundo plano",
- "@updateNow": {},
- "commandHint_clearcache": "Limpar cache",
- "@commandHint_clearcache": {
- "type": "text",
- "description": "Usage hint for the command /clearcache"
- },
- "commandHint_create": "Criar uma conversa de grupo vazia\nUsa --no-encryption para desativar a encriptação",
- "@commandHint_create": {
- "type": "text",
- "description": "Usage hint for the command /create"
- },
- "commandHint_discardsession": "Descartar sessão",
- "@commandHint_discardsession": {
- "type": "text",
- "description": "Usage hint for the command /discardsession"
- },
- "commandHint_dm": "Iniciar uma conversa direta\nUsa --no-encryption para desativar a encriptação",
- "@commandHint_dm": {
- "type": "text",
- "description": "Usage hint for the command /dm"
- },
- "dehydrate": "Exportar sessão e limpar dispositivo",
- "@dehydrate": {},
- "dehydrateWarning": "Esta ação não pode ser revertida. Assegura-te que guardas bem a cópia de segurança.",
- "@dehydrateWarning": {},
- "hydrateTorLong": "Exportaste a tua sessão na última vez que estiveste no TOR? Importa-a rapidamente e continua a conversar.",
- "@hydrateTorLong": {},
- "dehydrateTor": "Utilizadores do TOR: Exportar sessão",
- "@dehydrateTor": {},
- "hydrate": "Restaurar a partir de cópia de segurança",
- "@hydrate": {},
- "bubbleSize": "Tamanho da bolha",
- "@bubbleSize": {
- "type": "text",
- "placeholders": {}
- },
- "hydrateTor": "Utilizadores do TOR: Importar sessão",
- "@hydrateTor": {},
- "dehydrateTorLong": "Para utilizadores do TOR, é recomendado exportar a sessão antes de fechar a janela.",
- "@dehydrateTorLong": {}
-}
\ No newline at end of file
+ "passwordsDoNotMatch": "As palavras-passe não correspondem!",
+ "@passwordsDoNotMatch": {},
+ "pleaseEnterValidEmail": "Por favor, insere um endereço de correio eletrónico válido.",
+ "@pleaseEnterValidEmail": {},
+ "repeatPassword": "Repete a palavra-passe",
+ "@repeatPassword": {},
+ "pleaseChooseAtLeastChars": "Por favor, usa no mínimo {min} caracteres.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "about": "Acerca de",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Aceitar",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} aceitou o convite",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "account": "Conta",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "{username} ativou encriptação ponta-a-ponta",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addEmail": "Adicionar correio eletrónico",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addGroupDescription": "Adicionar descrição de grupo",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "Adicionar ao espaço",
+ "@addToSpace": {},
+ "admin": "Admin",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "alcunha",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Todos(as)",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "Todas as conversas",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} atendeu a chamada",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "Qualquer pessoa pode entrar",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Arquivo",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "Todos os visitantes podem entrar",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Tens a certeza?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSureYouWantToLogout": "Tens a certeza que queres sair?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "Para poderes assinar a outra pessoa, por favor, insere a tua senha de armazenamento seguro ou a chave de recuperação.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Aceitar este pedido de verificação de {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "Automaticamente reproduzir autocolantes e emotes animados",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "sendOnEnter": "Enviar com Enter",
+ "@sendOnEnter": {},
+ "badServerVersionsException": "O servidor suporta as versões Spec:\n{serverVersions}\nMas esta aplicação apenas suporta {suportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "badServerLoginTypesException": "O servidor suporta os tipos de início de sessão:\n{serverVersions}\nMas esta aplicação apenas suporta:\n{suportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "banFromChat": "Banir da conversa",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Banido(a)",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} baniu {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "Bloquear dispositivo",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "Bloqueado",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Mensagens de robôs",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Cancelar",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "Não é possível abrir o URI {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "changeDeviceName": "Alterar nome do dispositivo",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatPermissions": "{username} alterou as permissões da conversa",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} alterou o seu nome para: '{displayname}'",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} alterou as regras de acesso de visitantes para: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} alterou as regras de entrada",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} alterou as regras de entrada para: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} alterou o seu avatar",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} alterou as alcunhas da sala",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} alterou a ligação de convite",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "Alterar palavra-passe",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Alterar o servidor",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Alterar o teu estilo",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Alterar o nome do grupo",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Alterar o fundo",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "Alterar o teu avatar",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "A encriptação foi corrompida",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Conversa",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourChatBackupHasBeenSetUp": "A cópia de segurança foi configurada.",
+ "@yourChatBackupHasBeenSetUp": {},
+ "chatBackup": "Cópia de segurança de conversas",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "A tuas mensagens antigas estão protegidas com uma chave de recuperação. Por favor, certifica-te que não a perdes.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Detalhes de conversa",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "A conversa foi adicionada a este espaço",
+ "@chatHasBeenAddedToThisSpace": {},
+ "chats": "Conversas",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Escolhe uma palavra-passe forte",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Escolhe um nome de utilizador",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "clearArchive": "Limpar arquivo",
+ "@clearArchive": {},
+ "close": "Fechar",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "Banir o utilizador dado desta sala",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_html": "Enviar texto formatado com HTML",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_invite": "Convidar o utilizador dado a esta sala",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "commandHint_join": "Entrar na sala dada",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_kick": "Remover o utilizador dado desta sala",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_leave": "Sair desta sala",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_me": "Descreve-te",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "commandHint_myroomavatar": "Definir a tua imagem para esta sala (por mxc-uri)",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_myroomnick": "Definir o teu nome para esta sala",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "commandHint_op": "Definir o nível de poder do utilizador dado (por omissão: 50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_plain": "Enviar texto não formatado",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_react": "Enviar respostas como reações",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_send": "Enviar texto",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "commandHint_unban": "Perdoar o utilizador dado",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "commandInvalid": "Comando inválido",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "commandMissing": "{command} não é um comando.",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "compareEmojiMatch": "Compara e certifica-te que os emojis que se seguem correspondem aos do outro dispositivo:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Compara e certifica-te que os números que se seguem correspondem aos do outro dispositivo:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "Configurar conversa",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Confirmar",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Ligar",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "O contacto foi convidado para o grupo",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Contém nome de exibição",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Contém nome de utilizador",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "O conteúdo foi denunciado aos admins do servidor",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Copiado para a área de transferência",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Copiar",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Copiar para a área de transferência",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "Não foi possível desencriptar mensagem: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "{count} participantes",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "Criar",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "{username} criou a conversa",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "createNewGroup": "Criar novo grupo",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "Novo espaço",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Ativo(a) agora",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Escuro",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date} às {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{day}-{month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithYear": "{day}-{month}-{year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "deactivateAccountWarning": "Isto irá desativar a tua conta. Não é reversível! Tens a certeza?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "Nível de permissão normal",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Eliminar",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Eliminar conta",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Eliminar mensagem",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Recusar",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Dispositivo",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "ID de dispositivo",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Dispositivos",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Conversas diretas",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "Nome de exibição alterado",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Descarregar ficheiro",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Editar",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "Editar servidores bloqueados",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "Editar permissões de conversa",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Editar nome de exibição",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "Editar alcunhas da sala",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "Editar avatar da sala",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "Emote já existente!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "Código de emote inválido!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "Pacotes de emotes da sala",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Configurações de emotes",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "Código do emote",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "Precisas de escolher um código de emote e uma imagem!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "Conversa vazia",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "Ativar pacote de emotes globalmente",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Ativar encriptação",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "Nunca mais poderás desativar a encriptação. Tens a certeza?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Encriptada",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "Encriptação",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "A encriptação não está ativada",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} terminou a chamada",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "enterAGroupName": "Insere o nome do grupo",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "Insere um endereço de correio eletrónico",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterASpacepName": "Insere o nome do espaço",
+ "@enterASpacepName": {},
+ "homeserver": "Servidor",
+ "@homeserver": {},
+ "enterYourHomeserver": "Insere o teu servidor",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorObtainingLocation": "Erro ao obter localização: {error}",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "everythingReady": "Tudo a postos!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Extremamente ofensivo",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Nome do ficheiro",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "Tamanho da letra",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "Reencaminhar",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "Ir para a nova sala",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "Grupo",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Descrição do grupo",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "Descrição do grupo alterada",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "O grupo é público",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "Grupos",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "Grupo com {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "guestsAreForbidden": "São proibidos visitantes",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "Podem entrar visitantes",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "{username} revogou o convite para {targetName}",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "help": "Ajuda",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "Esconder eventos eliminados",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Esconder eventos desconhecidos",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "Quão ofensivo é este conteúdo?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ID",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Identidade",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Ignorar",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Utilizadores ignorados",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "Podes ignorar utilizadores que te incomodem. Não irás poder receber quaisquer mensagens ou convites para salas de utilizadores na tua lista pessoal de ignorados.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Nome do utilizador a ignorar",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "Eu cliquei na ligação",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "Senha ou chave de recuperação incorretos",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "Inofensivo",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Convidar contacto",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "Convidar contacto para {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "invited": "Convidado(a)",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "{username} convidou {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invitedUsersOnly": "Utilizadores(as) convidados(as) apenas",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "Convite para mim",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username} convidou-te para o FluffyChat.\n1. Instala o FluffyChat: https://fluffychat.im\n2. Regista-te ou inicia sessão.\n3. Abre a ligação de convite: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "isTyping": "está a escrever…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "{username} entrou na conversa",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "joinRoom": "Entrar na sala",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "{username} expulsou {targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "{username} expulsou e baniu {targetName}",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "Expulsar da conversa",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "Ativo(a) pela última vez: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "Visto(a) há muito tempo",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Sair",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "Saiu da conversa",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Licença",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "Claro",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "Carregar mais {count} participantes",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "loadingPleaseWait": "A carregar... Por favor aguarde.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Carregar mais…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "Os serviços de localização estão desativados. Por favor, ativa-os para poder partilhar a sua localização.",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationPermissionDeniedNotice": "Permissão de localização recusada. Por favor, concede permissão para poderes partilhar a tua posição.",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Entrar",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "Entrar em {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "loginWithOneClick": "Entrar com um clique",
+ "@loginWithOneClick": {},
+ "logout": "Sair",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "Certifica-te que o identificador é válido",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Alterações de membros",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "Mencionar",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Mensagens",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "A mensagem será eliminada para todos os participantes",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Moderador",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Silenciar conversa",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "Por favor,",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Nova conversa",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "Nova mensagem no FluffyChat",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Novo pedido de verificação!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Próximo",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "Não",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "Nenhuma ligação ao servidor",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "Nenhuns emotes encontrados. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "Só podes ativar a encriptação quando a sala não for publicamente acessível.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "Parece que não tens nenhuns serviços da Google no seu telemóvel. É uma boa decisão para a sua privacidade! Para receber notificações instantâneas no FluffyChat, recomendamos que uses https://microg.org/ ou https://unifiedpush.org/.",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "{server1} não é um servidor Matrix, usar {server2}?",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "shareYourInviteLink": "Partilhar a ligação de convite",
+ "@shareYourInviteLink": {},
+ "none": "Nenhum",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "{username} alterou o avatar da conversa",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} alterou a visibilidade do histórico para: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} alterou a descrição da conversa para: '{description}'",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} alterou o nome da conversa para: '{chatname}'",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} alterou as regras de acesso de visitantes",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username} alterou a visibilidade do histórico",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sendAMessage": "Enviar a mensagem",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "Enviar áudio",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "Enviar como texto",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "send": "Enviar",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "Bloqueio da aplicação",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "Ainda não adicionaste uma forma de recuperar a tua palavra-passe.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Sem permissão",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "Não foram encontradas nenhumas salas…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Notificações",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "Notificações ativadas para esta conta",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "Estão {count} utilizadores(as) a escrever…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "obtainingLocation": "A obter localização…",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "Offensivo",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "Offline",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "ok",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "Online",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "A cópia de segurança online de chaves está ativada",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "Ups! Infelizmente, ocorreu um erro ao configurar as notificações instantâneas.",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "Ups, algo correu mal…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "Abrir aplicação para ler mensagens",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Abrir câmara",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oneClientLoggedOut": "Um dos teus clientes terminou sessão",
+ "@oneClientLoggedOut": {},
+ "addAccount": "Adicionar conta",
+ "@addAccount": {},
+ "editBundlesForAccount": "Editar pacotes para esta conta",
+ "@editBundlesForAccount": {},
+ "addToBundle": "Adicionar ao pacote",
+ "@addToBundle": {},
+ "removeFromBundle": "Remover deste pacote",
+ "@removeFromBundle": {},
+ "bundleName": "Nome do pacote",
+ "@bundleName": {},
+ "enableMultiAccounts": "(BETA) Ativar múltiplas contas neste dispositivo",
+ "@enableMultiAccounts": {},
+ "openInMaps": "Abrir nos mapas",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "Ligação",
+ "@link": {},
+ "serverRequiresEmail": "Este servidor precisa de validar o teu endereço de correio eletrónico para o registo.",
+ "@serverRequiresEmail": {},
+ "optionalGroupName": "(Opcional) Nome do grupo",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "Ou",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "participant": "Participante",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "senha ou chave de recuperação",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Palavra-passe",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Palavra-passe esquecida",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "A palavra-passe foi alterada",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "Recuperação de palavra-passe",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "Pessoas",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "Escolher uma imagem",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Afixar",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "Reproduzir {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseChoose": "Por favor, escolhe",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "Por favor, escolhe um código-passe",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "Por favor, escolhe um nome de utilizador",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "Por favor, clica na ligação no correio eletrónico e depois continua.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "Por favor, insere 4 dígitos ou deixa vazio para desativar o bloqueio da aplicação.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Por favor, insere um ID Matrix.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "Por favor, insere a tua palavra-passe",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "Por favor, insere o teu código",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "Por favor, insere o teu nome de utilizador",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "Por favor, segue as instruções no website e clica em \"Seguinte\".",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Privacidade",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Salas públicas",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Razão",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "{username} eliminou um evento",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "recording": "A gravar",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactMessage": "Eliminar mensagem",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "Registar",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reject": "Rejeitar",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "{username} rejeitou o convite",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "rejoin": "Reentrar",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Remover",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "Remover todos os outros dispositivos",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "Removido por {username}",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeDevice": "Remover dispositivo",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "Perdoar nesta conversa",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "Remover o teu avatar",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "Exibir conteúdo de mensagem rico",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replaceRoomWithNewerVersion": "Substituir sala com versão mais recente",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Responder",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "Reportar mensagem",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Pedir permissão",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "A sala foi atualizada",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "Versão da sala",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "Guardar ficheiro",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Procurar",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "Segurança",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "Visto por {username}",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "seenByUserAndUser": "Visto por {username} e por {username2}",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "sendFile": "Enviar ficheiro",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Enviar imagem",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "Enviar mensagens",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Enviar original",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendSticker": "Enviar autocolante",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Enviar vídeo",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "{username} enviar um ficheiro",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "{username} enviar um áudio",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "{username} enviar uma imagem",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "{username} enviou um autocolante",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "{username} enviou um vídeo",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "updateAvailable": "Atualização do FluffyChat disponível",
+ "@updateAvailable": {},
+ "updateNow": "Iniciar atualização me segundo plano",
+ "@updateNow": {},
+ "commandHint_clearcache": "Limpar cache",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "commandHint_create": "Criar uma conversa de grupo vazia\nUsa --no-encryption para desativar a encriptação",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "commandHint_discardsession": "Descartar sessão",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "commandHint_dm": "Iniciar uma conversa direta\nUsa --no-encryption para desativar a encriptação",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "dehydrate": "Exportar sessão e limpar dispositivo",
+ "@dehydrate": {},
+ "dehydrateWarning": "Esta ação não pode ser revertida. Assegura-te que guardas bem a cópia de segurança.",
+ "@dehydrateWarning": {},
+ "hydrateTorLong": "Exportaste a tua sessão na última vez que estiveste no TOR? Importa-a rapidamente e continua a conversar.",
+ "@hydrateTorLong": {},
+ "dehydrateTor": "Utilizadores do TOR: Exportar sessão",
+ "@dehydrateTor": {},
+ "hydrate": "Restaurar a partir de cópia de segurança",
+ "@hydrate": {},
+ "bubbleSize": "Tamanho da bolha",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTor": "Utilizadores do TOR: Importar sessão",
+ "@hydrateTor": {},
+ "dehydrateTorLong": "Para utilizadores do TOR, é recomendado exportar a sessão antes de fechar a janela.",
+ "@dehydrateTorLong": {},
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "reportUser": "",
+ "@reportUser": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "unverified": "",
+ "@unverified": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/l10n/intl_ro.arb b/assets/l10n/intl_ro.arb
index 2563901a2..b5a105da4 100644
--- a/assets/l10n/intl_ro.arb
+++ b/assets/l10n/intl_ro.arb
@@ -2502,5 +2502,152 @@
"pleaseTryAgainLaterOrChooseDifferentServer": "Vă rugăm să încercați din nou mai târziu sau să alegeți un server diferit.",
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
"signInWithPassword": "Conectați-vă cu parolă",
- "@signInWithPassword": {}
+ "@signInWithPassword": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "tryAgain": "",
+ "@tryAgain": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "importEmojis": "",
+ "@importEmojis": {},
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "replace": "",
+ "@replace": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "invite": "",
+ "@invite": {}
}
diff --git a/assets/l10n/intl_ru.arb b/assets/l10n/intl_ru.arb
index 927d4eb61..56d5a2ce7 100644
--- a/assets/l10n/intl_ru.arb
+++ b/assets/l10n/intl_ru.arb
@@ -2617,5 +2617,45 @@
"@emoteKeyboardNoRecents": {
"type": "text",
"placeholders": {}
- }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_sk.arb b/assets/l10n/intl_sk.arb
index 5fd3ed698..5113b7743 100644
--- a/assets/l10n/intl_sk.arb
+++ b/assets/l10n/intl_sk.arb
@@ -1419,5 +1419,1229 @@
"updateNow": "Začať aktualizáciu na pozadí",
"@updateNow": {},
"importNow": "Importovať teraz",
- "@importNow": {}
+ "@importNow": {},
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "blocked": "",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "emojis": "",
+ "@emojis": {},
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "placeCall": "",
+ "@placeCall": {},
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ }
}
diff --git a/assets/l10n/intl_sl.arb b/assets/l10n/intl_sl.arb
index d450ec2e2..f2c32d758 100644
--- a/assets/l10n/intl_sl.arb
+++ b/assets/l10n/intl_sl.arb
@@ -1,606 +1,2630 @@
{
- "passwordsDoNotMatch": "Geslo se ne ujema!",
- "@passwordsDoNotMatch": {},
- "pleaseEnterValidEmail": "Vnesite veljaven elektronski naslov.",
- "@pleaseEnterValidEmail": {},
- "repeatPassword": "Ponovite geslo",
- "@repeatPassword": {},
- "about": "O aplikaciji",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Sprejmi",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "account": "Račun",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "Uporabnik {username} je aktiviral šifriranje od konca do konca",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addEmail": "Dodajte e-pošto",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "addGroupDescription": "Dodajte opis skupine",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "Dodajte v prostor",
- "@addToSpace": {},
- "alias": "vzdevek",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Vse",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "allChats": "Vsi klepeti",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "Oseba {senderName} je odgovorila na klic",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "Pridruži se lahko vsak",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "Zaklepanje aplikacije",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "Če želite podpisati drugo osebo, vnesite geslo za varno trgovino ali obnovitveni ključ.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Ali želite sprejeti to zahtevo za preverjanje od {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "autoplayImages": "Samodejno predvajajte animirane nalepke in čustva",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "badServerLoginTypesException": "Domači strežnik podpira vrste prijave:\n{serverVersions}\nToda ta aplikacija podpira samo:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "sendOnEnter": "Pošlji ob vstopu",
- "@sendOnEnter": {},
- "banFromChat": "Prepoved klepeta",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Prepovedano",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} je prepovedan v {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "Blokirana naprava",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "Blokirano",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Botova sporočila",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Prekliči",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "URI-ja {uri} ni mogoče odpreti",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "changedTheChatAvatar": "{username} je spremenil avatar za klepet",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatPermissions": "{username} je spremenila dovoljenja za klepet",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} je spremenil svoje prikazno ime v: '{displayname}'",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRules": "{username} je spremenila pravila dostopa za goste",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} je spremenila pravila dostopa za goste v: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} je spremenil vidnost zgodovine v: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} je spremenil pravila za pridružitev",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username} je spremenila pravila pridružitve v: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} je spremenil avatar",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} je spremenil vzdevke sobe",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} je spremenil povezavo za povabilo",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "Spremeni geslo",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Spremenite domači strežnik",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Spremenite svoj slog",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Spremenite ime skupine",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "Spremenite svoj avatar",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Klepet",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "yourChatBackupHasBeenSetUp": "Varnostna kopija klepeta je nastavljena.",
- "@yourChatBackupHasBeenSetUp": {},
- "chatBackup": "Varnostno kopiranje klepeta",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Podrobnosti klepeta",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chatHasBeenAddedToThisSpace": "Klepet je bil dodan v ta prostor",
- "@chatHasBeenAddedToThisSpace": {},
- "chats": "Klepeti",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Izberite močno geslo",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Izberi uporabniško ime",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "clearArchive": "Počisti arhiv",
- "@clearArchive": {},
- "close": "Zapri",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_ban": "Izključi določenega uporabnika iz te sobe",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_html": "Pošljite besedilo v obliki HTML",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_invite": "Povabi danega uporabnika v to sobo",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "commandHint_join": "Pridružite se dani sobi",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_kick": "Odstranite danega uporabnika iz te sobe",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_me": "Opisi sebe",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "commandHint_myroomavatar": "Nastavite svojo sliko za to sobo",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_op": "Nastavite raven moči danega uporabnika (privzeto: 50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_react": "Pošljite odgovor kot reakcijo",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "commandHint_send": "Pošlji besedilo",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "commandHint_unban": "Prekliči izključitev določenega uporabnika iz te sobe",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "commandInvalid": "Ukaz ni veljaven",
- "@commandInvalid": {
- "type": "text"
- },
- "commandMissing": "{command} is not a command.",
- "@commandMissing": {
- "type": "text",
- "placeholders": {
- "command": {}
- },
- "description": "State that {command} is not a valid /command."
- },
- "compareEmojiMatch": "Primerjajte in se prepričajte, da se naslednji emoji ujemajo s tistimi iz druge naprave:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Primerjajte in se prepričajte, da se naslednje številke ujemajo s številkami druge naprave:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "Konfigurirajte klepet",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Potrdi",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Vsebuje prikazno ime",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Vsebuje uporabniško ime",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAtLeastChars": "Izberite najmanj {min} znakov.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "archive": "Arhiv",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Ali si prepričan?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} je sprejel povabilo",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "areYouSureYouWantToLogout": "Ali ste prepričani, da se želite odjaviti?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatDescriptionTo": "{username} je spremenil opis klepeta v: '{description}'",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "areGuestsAllowedToJoin": "Ali se lahko gostujoči uporabniki pridružijo",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Admin",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "badServerVersionsException": "Domači strežnik podpira različice Spec:\n{serverVersions}\nToda ta aplikacija podpira samo {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "changedTheChatNameTo": "{username} je spremenil ime klepeta v: '{chatname}'",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changeDeviceName": "Spremenite ime naprave",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Spremeni ozadje",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheHistoryVisibility": "{username} je spremenila vidnost zgodovine",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "channelCorruptedDecryptError": "Šifriranje je poškodovano",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "Vsebina je bila prijavljena skrbnikom strežnika",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "Varnostna kopija klepeta je zavarovana z varnostnim ključem. Prosimo, pazite, da ga ne izgubite.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_myroomnick": "Nastavite prikazno ime za to sobo",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "connect": "Povežite se",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "Kontakt je bil povabljen v skupino",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_leave": "Zapusti to sobo",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_plain": "Pošlji neformatirano besedilo",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "copiedToClipboard": "Kopirano v odložišče",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Kopiraj",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Kopiraj v odložišče",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "Sporočila ni bilo mogoče dešifrirati: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "{count} udeležencev",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "Ustvari",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createNewGroup": "Ustvari novo skupino",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "createNewSpace": "Nov prostor",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Trenutno aktiven",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Temno",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "Privzeta raven dovoljenja",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "dateWithYear": "{day}-{month}-{year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "dateWithoutYear": "{month}-{day}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "createdTheChat": "{username} je ustvaril klepet",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "deactivateAccountWarning": "S tem boste deaktivirali vaš uporabniški račun. Tega ni mogoče razveljaviti! Ali si prepričan?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
+ "passwordsDoNotMatch": "Geslo se ne ujema!",
+ "@passwordsDoNotMatch": {},
+ "pleaseEnterValidEmail": "Vnesite veljaven elektronski naslov.",
+ "@pleaseEnterValidEmail": {},
+ "repeatPassword": "Ponovite geslo",
+ "@repeatPassword": {},
+ "about": "O aplikaciji",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Sprejmi",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "account": "Račun",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "Uporabnik {username} je aktiviral šifriranje od konca do konca",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
}
-}
\ No newline at end of file
+ },
+ "addEmail": "Dodajte e-pošto",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addGroupDescription": "Dodajte opis skupine",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "Dodajte v prostor",
+ "@addToSpace": {},
+ "alias": "vzdevek",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Vse",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "Vsi klepeti",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "Oseba {senderName} je odgovorila na klic",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "Pridruži se lahko vsak",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "Zaklepanje aplikacije",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "Če želite podpisati drugo osebo, vnesite geslo za varno trgovino ali obnovitveni ključ.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Ali želite sprejeti to zahtevo za preverjanje od {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "Samodejno predvajajte animirane nalepke in čustva",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "badServerLoginTypesException": "Domači strežnik podpira vrste prijave:\n{serverVersions}\nToda ta aplikacija podpira samo:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "sendOnEnter": "Pošlji ob vstopu",
+ "@sendOnEnter": {},
+ "banFromChat": "Prepoved klepeta",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Prepovedano",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} je prepovedan v {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "Blokirana naprava",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "Blokirano",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Botova sporočila",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Prekliči",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "URI-ja {uri} ni mogoče odpreti",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "changedTheChatAvatar": "{username} je spremenil avatar za klepet",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} je spremenila dovoljenja za klepet",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} je spremenil svoje prikazno ime v: '{displayname}'",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} je spremenila pravila dostopa za goste",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} je spremenila pravila dostopa za goste v: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} je spremenil vidnost zgodovine v: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} je spremenil pravila za pridružitev",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} je spremenila pravila pridružitve v: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} je spremenil avatar",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} je spremenil vzdevke sobe",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} je spremenil povezavo za povabilo",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "Spremeni geslo",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Spremenite domači strežnik",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Spremenite svoj slog",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Spremenite ime skupine",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "Spremenite svoj avatar",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Klepet",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourChatBackupHasBeenSetUp": "Varnostna kopija klepeta je nastavljena.",
+ "@yourChatBackupHasBeenSetUp": {},
+ "chatBackup": "Varnostno kopiranje klepeta",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Podrobnosti klepeta",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "Klepet je bil dodan v ta prostor",
+ "@chatHasBeenAddedToThisSpace": {},
+ "chats": "Klepeti",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Izberite močno geslo",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Izberi uporabniško ime",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "clearArchive": "Počisti arhiv",
+ "@clearArchive": {},
+ "close": "Zapri",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "Izključi določenega uporabnika iz te sobe",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_html": "Pošljite besedilo v obliki HTML",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_invite": "Povabi danega uporabnika v to sobo",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "commandHint_join": "Pridružite se dani sobi",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_kick": "Odstranite danega uporabnika iz te sobe",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_me": "Opisi sebe",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "commandHint_myroomavatar": "Nastavite svojo sliko za to sobo",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_op": "Nastavite raven moči danega uporabnika (privzeto: 50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_react": "Pošljite odgovor kot reakcijo",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_send": "Pošlji besedilo",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "commandHint_unban": "Prekliči izključitev določenega uporabnika iz te sobe",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "commandInvalid": "Ukaz ni veljaven",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "commandMissing": "{command} is not a command.",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "compareEmojiMatch": "Primerjajte in se prepričajte, da se naslednji emoji ujemajo s tistimi iz druge naprave:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Primerjajte in se prepričajte, da se naslednje številke ujemajo s številkami druge naprave:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "Konfigurirajte klepet",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Potrdi",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Vsebuje prikazno ime",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Vsebuje uporabniško ime",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAtLeastChars": "Izberite najmanj {min} znakov.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "archive": "Arhiv",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Ali si prepričan?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} je sprejel povabilo",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "Ali ste prepričani, da se želite odjaviti?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatDescriptionTo": "{username} je spremenil opis klepeta v: '{description}'",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "areGuestsAllowedToJoin": "Ali se lahko gostujoči uporabniki pridružijo",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Admin",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerVersionsException": "Domači strežnik podpira različice Spec:\n{serverVersions}\nToda ta aplikacija podpira samo {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} je spremenil ime klepeta v: '{chatname}'",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changeDeviceName": "Spremenite ime naprave",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Spremeni ozadje",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibility": "{username} je spremenila vidnost zgodovine",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "channelCorruptedDecryptError": "Šifriranje je poškodovano",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "Vsebina je bila prijavljena skrbnikom strežnika",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "Varnostna kopija klepeta je zavarovana z varnostnim ključem. Prosimo, pazite, da ga ne izgubite.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "Nastavite prikazno ime za to sobo",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "connect": "Povežite se",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "Kontakt je bil povabljen v skupino",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "Zapusti to sobo",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_plain": "Pošlji neformatirano besedilo",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "copiedToClipboard": "Kopirano v odložišče",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Kopiraj",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Kopiraj v odložišče",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "Sporočila ni bilo mogoče dešifrirati: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "{count} udeležencev",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "Ustvari",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewGroup": "Ustvari novo skupino",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "Nov prostor",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Trenutno aktiven",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Temno",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "Privzeta raven dovoljenja",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateWithYear": "{day}-{month}-{year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithoutYear": "{month}-{day}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "createdTheChat": "{username} je ustvaril klepet",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "deactivateAccountWarning": "S tem boste deaktivirali vaš uporabniški račun. Tega ni mogoče razveljaviti! Ali si prepričan?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "device": "",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "editDisplayname": "",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "help": "",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "delete": "",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "openCamera": "",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "fluffychat": "",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "logout": "",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "devices": "",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/l10n/intl_sr.arb b/assets/l10n/intl_sr.arb
index a2210c7f5..c9c26f937 100644
--- a/assets/l10n/intl_sr.arb
+++ b/assets/l10n/intl_sr.arb
@@ -1,1933 +1,2658 @@
{
- "@@last_modified": "2021-08-14 12:41:09.857024",
- "about": "О програму",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Прихвати",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} прихвата позивницу",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "Налог",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "{username} укључи шифровање с краја на крај",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addEmail": "Додај е-адресу",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "addGroupDescription": "Додај опис групе",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Админ",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "алијас",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Сви",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} одговори на позив",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "свако може да се придружи",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "Закључавање апликације",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Архива",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "Да ли је гостима дозвољен приступ",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Сигурни сте?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSureYouWantToLogout": "Заиста желите да се одјавите?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "Да бисте могли да пријавите другу особу, унесите своју безбедносну фразу или кључ опоравка.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Прихватате ли захтев за верификацију од корисника {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "badServerLoginTypesException": "Домаћи сервер подржава начине пријаве:\n{serverVersions}\nали ова апликација подржава само:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "badServerVersionsException": "Домаћи сервер подржава верзије:\n{serverVersions}\nали ова апликација подржава само {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "banFromChat": "Забрани у ћаскању",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Забрањен",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} забрани корисника {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "Блокирај уређај",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "Блокиран",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Поруке Бота",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Откажи",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "changeDeviceName": "Промени назив уређаја",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "{username} промени аватар ћаскања",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} промени опис ћаскања у: „{description}“",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatNameTo": "{username} промени назив ћаскања у: „{chatname}“",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatPermissions": "{username} измени дозволе ћаскања",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} промени приказно име на: „{displayname}“",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRules": "{username} измени правила за приступ гостију",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} измени правила за приступ гостију на: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibility": "{username} измени видљивост историје",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} измени видљивост историје на: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} измени правила приступања",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username} измени правила приступања на: {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} измени свој аватар",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} измени алијас собе",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} измени везу позивнице",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "Измени лозинку",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Промени домаћи сервер",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Измените изглед",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Измени назив групе",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Измени тапет",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "Измените свој аватар",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "Шифровање је покварено",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Ћаскање",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackup": "Копија ћаскања",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "Ваша резервна копија ћаскања је обезбеђена кључем. Немојте да га изгубите.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Детаљи ћаскања",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chats": "Ћаскања",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Изаберите јаку лозинку",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Изаберите корисничко име",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "clearArchive": "Очисти архиву",
- "@clearArchive": {},
- "close": "Затвори",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_ban": "Блокирај задатог корисника за ову собу",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_html": "Шаљи ХТМЛ обликован текст",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_invite": "Позови задатог корисника у собу",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "commandHint_join": "Придружи се наведеној соби",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_kick": "Уклони задатог корисника из собе",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_leave": "Напусти ову собу",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_me": "Опишите себе",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "commandHint_myroomnick": "Поставља ваш надимак за ову собу",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "commandHint_op": "Подеси ниво задатог корисника (подразумевано: 50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_plain": "Шаљи неформатиран текст",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_react": "Шаљи одговор као реакцију",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "commandHint_send": "Пошаљи текст",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "commandHint_unban": "Скини забрану задатом кориснику за ову собу",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "compareEmojiMatch": "Упоредите и проверите да су емоџији идентични као на другом уређају:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Упоредите и проверите да су следећи бројеви идентични као на другом уређају:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "Подешавање ћаскања",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Потврди",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Повежи се",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "Особа је позвана у групу",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Садржи приказно име",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Садржи корисничко име",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "Садржај је пријављен администраторима сервера",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "Копирано у клипборд",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Копирај",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Копирај у клипборд",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "Не могу да дешифрујем поруку: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "учесника: {count}",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "Направи",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "{username} направи ћаскање",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "createNewGroup": "Направи нову групу",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "Тренутно активно",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "тамни",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{day} {month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateWithYear": "{day} {month} {year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "deactivateAccountWarning": "Ово ће деактивирати ваш кориснички налог. Не може се повратити! Сигурни сте?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "Подразумевани ниво приступа",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Обриши",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Обриши налог",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Брисање поруке",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Одбиј",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Уређај",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "ИД уређаја",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Уређаји",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Директна ћаскања",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "Име за приказ је измењено",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Преузми фајл",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Уреди",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "Уреди блокиране сервере",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "Уредите дозволе ћаскања",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Уреди име за приказ",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAliases": "Уреди алијасе собе",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "Уређује аватар собе",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "Емоти већ постоји!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "Неисправна скраћеница за емоти!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "Пакети емотија за собу",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Поставке емотија",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "скраћеница",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "Морате да изаберете скраћеницу и слику за емоти!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "празно ћаскање",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "Глобално укључи пакет емотија",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Укључује шифровање",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "Шифровање више нећете моћи да искључите. Сигурни сте?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Шифровано",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "Шифровање",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "Шифровање није укључено",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} заврши позив",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "enterAGroupName": "унесите назив групе",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "Унесите адресу е-поште",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterYourHomeserver": "Унесите свој домаћи сервер",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "Све је спремно!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Екстремно увредљив",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Назив фајла",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "Величина фонта",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "Напред",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "од приступања",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "од позивања",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "goToTheNewRoom": "Иди у нову собу",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "group": "Група",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Опис групе",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "Опис групе измењен",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "Група је јавна",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "Групе",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "Група са корисником {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "guestsAreForbidden": "гости су забрањени",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "гости могу приступити",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "{username} поништи позивницу за корисника {targetName}",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "help": "Помоћ",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "Сакриј редиговане догађаје",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Сакриј непознате догађаје",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "Колико је увредљив овај садржај?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ИД",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Идентитет",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Игнориши",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Игнорисани корисници",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "Можете игнорисати кориснике који вас нервирају. Нећете примати никакве поруке нити позивнице од корисника са ваше листе за игнорисање.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Игнориши корисника",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "Кликнуо сам на везу",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "Неисправна фраза или кључ опоравка",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "Није увредљив",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Позивање особа",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "Позови особу у групу {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "invited": "Позван",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "{username} позва корисника {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invitedUsersOnly": "само позвани корисници",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "Позивнице за мене",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username} вас позива у FluffyChat. \n1. Инсталирајте FluffyChat: https://fluffychat.im \n2. Региструјте се или пријавите \n3. Отворите везу позивнице: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "isTyping": "куца…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "{username} се придружи ћаскању",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "joinRoom": "Придружи се соби",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "{username} избаци корисника {targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "{username} избаци и забрани корисника {targetName}",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickFromChat": "Избаци из ћаскања",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "Последња активност: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "lastSeenLongTimeAgo": "одавно није на мрежи",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Напусти",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "Напусти ћаскање",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Лиценца",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "светли",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "Учитај још {count} учесника",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "loadingPleaseWait": "Учитавам… Сачекајте.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Учитај још…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Пријава",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "logInTo": "Пријава на {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "loginWith": "{brand} за пријаву",
- "@loginWith": {
- "type": "text",
- "placeholders": {
- "brand": {}
- }
- },
- "logout": "Одјава",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "Проверите да је идентификатор исправан",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Измене чланова",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "Спомени",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Поруке",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "Поруке ће бити уклоњене за све учеснике",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Модератор",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Ућуткај ћаскање",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "За сада, потребан је Пантелејмон (Pantalaimon) да бисте користили шифровање с краја на крај.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Ново ћаскање",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "Нова порука — FluffyChat",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Нови захтев за верификацију!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Следеће",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "Не",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "Нема везе са сервером",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "Нема емотија. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "Шифровање се може активирати након што соба престане да буде јавно доступна.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "Чини се да немате Гугл услуге на телефону. То је добра одлука за вашу приватност! Да би се протурале нотификације у FluffyChat, препоручујемо коришћење https://microg.org/ или https://unifiedpush.org/",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "none": "Ништа",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "Још нисте одредили начин за опоравак лозинке.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Нема дозвола",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "Нисам нашао собе…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Обавештења",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "Обавештења укључена за овај налог",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "{count} корисника куца…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "offensive": "Увредљив",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "Ван везе",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "у реду",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "online": "На вези",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "Резерва кључева на мрежи је укључена",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "oopsPushError": "Нажалост, дошло је до грешке при подешавању дотурања обавештења.",
- "@oopsPushError": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "Нешто је пошло наопако…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "Отворите апликацију да прочитате поруке",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Отвори камеру",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "(опционо) назив групе",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "or": "или",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "participant": "Учесник",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "фраза или кључ опоравка",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Лозинка",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Заборављена лозинка",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "Лозинка је промењена",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "Опоравак лозинке",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "people": "Људи",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "Избор слике",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Закачи",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "play": "Пусти {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseChoose": "Изаберите",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAPasscode": "Изаберите код за пролаз",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "Изаберите корисничко име",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "Кликните на везу у примљеној е-пошти па наставите.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "Унесите 4 цифре или оставите празно да не закључавате апликацију.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Унесите ИД са Матрикса.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "Унесите своју лозинку",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPin": "Унесите свој пин",
- "@pleaseEnterYourPin": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "Унесите своје корисничко име",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "Испратите упутства на веб сајту и тапните на „Следеће“.",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Приватност",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "Јавне собе",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "pushRules": "Правила протурања",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Разлог",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "Снимам",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "redactedAnEvent": "{username} редигова догађај",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "redactMessage": "Редигуј поруку",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "register": "Регистрација",
- "@register": {
- "type": "text",
- "placeholders": {}
- },
- "reject": "Одбиј",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "{username} одби позивницу",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "rejoin": "Поново се придружи",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Уклони",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "removeAllOtherDevices": "Уклони све остале уређаје",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "Уклонио корисник {username}",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeDevice": "Уклони уређај",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "Уклони изгнанство",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "removeYourAvatar": "Уклоните свој аватар",
- "@removeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "Приказуј обогаћен садржај поруке",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "replaceRoomWithNewerVersion": "Замени собу новијом верзијом",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Одговори",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "Пријави поруку",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Затражи дозволу",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "Соба је надограђена",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "Верзија собе",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Претражи",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "security": "Безбедност",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "{username} прегледа",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "seenByUserAndCountOthers": "{count, plural, other{{username} прегледа и {count} осталих}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "seenByUserAndUser": "Прегледали {username} и {username2}",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "send": "Пошаљи",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "sendAMessage": "Пошаљи поруку",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "Пошаљи аудио",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "Пошаљи фајл",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Пошаљи слику",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "Слање порука",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Пошаљи оригинал",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Пошаљи видео",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sentAFile": "{username} посла фајл",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "{username} посла аудио",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "{username} посла слику",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "{username} посла налепницу",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAVideo": "{username} посла видео",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentCallInformations": "{senderName} посла податке о позиву",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "setAsCanonicalAlias": "Постави као главни алијас",
- "@setAsCanonicalAlias": {
- "type": "text",
- "placeholders": {}
- },
- "setCustomEmotes": "постави посебне емотије",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "setGroupDescription": "Постави опис групе",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "Поставља везу позивнице",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "setPermissionsLevel": "Одреди ниво дозволе",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "Постави статус",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "Поставке",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "share": "Подели",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "sharedTheLocation": "{username} подели локацију",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "showPassword": "Прикажи лозинку",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "signUp": "Регистрација",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "singlesignon": "Јединствена пријава",
- "@singlesignon": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "Прескочи",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "Изворни код",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "startedACall": "{senderName} започе позив",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "status": "Стање",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "statusExampleMessage": "Како сте данас?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "Пошаљи",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "системски",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "theyDontMatch": "Не поклапају се",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "Поклапају се",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "toggleFavorite": "Мењај омиљеност",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "Мењај ућутканост",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "Означи не/прочитано",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "Превише упита. Покушајте касније!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "Пренос са другог уређаја",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "tryToSendAgain": "Покушај слање поново",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "Недоступно",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "{username} одблокира корисника {targetName}",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "unblockDevice": "Одблокирај уређај",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "Непознат уређај",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEncryptionAlgorithm": "Непознат алгоритам шифровања",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEvent": "Непознат догађај „{type}“",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "unmuteChat": "Врати обавештења",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "Откачи",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "unreadChats": "{unreadCount, plural, other{непрочитаних ћаскања: {unreadCount}}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "userAndOthersAreTyping": "{username} и {count} корисника куцају…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "userAndUserAreTyping": "{username} и {username2} куцају…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userIsTyping": "{username} куца…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userLeftTheChat": "{username} напусти ћаскање",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "username": "Корисничко име",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "userSentUnknownEvent": "{username} посла {type} догађај",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "verified": "Оверен",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "verify": "Верификуј",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "Покрени верификацију",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "Успешно сте верификовали!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "Верификујем други налог",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "Видео позив",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "Одреди видљивост историје",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "видљиво свим учесницима",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "видљиво свима",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "Гласовна порука",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerAcceptRequest": "Чекам да саговорник прихвати захтев…",
- "@waitingPartnerAcceptRequest": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerEmoji": "Чекам да саговорник прихвати емоџије…",
- "@waitingPartnerEmoji": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "Чекам да саговорник прихвати бројеве…",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "Тапета",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "Упозорење!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "Послали смо вам е-пошту",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "ко може шта да ради",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "Ко може да се придружи групи",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "Зашто желите ово да пријавите?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "wipeChatBackup": "Да обришем резервну копију како би направио нови сигурносни кључ?",
- "@wipeChatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "Са овим адресама можете опоравити своју лозинку.",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "напишите поруку…",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "Да",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "you": "Ви",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "Позвани сте у ово ћаскање",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "Више не учествујете у овом ћаскању",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "Не можете позвати себе",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "Забрањено вам је ово ћаскање",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "Ваш јавни кључ",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
+ "@@last_modified": "2021-08-14 12:41:09.857024",
+ "about": "О програму",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Прихвати",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} прихвата позивницу",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
}
-}
\ No newline at end of file
+ },
+ "account": "Налог",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "{username} укључи шифровање с краја на крај",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addEmail": "Додај е-адресу",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addGroupDescription": "Додај опис групе",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Админ",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "алијас",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Сви",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} одговори на позив",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "свако може да се придружи",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "Закључавање апликације",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Архива",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "Да ли је гостима дозвољен приступ",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Сигурни сте?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSureYouWantToLogout": "Заиста желите да се одјавите?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "Да бисте могли да пријавите другу особу, унесите своју безбедносну фразу или кључ опоравка.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Прихватате ли захтев за верификацију од корисника {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "badServerLoginTypesException": "Домаћи сервер подржава начине пријаве:\n{serverVersions}\nали ова апликација подржава само:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "badServerVersionsException": "Домаћи сервер подржава верзије:\n{serverVersions}\nали ова апликација подржава само {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "banFromChat": "Забрани у ћаскању",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Забрањен",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} забрани корисника {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "Блокирај уређај",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "Блокиран",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Поруке Бота",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Откажи",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "Промени назив уређаја",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "{username} промени аватар ћаскања",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} промени опис ћаскања у: „{description}“",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} промени назив ћаскања у: „{chatname}“",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} измени дозволе ћаскања",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} промени приказно име на: „{displayname}“",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} измени правила за приступ гостију",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} измени правила за приступ гостију на: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username} измени видљивост историје",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} измени видљивост историје на: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} измени правила приступања",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} измени правила приступања на: {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} измени свој аватар",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} измени алијас собе",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} измени везу позивнице",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "Измени лозинку",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Промени домаћи сервер",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Измените изглед",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Измени назив групе",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Измени тапет",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "Измените свој аватар",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "Шифровање је покварено",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Ћаскање",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackup": "Копија ћаскања",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "Ваша резервна копија ћаскања је обезбеђена кључем. Немојте да га изгубите.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Детаљи ћаскања",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chats": "Ћаскања",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Изаберите јаку лозинку",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Изаберите корисничко име",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "clearArchive": "Очисти архиву",
+ "@clearArchive": {},
+ "close": "Затвори",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "Блокирај задатог корисника за ову собу",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_html": "Шаљи ХТМЛ обликован текст",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_invite": "Позови задатог корисника у собу",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "commandHint_join": "Придружи се наведеној соби",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_kick": "Уклони задатог корисника из собе",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_leave": "Напусти ову собу",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_me": "Опишите себе",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "commandHint_myroomnick": "Поставља ваш надимак за ову собу",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "commandHint_op": "Подеси ниво задатог корисника (подразумевано: 50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_plain": "Шаљи неформатиран текст",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_react": "Шаљи одговор као реакцију",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_send": "Пошаљи текст",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "commandHint_unban": "Скини забрану задатом кориснику за ову собу",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "compareEmojiMatch": "Упоредите и проверите да су емоџији идентични као на другом уређају:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Упоредите и проверите да су следећи бројеви идентични као на другом уређају:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "Подешавање ћаскања",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Потврди",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Повежи се",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "Особа је позвана у групу",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Садржи приказно име",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Садржи корисничко име",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "Садржај је пријављен администраторима сервера",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Копирано у клипборд",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Копирај",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Копирај у клипборд",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "Не могу да дешифрујем поруку: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "учесника: {count}",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "Направи",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "{username} направи ћаскање",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "createNewGroup": "Направи нову групу",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "Тренутно активно",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "тамни",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{day} {month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithYear": "{day} {month} {year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "deactivateAccountWarning": "Ово ће деактивирати ваш кориснички налог. Не може се повратити! Сигурни сте?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "Подразумевани ниво приступа",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Обриши",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Обриши налог",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Брисање поруке",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Одбиј",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Уређај",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "ИД уређаја",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Уређаји",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Директна ћаскања",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "Име за приказ је измењено",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Преузми фајл",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Уреди",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "Уреди блокиране сервере",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "Уредите дозволе ћаскања",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Уреди име за приказ",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAliases": "Уреди алијасе собе",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "Уређује аватар собе",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "Емоти већ постоји!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "Неисправна скраћеница за емоти!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "Пакети емотија за собу",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Поставке емотија",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "скраћеница",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "Морате да изаберете скраћеницу и слику за емоти!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "празно ћаскање",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "Глобално укључи пакет емотија",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Укључује шифровање",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "Шифровање више нећете моћи да искључите. Сигурни сте?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Шифровано",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "Шифровање",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "Шифровање није укључено",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} заврши позив",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "enterAGroupName": "унесите назив групе",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "Унесите адресу е-поште",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourHomeserver": "Унесите свој домаћи сервер",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "Све је спремно!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Екстремно увредљив",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Назив фајла",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "Величина фонта",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "Напред",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "од приступања",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "од позивања",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "Иди у нову собу",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "Група",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Опис групе",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "Опис групе измењен",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "Група је јавна",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "Групе",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "Група са корисником {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "guestsAreForbidden": "гости су забрањени",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "гости могу приступити",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "{username} поништи позивницу за корисника {targetName}",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "help": "Помоћ",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "Сакриј редиговане догађаје",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Сакриј непознате догађаје",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "Колико је увредљив овај садржај?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ИД",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Идентитет",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Игнориши",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Игнорисани корисници",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "Можете игнорисати кориснике који вас нервирају. Нећете примати никакве поруке нити позивнице од корисника са ваше листе за игнорисање.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Игнориши корисника",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "Кликнуо сам на везу",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "Неисправна фраза или кључ опоравка",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "Није увредљив",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Позивање особа",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "Позови особу у групу {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "invited": "Позван",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "{username} позва корисника {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invitedUsersOnly": "само позвани корисници",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "Позивнице за мене",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username} вас позива у FluffyChat. \n1. Инсталирајте FluffyChat: https://fluffychat.im \n2. Региструјте се или пријавите \n3. Отворите везу позивнице: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "isTyping": "куца…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "{username} се придружи ћаскању",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "joinRoom": "Придружи се соби",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "{username} избаци корисника {targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "{username} избаци и забрани корисника {targetName}",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "Избаци из ћаскања",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "Последња активност: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "одавно није на мрежи",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Напусти",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "Напусти ћаскање",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Лиценца",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "светли",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "Учитај још {count} учесника",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "loadingPleaseWait": "Учитавам… Сачекајте.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Учитај још…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Пријава",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "Пријава на {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "loginWith": "{brand} за пријаву",
+ "@loginWith": {
+ "type": "text",
+ "placeholders": {
+ "brand": {}
+ }
+ },
+ "logout": "Одјава",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "Проверите да је идентификатор исправан",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Измене чланова",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "Спомени",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Поруке",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "Поруке ће бити уклоњене за све учеснике",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Модератор",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Ућуткај ћаскање",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "За сада, потребан је Пантелејмон (Pantalaimon) да бисте користили шифровање с краја на крај.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Ново ћаскање",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "Нова порука — FluffyChat",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Нови захтев за верификацију!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Следеће",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "Не",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "Нема везе са сервером",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "Нема емотија. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "Шифровање се може активирати након што соба престане да буде јавно доступна.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "Чини се да немате Гугл услуге на телефону. То је добра одлука за вашу приватност! Да би се протурале нотификације у FluffyChat, препоручујемо коришћење https://microg.org/ или https://unifiedpush.org/",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "Ништа",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "Још нисте одредили начин за опоравак лозинке.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Нема дозвола",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "Нисам нашао собе…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Обавештења",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "Обавештења укључена за овај налог",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "{count} корисника куца…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "offensive": "Увредљив",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "Ван везе",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "у реду",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "На вези",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "Резерва кључева на мрежи је укључена",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "Нажалост, дошло је до грешке при подешавању дотурања обавештења.",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "Нешто је пошло наопако…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "Отворите апликацију да прочитате поруке",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Отвори камеру",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "(опционо) назив групе",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "или",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "participant": "Учесник",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "фраза или кључ опоравка",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Лозинка",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Заборављена лозинка",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "Лозинка је промењена",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "Опоравак лозинке",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "Људи",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "Избор слике",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Закачи",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "Пусти {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseChoose": "Изаберите",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "Изаберите код за пролаз",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "Изаберите корисничко име",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "Кликните на везу у примљеној е-пошти па наставите.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "Унесите 4 цифре или оставите празно да не закључавате апликацију.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Унесите ИД са Матрикса.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "Унесите своју лозинку",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "Унесите свој пин",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "Унесите своје корисничко име",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "Испратите упутства на веб сајту и тапните на „Следеће“.",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Приватност",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Јавне собе",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "Правила протурања",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Разлог",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "Снимам",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "{username} редигова догађај",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactMessage": "Редигуј поруку",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "Регистрација",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reject": "Одбиј",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "{username} одби позивницу",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "rejoin": "Поново се придружи",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Уклони",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "Уклони све остале уређаје",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "Уклонио корисник {username}",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeDevice": "Уклони уређај",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "Уклони изгнанство",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "Уклоните свој аватар",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "Приказуј обогаћен садржај поруке",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replaceRoomWithNewerVersion": "Замени собу новијом верзијом",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Одговори",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "Пријави поруку",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Затражи дозволу",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "Соба је надограђена",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "Верзија собе",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Претражи",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "Безбедност",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "{username} прегледа",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{{username} прегледа и {count} осталих}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "seenByUserAndUser": "Прегледали {username} и {username2}",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "send": "Пошаљи",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAMessage": "Пошаљи поруку",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "Пошаљи аудио",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "Пошаљи фајл",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Пошаљи слику",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "Слање порука",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Пошаљи оригинал",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Пошаљи видео",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "{username} посла фајл",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "{username} посла аудио",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "{username} посла слику",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "{username} посла налепницу",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "{username} посла видео",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentCallInformations": "{senderName} посла податке о позиву",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "setAsCanonicalAlias": "Постави као главни алијас",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "постави посебне емотије",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setGroupDescription": "Постави опис групе",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "Поставља везу позивнице",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "Одреди ниво дозволе",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "Постави статус",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "Поставке",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "Подели",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "{username} подели локацију",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "showPassword": "Прикажи лозинку",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signUp": "Регистрација",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "Јединствена пријава",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "Прескочи",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "Изворни код",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "{senderName} започе позив",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "status": "Стање",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "Како сте данас?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "Пошаљи",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "системски",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyDontMatch": "Не поклапају се",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "Поклапају се",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "Мењај омиљеност",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "Мењај ућутканост",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "Означи не/прочитано",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "Превише упита. Покушајте касније!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "Пренос са другог уређаја",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "Покушај слање поново",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "Недоступно",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "{username} одблокира корисника {targetName}",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "unblockDevice": "Одблокирај уређај",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "Непознат уређај",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEncryptionAlgorithm": "Непознат алгоритам шифровања",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "Непознат догађај „{type}“",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "unmuteChat": "Врати обавештења",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "Откачи",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unreadChats": "{unreadCount, plural, other{непрочитаних ћаскања: {unreadCount}}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "userAndOthersAreTyping": "{username} и {count} корисника куцају…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "userAndUserAreTyping": "{username} и {username2} куцају…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userIsTyping": "{username} куца…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userLeftTheChat": "{username} напусти ћаскање",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "username": "Корисничко име",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userSentUnknownEvent": "{username} посла {type} догађај",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "verified": "Оверен",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "Верификуј",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "Покрени верификацију",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "Успешно сте верификовали!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "Верификујем други налог",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "Видео позив",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "Одреди видљивост историје",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "видљиво свим учесницима",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "видљиво свима",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "Гласовна порука",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "Чекам да саговорник прихвати захтев…",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "Чекам да саговорник прихвати емоџије…",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "Чекам да саговорник прихвати бројеве…",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "Тапета",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "Упозорење!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "Послали смо вам е-пошту",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "ко може шта да ради",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "Ко може да се придружи групи",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "Зашто желите ово да пријавите?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "Да обришем резервну копију како би направио нови сигурносни кључ?",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "Са овим адресама можете опоравити своју лозинку.",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "напишите поруку…",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "Да",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "Ви",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "Позвани сте у ово ћаскање",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "Више не учествујете у овом ћаскању",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "Не можете позвати себе",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "Забрањено вам је ово ћаскање",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "Ваш јавни кључ",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "addAccount": "",
+ "@addAccount": {},
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addToBundle": "",
+ "@addToBundle": {},
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "allChats": "",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "addToSpace": "",
+ "@addToSpace": {},
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "yourStory": "",
+ "@yourStory": {},
+ "unverified": "",
+ "@unverified": {},
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "emojis": "",
+ "@emojis": {},
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/l10n/intl_sv.arb b/assets/l10n/intl_sv.arb
index afe99a2fc..e40e7d655 100644
--- a/assets/l10n/intl_sv.arb
+++ b/assets/l10n/intl_sv.arb
@@ -1,2489 +1,2660 @@
{
- "@@last_modified": "2021-08-14 12:41:09.835634",
- "about": "Om",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Acceptera",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "👍 {username} accepterade inbjudan",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "Konto",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "🔐 {username} aktiverade ändpunktskryptering",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addGroupDescription": "Lägg till en gruppbeskrivning",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Admin",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "alias",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "all": "Alla",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} besvarade samtalet",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "Vem som helst kan gå med",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "App-lås",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Arkiv",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "Får gästanvändare gå med",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Är du säker?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSureYouWantToLogout": "Är du säker på att du vill logga ut?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "För att kunna signera den andra personen, vänligen ange din lösenfras eller återställningsnyckel för säker lagring.",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "Acceptera denna verifikationsförfrågan från {username}?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "badServerVersionsException": "Hemservern stöjder Spec-versionen:\n{serverVersions}\nMen denna app stödjer enbart {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "banFromChat": "Bannlys från chatt",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "Bannlyst",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} bannlös {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "Blockera Enhet",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "Bot meddelanden",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Avbryt",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "changeDeviceName": "Ändra enhetsnamn",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "{username} ändrade sin chatt-avatar",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} ändrade chatt-beskrivningen till: '{description}'",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatNameTo": "{username} ändrade sitt chatt-namn till: '{chatname}'",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatPermissions": "{username} ändrade chatt-rättigheterna",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} ändrade visningsnamnet till: '{displayname}'",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRules": "{username} ändrade reglerna för gästaccess",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} ändrade reglerna för gästaccess till: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibility": "{username} ändrade historikens synlighet",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username} ändrade historikens synlighet till: {rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username} ändrade anslutningsreglerna",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username} ändrade anslutningsreglerna till {joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username} ändrade sin avatar",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} ändrade rummets alias",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username} ändrade inbjudningslänken",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "Ändra lösenord",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Ändra hemserver",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "Ändra din stil",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Ändra namn på gruppen",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Ändra bakgrund",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "Krypteringen har blivit korrupt",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Chatt",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Chatt-detaljer",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Välj ett starkt lösenord",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Välj ett användarnamn",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "close": "Stäng",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "compareEmojiMatch": "Vänligen jämför uttryckssymbolerna",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "Vänligen jämför siffrorna",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "Konfigurera chatt",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Bekräfta",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Anslut",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "Kontakten har blivit inbjuden till gruppen",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "Innehåller visningsnamn",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "Innehåller användarnamn",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "Innehållet har rapporterats till server-admins",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "Kopierat till urklipp",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "Kopiera",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "Kunde ej avkoda meddelande: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "{count} deltagare",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "Skapa",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "💬 {username} skapade chatten",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "createNewGroup": "Skapa ny grupp",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "För närvarande aktiv",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "Mörkt",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{day}-{month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateWithYear": "{year}-{month}-{day}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "deactivateAccountWarning": "Detta kommer att avaktivera ditt konto. Det här går inte att ångra! Är du säker?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "Standard behörighetsnivå",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Radera",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Ta bort konto",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Ta bort meddelande",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Neka",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Enhet",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "Enhets-ID",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Enheter",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "Direkt Chatt",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "Visningsnamn har ändrats",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Ladda ner fil",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "Ändra",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "redigera blockerade servrar",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "Ändra chatt-rättigheter",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Ändra visningsnamn",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "redigera rumsavatar",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "Dekalen existerar redan!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "Ogiltig dekal-kod!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "Dekalpaket för rummet",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Emote inställningar",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "Dekal kod",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "Du måste välja en dekal-kod och en bild!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "Tom chatt",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "Aktivera dekal-paket globalt",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "Aktivera kryptering",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "Du kommer inte ha fortsatt möjlighet till att inaktivera krypteringen. Är du säker?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "Krypterad",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "Kryptering",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "Kryptering är ej aktiverad",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName} avslutade samtalet",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "enterAGroupName": "Ange ett gruppnamn",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "Ange en e-postaddress",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterYourHomeserver": "Ange din hemserver",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "Extremt stötande",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "Filnamn",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "Framåt",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "Från att gå med",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "Från inbjudan",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "group": "Grupp",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "Gruppbeskrivning",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "Gruppbeskrivningen ändrad",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "Gruppen är publik",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "Grupper",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "Gruppen med {displayname}",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "guestsAreForbidden": "Gäster är förbjudna",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "Gäster kan ansluta",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "{username} har tagit tillbaka inbjudan för {targetName}",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "help": "Hjälp",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "Göm redigerade händelser",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "Göm okända händelser",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "Hur stötande är detta innehåll?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ID",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "Identitet",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "Ignorera",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "Ignorera användare",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "Du kan ignorera användare som stör dig. Du kommer inte att ha möjlighet att få några meddelanden eller rums-inbjudningar från användare på din personliga ignoreringslista.",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "Ignorera användarnamn",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "Jag har klickat på länken",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "Felaktig lösenordsfras eller åsterställningsnyckel",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "Oförargligt",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "Bjud in kontakt",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "Bjud in kontakt till {groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "invited": "Inbjuden",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "📩 {username} bjöd in {targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invitedUsersOnly": "Endast inbjudna användare",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "Inbjudning till mig",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username} bjöd in dig till FluffyChat. \n1. Installera FluffyChat: https://fluffychat.im \n2. Registrera dig eller logga in \n3. Öppna inbjudningslänk: {link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "isTyping": "skriver…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "👋 {username} anslöt till chatten",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "joinRoom": "Anslut till rum",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "👞 {username} sparkade ut {targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "🙅 {username} sparkade och bannade {targetName}",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickFromChat": "Sparka från chatt",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "Senast aktiv: {localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "lastSeenLongTimeAgo": "Sågs för längesedan",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "Lämna",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "Lämnade chatten",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "license": "Licens",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "Ljust",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "Ladda {count} mer deltagare",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "loadingPleaseWait": "Laddar... Var god vänta.",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "Ladda mer…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "login": "Logga in",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "logInTo": "Logga in till {homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "logout": "Logga ut",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "Se till att identifieraren är giltig",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "Medlemsändringar",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "Nämn",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "Meddelanden",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "Meddelandet kommer tas bort för alla deltagare",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "Moderator",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "Tysta chatt",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "Var medveten om att du behöver Pantalaimon för att använda ändpunktskryptering tillsvidare.",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "Ny chatt",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "💬 Nya meddelanden i FluffyChat",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "Ny verifikationsbegäran!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Nästa",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "Nej",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "Ingen anslutning till servern",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "Hittade inga dekaler. 😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "De ser ut som att du inte har google-tjänster på din telefon. Det är ett bra beslut för din integritet! För att få push notifikationer i FluffyChat rekommenderar vi att använda https://microg.org/ eller https://unifiedpush.org/ .",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "none": "Ingen",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "Du har inte lagt till något sätt för att återställa ditt lösenord än.",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "Ingen behörighet",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "Hittade inga rum…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "Aviseringar",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "Notifikationer är påslaget för detta konto",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "{count} användare skriver…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "offensive": "Stötande",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "Offline",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "OK",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "online": "Online",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "Online Nyckel-backup är aktiverad",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "Hoppsan, något gick fel…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "Öppna app för att lästa meddelanden",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "Öppna kamera",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "(Optional) Gruppnamn",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "participant": "Deltagare",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "lösenord eller återställningsnyckel",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "password": "Lösenord",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "Glömt lösenord",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "Lösenordet har ändrats",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "Återställ lösenord",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "Välj en bild",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "Nåla fast",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "play": "Spela {fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseChooseAPasscode": "Ange ett lösenord",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "Välj ett användarnamn",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "Klicka på länken i e-postmeddelandet för att sedan fortsätta.",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "Ange 4 siffror eller lämna tom för att inaktivera app-lås.",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "Ange ditt Matrix ID.",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "Ange ditt lösenord",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "Ange ditt användarnamn",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "Följ instruktionerna på hemsidan och tryck på nästa.",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "Integritet",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "Publika Rum",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "pushRules": "Push regler",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "Anledning",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "Spelar in",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "redactedAnEvent": "{username} redigerade en händelse",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "redactMessage": "Redigera meddelande",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "reject": "Avböj",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "{username} avböjde inbjudan",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "rejoin": "Återanslut",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "Ta bort",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "removeAllOtherDevices": "Ta bort alla andra enheter",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "Bortagen av {username}",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeDevice": "Ta bort enhet",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "Ta bort chatt-blockering",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "Återge innehåll med rikt meddelande",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "replaceRoomWithNewerVersion": "Ersätt rum med nyare version",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "Svara",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "Rapportera meddelande",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "Begär behörighet",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "Rummet har blivit uppgraderat",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "search": "Sök",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "security": "Säkerhet",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "Sedd av {username}",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "seenByUserAndCountOthers": "{count, plural, other{Sedd av {username} och {count} andra}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "seenByUserAndUser": "Sedd av {username} och {username2}",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "send": "Skicka",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "sendAMessage": "Skicka ett meddelande",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "Skicka ljud",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "Skicka fil",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "Skicka bild",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "Skickade meddelanden",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "Skicka orginal",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "Skicka video",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sentAFile": "📁 {username} skickade en fil",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "🎤 {username} skickade ett ljudklipp",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "🖼️ {username} skickade en bild",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "😊 {username} skickade ett klistermärke",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAVideo": "🎥 {username} skickade en video",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentCallInformations": "{senderName} skickade samtalsinformation",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "setCustomEmotes": "Ställ in anpassade dekaler",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "setGroupDescription": "Ställ in gruppbeskrivning",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "Ställ in inbjudningslänk",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "setPermissionsLevel": "Ställ in behörighetsnivå",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "Ställ in status",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "Inställningar",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "share": "Dela",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "sharedTheLocation": "{username} delade sin position",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "signUp": "Registrera",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "Hoppa över",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "Källkod",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "startedACall": "{senderName} startade ett samtal",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "status": "Status",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "statusExampleMessage": "Hur mår du i dag?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "Skicka in",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "System",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "theyDontMatch": "Dom Matchar Inte",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "Dom Matchar",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "toggleFavorite": "Växla favorit",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "Växla tystad",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "Markera läst/oläst",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "För många förfrågningar. Vänligen försök senare!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "tryToSendAgain": "Försök att skicka igen",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "Upptagen",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "{username} avbannade {targetName}",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "unblockDevice": "Avblockera enhet",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "Okänd enhet",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEncryptionAlgorithm": "Okänd krypteringsalgoritm",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEvent": "Okänd händelse '{type}'",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "unmuteChat": "Slå på ljudet för chatten",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "Avnåla",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "unreadChats": "{unreadCount, plural, =1{en oläst chatt} other{{unreadCount} olästa chattar}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "userAndOthersAreTyping": "{username} och {count} andra skriver…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "userAndUserAreTyping": "{username} och {username2} skriver…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userIsTyping": "{username} skriver…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userLeftTheChat": "🚪 {username} lämnade chatten",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "username": "Användarnamn",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "userSentUnknownEvent": "{username} skickade en {type} händelse",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "verify": "Verifiera",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "Starta verifiering",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "Du har lyckats verifiera!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "Verifiera andra konton",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "Videosamtal",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "Chatt-historikens synlighet",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "Synlig för alla deltagare",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "Synlig för alla",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "Röstmeddelande",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerAcceptRequest": "Väntar på att deltagaren accepterar begäran…",
- "@waitingPartnerAcceptRequest": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerEmoji": "Väntar på att deltagaren accepterar emojien…",
- "@waitingPartnerEmoji": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "Väntar på att deltagaren accepterar nummer…",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "Bakgrund",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "Varning!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "Vi skickade dig ett e-postmeddelande",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "Vem kan utföra vilken åtgärd",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "Vilka som är tilllåtna att ansluta till denna grupp",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "Varför vill du rapportera detta?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "Med dessa addresser kan du återställa ditt lösenord.",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "Skriv ett meddelande…",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "Ja",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "you": "Du",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "Du är inbjuden till denna chatt",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "Du deltar inte längre i denna chatt",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "Du kan inte bjuda in dig själv",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "Du har blivit bannad från denna chatt",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "Din publika nyckel",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_html": "Skicka HTML-formatted text",
- "@commandHint_html": {
- "type": "text",
- "description": "Usage hint for the command /html"
- },
- "commandHint_ban": "Bannlys användaren från detta rum",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "clearArchive": "Rensa arkiv",
- "@clearArchive": {},
- "chats": "Chatter",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "chatHasBeenAddedToThisSpace": "Chatt har lagts till i detta utrymme",
- "@chatHasBeenAddedToThisSpace": {},
- "chatBackup": "Chatt backup",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "changeYourAvatar": "Ändra din avatar",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "cantOpenUri": "Kan inte öppna URL {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "blocked": "Blockerad",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "badServerLoginTypesException": "Hemma servern stödjer följande inloggnings typer :\n {serverVersions}\nMen denna applikation stödjer enbart:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "autoplayImages": "Automatisk spela upp animerade klistermärken och emoji",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "allChats": "Alla chattar",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "Lägg till i utrymme",
- "@addToSpace": {},
- "addEmail": "Lägg till e-post",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_myroomavatar": "Sätt din bild för detta rum (by mxc-uri)",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_me": "Beskriv dig själv",
- "@commandHint_me": {
- "type": "text",
- "description": "Usage hint for the command /me"
- },
- "commandHint_leave": "Lämna detta rum",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_kick": "Ta bort användare från detta rum",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_join": "Gå med i rum",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_invite": "Bjud in användaren till detta rum",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "locationPermissionDeniedNotice": "Plats åtkomst nekad. Var god godkän detta för att kunna dela din plats.",
- "@locationPermissionDeniedNotice": {
- "type": "text",
- "placeholders": {}
- },
- "locationDisabledNotice": "Platstjänster är inaktiverade. Var god aktivera dom för att kunna dela din plats.",
- "@locationDisabledNotice": {
- "type": "text",
- "placeholders": {}
- },
- "goToTheNewRoom": "Gå till det nya rummet",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "Teckensnitt storlek",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "Allt är klart!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "errorObtainingLocation": "Fel vid erhållande av plats: {error}",
- "@errorObtainingLocation": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "enterASpacepName": "Ange utrymmets namn",
- "@enterASpacepName": {},
- "editRoomAliases": "Redigera rum alias",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "createNewSpace": "Nytt utrymme",
- "@createNewSpace": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "Kopiera till urklipp",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "commandMissing": "{command} är inte ett kommando.",
- "@commandMissing": {
- "type": "text",
- "placeholders": {
- "command": {}
- },
- "description": "State that {command} is not a valid /command."
- },
- "commandInvalid": "Felaktigt kommando",
- "@commandInvalid": {
- "type": "text"
- },
- "commandHint_unban": "Tillåt användare i rummet",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "commandHint_send": "Skicka text",
- "@commandHint_send": {
- "type": "text",
- "description": "Usage hint for the command /send"
- },
- "commandHint_react": "Skicka svar som reaktion",
- "@commandHint_react": {
- "type": "text",
- "description": "Usage hint for the command /react"
- },
- "commandHint_plain": "Skicka oformaterad text",
- "@commandHint_plain": {
- "type": "text",
- "description": "Usage hint for the command /plain"
- },
- "commandHint_op": "Sätt användarens kraft nivå ( standard: 50)",
- "@commandHint_op": {
- "type": "text",
- "description": "Usage hint for the command /op"
- },
- "commandHint_myroomnick": "Sätt ditt användarnamn för rummet",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "noEncryptionForPublicRooms": "Du kan endast aktivera kryptering när rummet inte längre är publikt tillgängligt.",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "loginWith": "Logga in med {brand}",
- "@loginWith": {
- "type": "text",
- "placeholders": {
- "brand": {}
- }
- },
- "noMatrixServer": "{server1} är inte en matrix server, använd {server2} istället?",
- "@noMatrixServer": {
- "type": "text",
- "placeholders": {
- "server1": {},
- "server2": {}
- }
- },
- "obtainingLocation": "Erhåller plats…",
- "@obtainingLocation": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChoose": "Var god välj",
- "@pleaseChoose": {
- "type": "text",
- "placeholders": {}
- },
- "people": "Människor",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "or": "Eller",
- "@or": {
- "type": "text",
- "placeholders": {}
- },
- "openInMaps": "Öppna i karta",
- "@openInMaps": {
- "type": "text",
- "placeholders": {}
- },
- "oopsPushError": "Oj! Tyvärr uppstod ett fel vid upprättande av push notiser.",
- "@oopsPushError": {
- "type": "text",
- "placeholders": {}
- },
- "synchronizingPleaseWait": "Synkroniserar… Var god vänta.",
- "@synchronizingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "spaceName": "Utrymmes namn",
- "@spaceName": {
- "type": "text",
- "placeholders": {}
- },
- "spaceIsPublic": "Utrymme är publikt",
- "@spaceIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "showPassword": "Visa lösenord",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "shareLocation": "Dela plats",
- "@shareLocation": {
- "type": "text",
- "placeholders": {}
- },
- "setAsCanonicalAlias": "Sätt som primärt alias",
- "@setAsCanonicalAlias": {
- "type": "text",
- "placeholders": {}
- },
- "sendSticker": "Skicka klistermärke",
- "@sendSticker": {
- "type": "text",
- "placeholders": {}
- },
- "sendAsText": "Skicka som text",
- "@sendAsText": {
- "type": "text"
- },
- "saveFile": "Spara fil",
- "@saveFile": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "Rum version",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "removeYourAvatar": "Ta bort din avatar",
- "@removeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "register": "Registrera",
- "@register": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPin": "Ange din pin-kod",
- "@pleaseEnterYourPin": {
- "type": "text",
- "placeholders": {}
- },
- "wipeChatBackup": "Radera din chatt-backup för att skapa en ny återställningsnyckel?",
- "@wipeChatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "verified": "Verifierad",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "Överför till annan enhet",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "shareYourInviteLink": "Dela din inbjudan",
- "@shareYourInviteLink": {},
- "chatBackupDescription": "Din chatt backup är skyddad av en säkerhetsnyckel. Se till att du inte förlorar den.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_create": "Skapa en tom grupp-chatt\nAnvänd --no-encryption för att inaktivera kryptering",
- "@commandHint_create": {
- "type": "text",
- "description": "Usage hint for the command /create"
- },
- "commandHint_discardsession": "Kasta bort sessionen",
- "@commandHint_discardsession": {
- "type": "text",
- "description": "Usage hint for the command /discardsession"
- },
- "commandHint_dm": "Starta en direkt-chatt\nAnvänd --no-encryption för att inaktivera kryptering",
- "@commandHint_dm": {
- "type": "text",
- "description": "Usage hint for the command /dm"
- },
- "homeserver": "Hemserver",
- "@homeserver": {},
- "oneClientLoggedOut": "En av dina klienter har loggats ut",
- "@oneClientLoggedOut": {},
- "addAccount": "Lägg till konto",
- "@addAccount": {},
- "editBundlesForAccount": "Lägg till paket för detta konto",
- "@editBundlesForAccount": {},
- "addToBundle": "Utöka paket",
- "@addToBundle": {},
- "bundleName": "Paketnamn",
- "@bundleName": {},
- "serverRequiresEmail": "Servern behöver validera din e-postadress för registrering.",
- "@serverRequiresEmail": {},
- "singlesignon": "Single Sign On",
- "@singlesignon": {
- "type": "text",
- "placeholders": {}
- },
- "unverified": "Ej verifierad",
- "@unverified": {},
- "messageInfo": "Meddelandeinformation",
- "@messageInfo": {},
- "messageType": "Meddelandetyp",
- "@messageType": {},
- "time": "Tid",
- "@time": {},
- "sender": "Avsändare",
- "@sender": {},
- "removeFromSpace": "Ta bort från utrymme",
- "@removeFromSpace": {},
- "addToSpaceDescription": "Välj ett utrymme som chatten skall läggas till i.",
- "@addToSpaceDescription": {},
- "start": "Starta",
- "@start": {},
- "iUnderstand": "Jag förstår",
- "@iUnderstand": {},
- "yourStory": "Din berättelse",
- "@yourStory": {},
- "openGallery": "Öppna galleri",
- "@openGallery": {},
- "storyFrom": "Berättelse från {date}: \n{body}",
- "@storyFrom": {
- "type": "text",
- "placeholders": {
- "date": {},
- "body": {}
- }
- },
- "passwordsDoNotMatch": "Lösenorden stämmer inte överens!",
- "@passwordsDoNotMatch": {},
- "repeatPassword": "Upprepa lösenord",
- "@repeatPassword": {},
- "pleaseChooseAtLeastChars": "Vänligen ange minst {min} tecken.",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "markAsRead": "Markera som läst",
- "@markAsRead": {},
- "commandHint_clearcache": "Rensa cache",
- "@commandHint_clearcache": {
- "type": "text",
- "description": "Usage hint for the command /clearcache"
- },
- "openVideoCamera": "Aktivera kamera för video",
- "@openVideoCamera": {
- "type": "text",
- "placeholders": {}
- },
- "link": "Länk",
- "@link": {},
- "publish": "Publicera",
- "@publish": {},
- "unsubscribeStories": "Avprenumerera berättelser",
- "@unsubscribeStories": {},
- "replyHasBeenSent": "Svar har skickats",
- "@replyHasBeenSent": {},
- "videoWithSize": "Video ({size})",
- "@videoWithSize": {
- "type": "text",
- "placeholders": {
- "size": {}
- }
- },
- "whatIsGoingOn": "Vad händer?",
- "@whatIsGoingOn": {},
- "addDescription": "Lägg till beskrivning",
- "@addDescription": {},
- "reportUser": "Rapportera användare",
- "@reportUser": {},
- "openChat": "Öppna Chatt",
- "@openChat": {},
- "sendOnEnter": "Skicka med Enter",
- "@sendOnEnter": {},
- "addToStory": "Addera till berättelse",
- "@addToStory": {},
- "pleaseEnterValidEmail": "Vänligen ange en giltig e-postadress.",
- "@pleaseEnterValidEmail": {},
- "scanQrCode": "Skanna QR-kod",
- "@scanQrCode": {},
- "bubbleSize": "Storlek på bubbla",
- "@bubbleSize": {
- "type": "text",
- "placeholders": {}
- },
- "yourChatBackupHasBeenSetUp": "Din chatt-backup har konfigurerats.",
- "@yourChatBackupHasBeenSetUp": {},
- "loginWithOneClick": "Logga in med ett klick",
- "@loginWithOneClick": {},
- "removeFromBundle": "Ta bort från paket",
- "@removeFromBundle": {},
- "enableMultiAccounts": "(BETA) Aktivera multi-konton på denna enhet",
- "@enableMultiAccounts": {},
- "whoCanSeeMyStories": "Vem kan se mina berättelser?",
- "@whoCanSeeMyStories": {},
- "whoCanSeeMyStoriesDesc": "Notera att användare kan se och kontakta varandra i din berättelse.",
- "@whoCanSeeMyStoriesDesc": {},
- "thisUserHasNotPostedAnythingYet": "Den här användaren har inte lagt till något till deras berättelse än",
- "@thisUserHasNotPostedAnythingYet": {},
- "storyPrivacyWarning": "Notera att användare kan se och kontakta varandra i din berättelse. Din berättelse är synlig i 24 timmar, men det finns ingen garanti för att berättelser raderas från alla enheter och servrar.",
- "@storyPrivacyWarning": {},
- "emojis": "Uttryckssymboler",
- "@emojis": {},
- "placeCall": "Ring",
- "@placeCall": {},
- "voiceCall": "Röstsamtal",
- "@voiceCall": {},
- "unsupportedAndroidVersion": "Inget stöd för denna version av Android",
- "@unsupportedAndroidVersion": {},
- "videoCallsBetaWarning": "Videosamtal är för närvarande under testning. De kanske inte fungerar som det är tänkt eller på alla plattformar.",
- "@videoCallsBetaWarning": {},
- "unsupportedAndroidVersionLong": "Denna funktion kräver en senare version av Android.",
- "@unsupportedAndroidVersionLong": {},
- "dismiss": "Avfärda",
- "@dismiss": {},
- "matrixWidgets": "Matrix widgetar",
- "@matrixWidgets": {},
- "reactedWith": "{sender} reagerade med {reaction}",
- "@reactedWith": {
- "type": "text",
- "placeholders": {
- "sender": {},
- "reaction": {}
- }
- },
- "pinMessage": "Fäst i rum",
- "@pinMessage": {},
- "confirmEventUnpin": "Är du säker på att händelsen inte längre skall vara fastnålad?",
- "@confirmEventUnpin": {},
- "experimentalVideoCalls": "Experimentella videosamtal",
- "@experimentalVideoCalls": {},
- "switchToAccount": "Byt till konto {number}",
- "@switchToAccount": {
- "type": "number",
- "placeholders": {
- "number": {}
- }
- },
- "nextAccount": "Nästa konto",
- "@nextAccount": {},
- "previousAccount": "Föregående konto",
- "@previousAccount": {},
- "emailOrUsername": "Användarnamn eller e-postadress",
- "@emailOrUsername": {},
- "addWidget": "Lägg till widget",
- "@addWidget": {},
- "widgetVideo": "Video",
- "@widgetVideo": {},
- "widgetEtherpad": "Anteckning",
- "@widgetEtherpad": {},
- "widgetCustom": "Anpassad",
- "@widgetCustom": {},
- "widgetName": "Namn",
- "@widgetName": {},
- "widgetUrlError": "Detta är inte en giltig URL.",
- "@widgetUrlError": {},
- "errorAddingWidget": "Ett fel uppstod när widgeten skulle läggas till.",
- "@errorAddingWidget": {},
- "editWidgets": "Redigera widgetar",
- "@editWidgets": {},
- "widgetJitsi": "Jitsi-möte",
- "@widgetJitsi": {},
- "widgetNameError": "Vänligen ange ett visningsnamn.",
- "@widgetNameError": {},
- "storeSecurlyOnThisDevice": "Lagra säkert på denna enhet",
- "@storeSecurlyOnThisDevice": {},
- "youJoinedTheChat": "Du gick med i chatten",
- "@youJoinedTheChat": {},
- "youAcceptedTheInvitation": "👍 Du accepterade inbjudan",
- "@youAcceptedTheInvitation": {},
- "youKicked": "👞 Du sparkade ut {user}",
- "@youKicked": {
- "placeholders": {
- "user": {}
- }
- },
- "hugContent": "{senderName} kramar dig",
- "@hugContent": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "commandHint_markasgroup": "Märk som grupp",
- "@commandHint_markasgroup": {},
- "recoveryKeyLost": "Borttappad återställningsnyckel?",
- "@recoveryKeyLost": {},
- "indexedDbErrorTitle": "Problem med privat läge",
- "@indexedDbErrorTitle": {},
- "youHaveWithdrawnTheInvitationFor": "Du har återkallat inbjudan till {user}",
- "@youHaveWithdrawnTheInvitationFor": {
- "placeholders": {
- "user": {}
- }
- },
- "youUnbannedUser": "Du återkallade förbudet för {user}",
- "@youUnbannedUser": {
- "placeholders": {
- "user": {}
- }
- },
- "unlockOldMessages": "Lås upp äldre meddelanden",
- "@unlockOldMessages": {},
- "newSpace": "Nytt utrymme",
- "@newSpace": {},
- "googlyEyesContent": "{senderName} skickar dig googly ögon",
- "@googlyEyesContent": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "dehydrate": "Exportera sessionen och rensa enheten",
- "@dehydrate": {},
- "dehydrateWarning": "Denna åtgärd kan inte ångras. Försäkra dig om att backupen är i säkert förvar.",
- "@dehydrateWarning": {},
- "dehydrateTor": "TOR-användare: Exportera session",
- "@dehydrateTor": {},
- "hydrateTor": "TOR-användare: Importera session från tidigare export",
- "@hydrateTor": {},
- "hydrateTorLong": "Exporterade du sessionen när du senast använde TOR? Importera den enkelt och fortsätt chatta.",
- "@hydrateTorLong": {},
- "recoveryKey": "Återställningsnyckel",
- "@recoveryKey": {},
- "separateChatTypes": "Separata direktchattar och grupper",
- "@separateChatTypes": {
- "type": "text",
- "placeholders": {}
- },
- "showDirectChatsInSpaces": "Visa relaterade direktchattar i utrymmen",
- "@showDirectChatsInSpaces": {
- "type": "text",
- "placeholders": {}
- },
- "startFirstChat": "Starta din första chatt",
- "@startFirstChat": {},
- "pleaseEnterRecoveryKeyDescription": "Ange din återställningsnyckel från en tidigare session för att låsa upp äldre meddelanden. Din återställningsnyckel är INTE ditt lösenord.",
- "@pleaseEnterRecoveryKeyDescription": {},
- "encryptThisChat": "Kryptera denna chatt",
- "@encryptThisChat": {},
- "enterInviteLinkOrMatrixId": "Ange länk för inbjudan eller Matrix-ID...",
- "@enterInviteLinkOrMatrixId": {},
- "dehydrateTorLong": "TOR-användare rekommenderas att exportera sessionen innan fönstret stängs.",
- "@dehydrateTorLong": {},
- "noBackupWarning": "Varning! Om du inte aktiverar säkerhetskopiering av chattar så tappar du åtkomst till krypterade meddelanden. Det är rekommenderat att du aktiverar säkerhetskopiering innan du loggar ut.",
- "@noBackupWarning": {},
- "noOtherDevicesFound": "Inga andra enheter hittades",
- "@noOtherDevicesFound": {},
- "endToEndEncryption": "Totalsträckskryptering",
- "@endToEndEncryption": {},
- "disableEncryptionWarning": "Av säkerhetsskäl kan du inte stänga av kryptering i en chatt där det tidigare aktiverats.",
- "@disableEncryptionWarning": {},
- "sorryThatsNotPossible": "Det där är inte möjligt",
- "@sorryThatsNotPossible": {},
- "confirmMatrixId": "Bekräfta ditt Matrix-ID för att radera ditt konto.",
- "@confirmMatrixId": {},
- "updateAvailable": "FluffyChat-uppdatering tillgänglig",
- "@updateAvailable": {},
- "updateNow": "Påbörja uppdatering i bakgrunden",
- "@updateNow": {},
- "supposedMxid": "Detta bör vara {mxid}",
- "@supposedMxid": {
- "type": "text",
- "placeholders": {
- "mxid": {}
- }
- },
- "pleaseEnterRecoveryKey": "Ange din återställningsnyckel:",
- "@pleaseEnterRecoveryKey": {},
- "commandHint_markasdm": "Märk som rum för direktmeddelanden",
- "@commandHint_markasdm": {},
- "noEmailWarning": "Utan en giltig e-postadress kommer du inte kunna återställa ditt lösenord. Om du inte vill ange en e-postadress, tryck på knappen igen för att fortsätta.",
- "@noEmailWarning": {},
- "user": "Användare",
- "@user": {},
- "indexedDbErrorLong": "Meddelandelagring är tyvärr inte aktiverat i privat läge som standard.\nGå till\n - about:config\n - sätt dom.indexedDB.privateBrowsing.enabled till true\nAnnars går det inte att använda FluffyChat.",
- "@indexedDbErrorLong": {},
- "storeInSecureStorageDescription": "Lagra återställningsnyckeln på säker plats på denna enhet.",
- "@storeInSecureStorageDescription": {},
- "storeInAppleKeyChain": "Lagra i Apples nyckelkedja (KeyChain)",
- "@storeInAppleKeyChain": {},
- "foregroundServiceRunning": "Denna notifikation visas när förgrundstjänsten körs.",
- "@foregroundServiceRunning": {},
- "custom": "Anpassad",
- "@custom": {},
- "countFiles": "{count} filer",
- "@countFiles": {
- "placeholders": {
- "count": {}
- }
- },
- "screenSharingTitle": "skärmdelning",
- "@screenSharingTitle": {},
- "noKeyForThisMessage": "Detta kan hända om meddelandet skickades innan du loggade in på ditt konto i den här enheten.\n\nDet kan också vara så att avsändaren har blockerat din enhet eller att något gick fel med internetanslutningen.\n\nKan du läsa meddelandet i en annan session? I sådana fall kan du överföra meddelandet från den sessionen! Gå till Inställningar > Enhet och säkerställ att dina enheter har verifierat varandra. När du öppnar rummet nästa gång och båda sessionerna är i förgrunden, så kommer nycklarna att överföras automatiskt.\n\nVill du inte förlora nycklarna vid utloggning eller när du byter enhet? Säkerställ att du har aktiverat säkerhetskopiering för chatten i inställningarna.",
- "@noKeyForThisMessage": {},
- "fileIsTooBigForServer": "Servern informerar om att filen är för stor för att skickas.",
- "@fileIsTooBigForServer": {},
- "deviceKeys": "Enhetsnycklar:",
- "@deviceKeys": {},
- "enterSpace": "Gå till utrymme",
- "@enterSpace": {},
- "commandHint_googly": "Skicka några googly ögon",
- "@commandHint_googly": {},
- "commandHint_cuddle": "Skicka en omfamning",
- "@commandHint_cuddle": {},
- "commandHint_hug": "Skicka en kram",
- "@commandHint_hug": {},
- "users": "Användare",
- "@users": {},
- "cuddleContent": "{senderName} omfamnar dig",
- "@cuddleContent": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "hydrate": "Återställ från säkerhetskopia",
- "@hydrate": {},
- "screenSharingDetail": "Du delar din skärm i FluffyChat",
- "@screenSharingDetail": {},
- "letsStart": "Lås oss börja",
- "@letsStart": {},
- "youRejectedTheInvitation": "Du avvisade inbjudan",
- "@youRejectedTheInvitation": {},
- "youBannedUser": "Du förbjöd {user}",
- "@youBannedUser": {
- "placeholders": {
- "user": {}
- }
- },
- "youInvitedBy": "📩 Du har blivit inbjuden av {user}",
- "@youInvitedBy": {
- "placeholders": {
- "user": {}
- }
- },
- "youInvitedUser": "📩 Du bjöd in {user}",
- "@youInvitedUser": {
- "placeholders": {
- "user": {}
- }
- },
- "youKickedAndBanned": "🙅 Du sparkade ut och förbjöd {user}",
- "@youKickedAndBanned": {
- "placeholders": {
- "user": {}
- }
- },
- "stories": "Berättelser",
- "@stories": {},
- "saveKeyManuallyDescription": "Spara nyckeln manuellt genom att aktivera dela-funktionen eller urklippshanteraren på enheten.",
- "@saveKeyManuallyDescription": {},
- "storeInAndroidKeystore": "Lagra i Androids nyckellagring (KeyStore)",
- "@storeInAndroidKeystore": {},
- "callingPermissions": "Samtalsbehörighet",
- "@callingPermissions": {},
- "callingAccount": "Samtalskonto",
- "@callingAccount": {},
- "callingAccountDetails": "Tillåt FluffyChat att använda Androids ring-app.",
- "@callingAccountDetails": {},
- "appearOnTop": "Visa ovanpå",
- "@appearOnTop": {},
- "appearOnTopDetails": "Tillåt att appen visas ovanpå (behövs inte om du redan har FluffyChat konfigurerat som ett samtalskonto)",
- "@appearOnTopDetails": {},
- "otherCallingPermissions": "Mikrofon, kamera och andra behörigheter för FluffyChat",
- "@otherCallingPermissions": {},
- "whyIsThisMessageEncrypted": "Varför kan inte detta meddelande läsas?",
- "@whyIsThisMessageEncrypted": {},
- "newGroup": "Ny grupp",
- "@newGroup": {},
- "enterRoom": "Gå till rummet",
- "@enterRoom": {},
- "allSpaces": "Alla utrymmen",
- "@allSpaces": {},
- "numChats": "{number} chattar",
- "@numChats": {
- "type": "number",
- "placeholders": {
- "number": {}
- }
- },
- "hideUnimportantStateEvents": "Göm oviktiga tillståndshändelser",
- "@hideUnimportantStateEvents": {},
- "doNotShowAgain": "Visa inte igen",
- "@doNotShowAgain": {},
- "wasDirectChatDisplayName": "Tom chatt (var {oldDisplayName})",
- "@wasDirectChatDisplayName": {
- "type": "text",
- "placeholders": {
- "oldDisplayName": {}
- }
- },
- "newSpaceDescription": "Utrymmen möjliggör konsolidering av chattar och att bygga privata eller offentliga gemenskaper.",
- "@newSpaceDescription": {},
- "reopenChat": "Återöppna chatt",
- "@reopenChat": {},
- "jumpToLastReadMessage": "Hoppa till det senast lästa meddelandet",
- "@jumpToLastReadMessage": {},
- "readUpToHere": "Läs upp till hit",
- "@readUpToHere": {},
- "fileHasBeenSavedAt": "Filen har sparats i {path}",
- "@fileHasBeenSavedAt": {
- "type": "text",
- "placeholders": {
- "path": {}
- }
+ "@@last_modified": "2021-08-14 12:41:09.835634",
+ "about": "Om",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Acceptera",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "👍 {username} accepterade inbjudan",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
}
-}
\ No newline at end of file
+ },
+ "account": "Konto",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "🔐 {username} aktiverade ändpunktskryptering",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addGroupDescription": "Lägg till en gruppbeskrivning",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Admin",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "alias",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "Alla",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} besvarade samtalet",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "Vem som helst kan gå med",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "App-lås",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Arkiv",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "Får gästanvändare gå med",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Är du säker?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSureYouWantToLogout": "Är du säker på att du vill logga ut?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "För att kunna signera den andra personen, vänligen ange din lösenfras eller återställningsnyckel för säker lagring.",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "Acceptera denna verifikationsförfrågan från {username}?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "badServerVersionsException": "Hemservern stöjder Spec-versionen:\n{serverVersions}\nMen denna app stödjer enbart {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "banFromChat": "Bannlys från chatt",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "Bannlyst",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} bannlös {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "Blockera Enhet",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "Bot meddelanden",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Avbryt",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "Ändra enhetsnamn",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "{username} ändrade sin chatt-avatar",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} ändrade chatt-beskrivningen till: '{description}'",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} ändrade sitt chatt-namn till: '{chatname}'",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} ändrade chatt-rättigheterna",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} ändrade visningsnamnet till: '{displayname}'",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} ändrade reglerna för gästaccess",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} ändrade reglerna för gästaccess till: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username} ändrade historikens synlighet",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username} ändrade historikens synlighet till: {rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username} ändrade anslutningsreglerna",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username} ändrade anslutningsreglerna till {joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} ändrade sin avatar",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} ändrade rummets alias",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username} ändrade inbjudningslänken",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "Ändra lösenord",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Ändra hemserver",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "Ändra din stil",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Ändra namn på gruppen",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Ändra bakgrund",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "Krypteringen har blivit korrupt",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Chatt",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Chatt-detaljer",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Välj ett starkt lösenord",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Välj ett användarnamn",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "close": "Stäng",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareEmojiMatch": "Vänligen jämför uttryckssymbolerna",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "Vänligen jämför siffrorna",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "Konfigurera chatt",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Bekräfta",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Anslut",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "Kontakten har blivit inbjuden till gruppen",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "Innehåller visningsnamn",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "Innehåller användarnamn",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "Innehållet har rapporterats till server-admins",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "Kopierat till urklipp",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "Kopiera",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "Kunde ej avkoda meddelande: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "{count} deltagare",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "Skapa",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "💬 {username} skapade chatten",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "createNewGroup": "Skapa ny grupp",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "För närvarande aktiv",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "Mörkt",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{day}-{month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithYear": "{year}-{month}-{day}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "deactivateAccountWarning": "Detta kommer att avaktivera ditt konto. Det här går inte att ångra! Är du säker?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "Standard behörighetsnivå",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Radera",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Ta bort konto",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Ta bort meddelande",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Neka",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Enhet",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "Enhets-ID",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Enheter",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "Direkt Chatt",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "Visningsnamn har ändrats",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Ladda ner fil",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "Ändra",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "redigera blockerade servrar",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "Ändra chatt-rättigheter",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Ändra visningsnamn",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "redigera rumsavatar",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "Dekalen existerar redan!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "Ogiltig dekal-kod!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "Dekalpaket för rummet",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Emote inställningar",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "Dekal kod",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "Du måste välja en dekal-kod och en bild!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "Tom chatt",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "Aktivera dekal-paket globalt",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "Aktivera kryptering",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "Du kommer inte ha fortsatt möjlighet till att inaktivera krypteringen. Är du säker?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "Krypterad",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "Kryptering",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "Kryptering är ej aktiverad",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName} avslutade samtalet",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "enterAGroupName": "Ange ett gruppnamn",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "Ange en e-postaddress",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourHomeserver": "Ange din hemserver",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "Extremt stötande",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "Filnamn",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "Framåt",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "Från att gå med",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "Från inbjudan",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "Grupp",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "Gruppbeskrivning",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "Gruppbeskrivningen ändrad",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "Gruppen är publik",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "Grupper",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "Gruppen med {displayname}",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "guestsAreForbidden": "Gäster är förbjudna",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "Gäster kan ansluta",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "{username} har tagit tillbaka inbjudan för {targetName}",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "help": "Hjälp",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "Göm redigerade händelser",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "Göm okända händelser",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "Hur stötande är detta innehåll?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ID",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "Identitet",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "Ignorera",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "Ignorera användare",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "Du kan ignorera användare som stör dig. Du kommer inte att ha möjlighet att få några meddelanden eller rums-inbjudningar från användare på din personliga ignoreringslista.",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "Ignorera användarnamn",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "Jag har klickat på länken",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "Felaktig lösenordsfras eller åsterställningsnyckel",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "Oförargligt",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "Bjud in kontakt",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "Bjud in kontakt till {groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "invited": "Inbjuden",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "📩 {username} bjöd in {targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invitedUsersOnly": "Endast inbjudna användare",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "Inbjudning till mig",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username} bjöd in dig till FluffyChat. \n1. Installera FluffyChat: https://fluffychat.im \n2. Registrera dig eller logga in \n3. Öppna inbjudningslänk: {link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "isTyping": "skriver…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "👋 {username} anslöt till chatten",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "joinRoom": "Anslut till rum",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "👞 {username} sparkade ut {targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "🙅 {username} sparkade och bannade {targetName}",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "Sparka från chatt",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "Senast aktiv: {localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "Sågs för längesedan",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "Lämna",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "Lämnade chatten",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "Licens",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "Ljust",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "Ladda {count} mer deltagare",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "loadingPleaseWait": "Laddar... Var god vänta.",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "Ladda mer…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "Logga in",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "Logga in till {homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "logout": "Logga ut",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "Se till att identifieraren är giltig",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "Medlemsändringar",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "Nämn",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "Meddelanden",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "Meddelandet kommer tas bort för alla deltagare",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "Moderator",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "Tysta chatt",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "Var medveten om att du behöver Pantalaimon för att använda ändpunktskryptering tillsvidare.",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "Ny chatt",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "💬 Nya meddelanden i FluffyChat",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "Ny verifikationsbegäran!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Nästa",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "Nej",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "Ingen anslutning till servern",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "Hittade inga dekaler. 😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "De ser ut som att du inte har google-tjänster på din telefon. Det är ett bra beslut för din integritet! För att få push notifikationer i FluffyChat rekommenderar vi att använda https://microg.org/ eller https://unifiedpush.org/ .",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "Ingen",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "Du har inte lagt till något sätt för att återställa ditt lösenord än.",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "Ingen behörighet",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "Hittade inga rum…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "Aviseringar",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "Notifikationer är påslaget för detta konto",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "{count} användare skriver…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "offensive": "Stötande",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "Offline",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "OK",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "Online",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "Online Nyckel-backup är aktiverad",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "Hoppsan, något gick fel…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "Öppna app för att lästa meddelanden",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "Öppna kamera",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "(Optional) Gruppnamn",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "participant": "Deltagare",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "lösenord eller återställningsnyckel",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "Lösenord",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "Glömt lösenord",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "Lösenordet har ändrats",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "Återställ lösenord",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "Välj en bild",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "Nåla fast",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "Spela {fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseChooseAPasscode": "Ange ett lösenord",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "Välj ett användarnamn",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "Klicka på länken i e-postmeddelandet för att sedan fortsätta.",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "Ange 4 siffror eller lämna tom för att inaktivera app-lås.",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "Ange ditt Matrix ID.",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "Ange ditt lösenord",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "Ange ditt användarnamn",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "Följ instruktionerna på hemsidan och tryck på nästa.",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "Integritet",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "Publika Rum",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "Push regler",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "Anledning",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "Spelar in",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "{username} redigerade en händelse",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactMessage": "Redigera meddelande",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reject": "Avböj",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "{username} avböjde inbjudan",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "rejoin": "Återanslut",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "Ta bort",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "Ta bort alla andra enheter",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "Bortagen av {username}",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeDevice": "Ta bort enhet",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "Ta bort chatt-blockering",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "Återge innehåll med rikt meddelande",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replaceRoomWithNewerVersion": "Ersätt rum med nyare version",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "Svara",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "Rapportera meddelande",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "Begär behörighet",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "Rummet har blivit uppgraderat",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "Sök",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "Säkerhet",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "Sedd av {username}",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{Sedd av {username} och {count} andra}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "seenByUserAndUser": "Sedd av {username} och {username2}",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "send": "Skicka",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAMessage": "Skicka ett meddelande",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "Skicka ljud",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "Skicka fil",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "Skicka bild",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "Skickade meddelanden",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "Skicka orginal",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "Skicka video",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "📁 {username} skickade en fil",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "🎤 {username} skickade ett ljudklipp",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "🖼️ {username} skickade en bild",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "😊 {username} skickade ett klistermärke",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "🎥 {username} skickade en video",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentCallInformations": "{senderName} skickade samtalsinformation",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "setCustomEmotes": "Ställ in anpassade dekaler",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setGroupDescription": "Ställ in gruppbeskrivning",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "Ställ in inbjudningslänk",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "Ställ in behörighetsnivå",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "Ställ in status",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "Inställningar",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "Dela",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "{username} delade sin position",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signUp": "Registrera",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "Hoppa över",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "Källkod",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "{senderName} startade ett samtal",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "status": "Status",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "Hur mår du i dag?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "Skicka in",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "System",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyDontMatch": "Dom Matchar Inte",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "Dom Matchar",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "Växla favorit",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "Växla tystad",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "Markera läst/oläst",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "För många förfrågningar. Vänligen försök senare!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "Försök att skicka igen",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "Upptagen",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "{username} avbannade {targetName}",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "unblockDevice": "Avblockera enhet",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "Okänd enhet",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEncryptionAlgorithm": "Okänd krypteringsalgoritm",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "Okänd händelse '{type}'",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "unmuteChat": "Slå på ljudet för chatten",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "Avnåla",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unreadChats": "{unreadCount, plural, =1{en oläst chatt} other{{unreadCount} olästa chattar}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "userAndOthersAreTyping": "{username} och {count} andra skriver…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "userAndUserAreTyping": "{username} och {username2} skriver…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userIsTyping": "{username} skriver…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userLeftTheChat": "🚪 {username} lämnade chatten",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "username": "Användarnamn",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userSentUnknownEvent": "{username} skickade en {type} händelse",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "verify": "Verifiera",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "Starta verifiering",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "Du har lyckats verifiera!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "Verifiera andra konton",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "Videosamtal",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "Chatt-historikens synlighet",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "Synlig för alla deltagare",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "Synlig för alla",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "Röstmeddelande",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "Väntar på att deltagaren accepterar begäran…",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "Väntar på att deltagaren accepterar emojien…",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "Väntar på att deltagaren accepterar nummer…",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "Bakgrund",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "Varning!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "Vi skickade dig ett e-postmeddelande",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "Vem kan utföra vilken åtgärd",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "Vilka som är tilllåtna att ansluta till denna grupp",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "Varför vill du rapportera detta?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "Med dessa addresser kan du återställa ditt lösenord.",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "Skriv ett meddelande…",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "Ja",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "Du",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "Du är inbjuden till denna chatt",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "Du deltar inte längre i denna chatt",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "Du kan inte bjuda in dig själv",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "Du har blivit bannad från denna chatt",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "Din publika nyckel",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "Skicka HTML-formatted text",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "commandHint_ban": "Bannlys användaren från detta rum",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "clearArchive": "Rensa arkiv",
+ "@clearArchive": {},
+ "chats": "Chatter",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "Chatt har lagts till i detta utrymme",
+ "@chatHasBeenAddedToThisSpace": {},
+ "chatBackup": "Chatt backup",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "Ändra din avatar",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "Kan inte öppna URL {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "blocked": "Blockerad",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "Hemma servern stödjer följande inloggnings typer :\n {serverVersions}\nMen denna applikation stödjer enbart:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "autoplayImages": "Automatisk spela upp animerade klistermärken och emoji",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "allChats": "Alla chattar",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "Lägg till i utrymme",
+ "@addToSpace": {},
+ "addEmail": "Lägg till e-post",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomavatar": "Sätt din bild för detta rum (by mxc-uri)",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_me": "Beskriv dig själv",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "commandHint_leave": "Lämna detta rum",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_kick": "Ta bort användare från detta rum",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_join": "Gå med i rum",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_invite": "Bjud in användaren till detta rum",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "locationPermissionDeniedNotice": "Plats åtkomst nekad. Var god godkän detta för att kunna dela din plats.",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "Platstjänster är inaktiverade. Var god aktivera dom för att kunna dela din plats.",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "Gå till det nya rummet",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "Teckensnitt storlek",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "Allt är klart!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "errorObtainingLocation": "Fel vid erhållande av plats: {error}",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "enterASpacepName": "Ange utrymmets namn",
+ "@enterASpacepName": {},
+ "editRoomAliases": "Redigera rum alias",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "Nytt utrymme",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "Kopiera till urklipp",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandMissing": "{command} är inte ett kommando.",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "commandInvalid": "Felaktigt kommando",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "commandHint_unban": "Tillåt användare i rummet",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "commandHint_send": "Skicka text",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "commandHint_react": "Skicka svar som reaktion",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_plain": "Skicka oformaterad text",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "commandHint_op": "Sätt användarens kraft nivå ( standard: 50)",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_myroomnick": "Sätt ditt användarnamn för rummet",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "noEncryptionForPublicRooms": "Du kan endast aktivera kryptering när rummet inte längre är publikt tillgängligt.",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWith": "Logga in med {brand}",
+ "@loginWith": {
+ "type": "text",
+ "placeholders": {
+ "brand": {}
+ }
+ },
+ "noMatrixServer": "{server1} är inte en matrix server, använd {server2} istället?",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "obtainingLocation": "Erhåller plats…",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "Var god välj",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "Människor",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "Eller",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "Öppna i karta",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "Oj! Tyvärr uppstod ett fel vid upprättande av push notiser.",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "Synkroniserar… Var god vänta.",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceName": "Utrymmes namn",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "Utrymme är publikt",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "Visa lösenord",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareLocation": "Dela plats",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setAsCanonicalAlias": "Sätt som primärt alias",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendSticker": "Skicka klistermärke",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "Skicka som text",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "saveFile": "Spara fil",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "Rum version",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "Ta bort din avatar",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "Registrera",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "Ange din pin-kod",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "Radera din chatt-backup för att skapa en ny återställningsnyckel?",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "Verifierad",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "Överför till annan enhet",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "shareYourInviteLink": "Dela din inbjudan",
+ "@shareYourInviteLink": {},
+ "chatBackupDescription": "Din chatt backup är skyddad av en säkerhetsnyckel. Se till att du inte förlorar den.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_create": "Skapa en tom grupp-chatt\nAnvänd --no-encryption för att inaktivera kryptering",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "commandHint_discardsession": "Kasta bort sessionen",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "commandHint_dm": "Starta en direkt-chatt\nAnvänd --no-encryption för att inaktivera kryptering",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "homeserver": "Hemserver",
+ "@homeserver": {},
+ "oneClientLoggedOut": "En av dina klienter har loggats ut",
+ "@oneClientLoggedOut": {},
+ "addAccount": "Lägg till konto",
+ "@addAccount": {},
+ "editBundlesForAccount": "Lägg till paket för detta konto",
+ "@editBundlesForAccount": {},
+ "addToBundle": "Utöka paket",
+ "@addToBundle": {},
+ "bundleName": "Paketnamn",
+ "@bundleName": {},
+ "serverRequiresEmail": "Servern behöver validera din e-postadress för registrering.",
+ "@serverRequiresEmail": {},
+ "singlesignon": "Single Sign On",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "Ej verifierad",
+ "@unverified": {},
+ "messageInfo": "Meddelandeinformation",
+ "@messageInfo": {},
+ "messageType": "Meddelandetyp",
+ "@messageType": {},
+ "time": "Tid",
+ "@time": {},
+ "sender": "Avsändare",
+ "@sender": {},
+ "removeFromSpace": "Ta bort från utrymme",
+ "@removeFromSpace": {},
+ "addToSpaceDescription": "Välj ett utrymme som chatten skall läggas till i.",
+ "@addToSpaceDescription": {},
+ "start": "Starta",
+ "@start": {},
+ "iUnderstand": "Jag förstår",
+ "@iUnderstand": {},
+ "yourStory": "Din berättelse",
+ "@yourStory": {},
+ "openGallery": "Öppna galleri",
+ "@openGallery": {},
+ "storyFrom": "Berättelse från {date}: \n{body}",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "passwordsDoNotMatch": "Lösenorden stämmer inte överens!",
+ "@passwordsDoNotMatch": {},
+ "repeatPassword": "Upprepa lösenord",
+ "@repeatPassword": {},
+ "pleaseChooseAtLeastChars": "Vänligen ange minst {min} tecken.",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "markAsRead": "Markera som läst",
+ "@markAsRead": {},
+ "commandHint_clearcache": "Rensa cache",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "openVideoCamera": "Aktivera kamera för video",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "Länk",
+ "@link": {},
+ "publish": "Publicera",
+ "@publish": {},
+ "unsubscribeStories": "Avprenumerera berättelser",
+ "@unsubscribeStories": {},
+ "replyHasBeenSent": "Svar har skickats",
+ "@replyHasBeenSent": {},
+ "videoWithSize": "Video ({size})",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "whatIsGoingOn": "Vad händer?",
+ "@whatIsGoingOn": {},
+ "addDescription": "Lägg till beskrivning",
+ "@addDescription": {},
+ "reportUser": "Rapportera användare",
+ "@reportUser": {},
+ "openChat": "Öppna Chatt",
+ "@openChat": {},
+ "sendOnEnter": "Skicka med Enter",
+ "@sendOnEnter": {},
+ "addToStory": "Addera till berättelse",
+ "@addToStory": {},
+ "pleaseEnterValidEmail": "Vänligen ange en giltig e-postadress.",
+ "@pleaseEnterValidEmail": {},
+ "scanQrCode": "Skanna QR-kod",
+ "@scanQrCode": {},
+ "bubbleSize": "Storlek på bubbla",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourChatBackupHasBeenSetUp": "Din chatt-backup har konfigurerats.",
+ "@yourChatBackupHasBeenSetUp": {},
+ "loginWithOneClick": "Logga in med ett klick",
+ "@loginWithOneClick": {},
+ "removeFromBundle": "Ta bort från paket",
+ "@removeFromBundle": {},
+ "enableMultiAccounts": "(BETA) Aktivera multi-konton på denna enhet",
+ "@enableMultiAccounts": {},
+ "whoCanSeeMyStories": "Vem kan se mina berättelser?",
+ "@whoCanSeeMyStories": {},
+ "whoCanSeeMyStoriesDesc": "Notera att användare kan se och kontakta varandra i din berättelse.",
+ "@whoCanSeeMyStoriesDesc": {},
+ "thisUserHasNotPostedAnythingYet": "Den här användaren har inte lagt till något till deras berättelse än",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "storyPrivacyWarning": "Notera att användare kan se och kontakta varandra i din berättelse. Din berättelse är synlig i 24 timmar, men det finns ingen garanti för att berättelser raderas från alla enheter och servrar.",
+ "@storyPrivacyWarning": {},
+ "emojis": "Uttryckssymboler",
+ "@emojis": {},
+ "placeCall": "Ring",
+ "@placeCall": {},
+ "voiceCall": "Röstsamtal",
+ "@voiceCall": {},
+ "unsupportedAndroidVersion": "Inget stöd för denna version av Android",
+ "@unsupportedAndroidVersion": {},
+ "videoCallsBetaWarning": "Videosamtal är för närvarande under testning. De kanske inte fungerar som det är tänkt eller på alla plattformar.",
+ "@videoCallsBetaWarning": {},
+ "unsupportedAndroidVersionLong": "Denna funktion kräver en senare version av Android.",
+ "@unsupportedAndroidVersionLong": {},
+ "dismiss": "Avfärda",
+ "@dismiss": {},
+ "matrixWidgets": "Matrix widgetar",
+ "@matrixWidgets": {},
+ "reactedWith": "{sender} reagerade med {reaction}",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "pinMessage": "Fäst i rum",
+ "@pinMessage": {},
+ "confirmEventUnpin": "Är du säker på att händelsen inte längre skall vara fastnålad?",
+ "@confirmEventUnpin": {},
+ "experimentalVideoCalls": "Experimentella videosamtal",
+ "@experimentalVideoCalls": {},
+ "switchToAccount": "Byt till konto {number}",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "nextAccount": "Nästa konto",
+ "@nextAccount": {},
+ "previousAccount": "Föregående konto",
+ "@previousAccount": {},
+ "emailOrUsername": "Användarnamn eller e-postadress",
+ "@emailOrUsername": {},
+ "addWidget": "Lägg till widget",
+ "@addWidget": {},
+ "widgetVideo": "Video",
+ "@widgetVideo": {},
+ "widgetEtherpad": "Anteckning",
+ "@widgetEtherpad": {},
+ "widgetCustom": "Anpassad",
+ "@widgetCustom": {},
+ "widgetName": "Namn",
+ "@widgetName": {},
+ "widgetUrlError": "Detta är inte en giltig URL.",
+ "@widgetUrlError": {},
+ "errorAddingWidget": "Ett fel uppstod när widgeten skulle läggas till.",
+ "@errorAddingWidget": {},
+ "editWidgets": "Redigera widgetar",
+ "@editWidgets": {},
+ "widgetJitsi": "Jitsi-möte",
+ "@widgetJitsi": {},
+ "widgetNameError": "Vänligen ange ett visningsnamn.",
+ "@widgetNameError": {},
+ "storeSecurlyOnThisDevice": "Lagra säkert på denna enhet",
+ "@storeSecurlyOnThisDevice": {},
+ "youJoinedTheChat": "Du gick med i chatten",
+ "@youJoinedTheChat": {},
+ "youAcceptedTheInvitation": "👍 Du accepterade inbjudan",
+ "@youAcceptedTheInvitation": {},
+ "youKicked": "👞 Du sparkade ut {user}",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "hugContent": "{senderName} kramar dig",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "commandHint_markasgroup": "Märk som grupp",
+ "@commandHint_markasgroup": {},
+ "recoveryKeyLost": "Borttappad återställningsnyckel?",
+ "@recoveryKeyLost": {},
+ "indexedDbErrorTitle": "Problem med privat läge",
+ "@indexedDbErrorTitle": {},
+ "youHaveWithdrawnTheInvitationFor": "Du har återkallat inbjudan till {user}",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youUnbannedUser": "Du återkallade förbudet för {user}",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unlockOldMessages": "Lås upp äldre meddelanden",
+ "@unlockOldMessages": {},
+ "newSpace": "Nytt utrymme",
+ "@newSpace": {},
+ "googlyEyesContent": "{senderName} skickar dig googly ögon",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "dehydrate": "Exportera sessionen och rensa enheten",
+ "@dehydrate": {},
+ "dehydrateWarning": "Denna åtgärd kan inte ångras. Försäkra dig om att backupen är i säkert förvar.",
+ "@dehydrateWarning": {},
+ "dehydrateTor": "TOR-användare: Exportera session",
+ "@dehydrateTor": {},
+ "hydrateTor": "TOR-användare: Importera session från tidigare export",
+ "@hydrateTor": {},
+ "hydrateTorLong": "Exporterade du sessionen när du senast använde TOR? Importera den enkelt och fortsätt chatta.",
+ "@hydrateTorLong": {},
+ "recoveryKey": "Återställningsnyckel",
+ "@recoveryKey": {},
+ "separateChatTypes": "Separata direktchattar och grupper",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showDirectChatsInSpaces": "Visa relaterade direktchattar i utrymmen",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "Starta din första chatt",
+ "@startFirstChat": {},
+ "pleaseEnterRecoveryKeyDescription": "Ange din återställningsnyckel från en tidigare session för att låsa upp äldre meddelanden. Din återställningsnyckel är INTE ditt lösenord.",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "encryptThisChat": "Kryptera denna chatt",
+ "@encryptThisChat": {},
+ "enterInviteLinkOrMatrixId": "Ange länk för inbjudan eller Matrix-ID...",
+ "@enterInviteLinkOrMatrixId": {},
+ "dehydrateTorLong": "TOR-användare rekommenderas att exportera sessionen innan fönstret stängs.",
+ "@dehydrateTorLong": {},
+ "noBackupWarning": "Varning! Om du inte aktiverar säkerhetskopiering av chattar så tappar du åtkomst till krypterade meddelanden. Det är rekommenderat att du aktiverar säkerhetskopiering innan du loggar ut.",
+ "@noBackupWarning": {},
+ "noOtherDevicesFound": "Inga andra enheter hittades",
+ "@noOtherDevicesFound": {},
+ "endToEndEncryption": "Totalsträckskryptering",
+ "@endToEndEncryption": {},
+ "disableEncryptionWarning": "Av säkerhetsskäl kan du inte stänga av kryptering i en chatt där det tidigare aktiverats.",
+ "@disableEncryptionWarning": {},
+ "sorryThatsNotPossible": "Det där är inte möjligt",
+ "@sorryThatsNotPossible": {},
+ "confirmMatrixId": "Bekräfta ditt Matrix-ID för att radera ditt konto.",
+ "@confirmMatrixId": {},
+ "updateAvailable": "FluffyChat-uppdatering tillgänglig",
+ "@updateAvailable": {},
+ "updateNow": "Påbörja uppdatering i bakgrunden",
+ "@updateNow": {},
+ "supposedMxid": "Detta bör vara {mxid}",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "pleaseEnterRecoveryKey": "Ange din återställningsnyckel:",
+ "@pleaseEnterRecoveryKey": {},
+ "commandHint_markasdm": "Märk som rum för direktmeddelanden",
+ "@commandHint_markasdm": {},
+ "noEmailWarning": "Utan en giltig e-postadress kommer du inte kunna återställa ditt lösenord. Om du inte vill ange en e-postadress, tryck på knappen igen för att fortsätta.",
+ "@noEmailWarning": {},
+ "user": "Användare",
+ "@user": {},
+ "indexedDbErrorLong": "Meddelandelagring är tyvärr inte aktiverat i privat läge som standard.\nGå till\n - about:config\n - sätt dom.indexedDB.privateBrowsing.enabled till true\nAnnars går det inte att använda FluffyChat.",
+ "@indexedDbErrorLong": {},
+ "storeInSecureStorageDescription": "Lagra återställningsnyckeln på säker plats på denna enhet.",
+ "@storeInSecureStorageDescription": {},
+ "storeInAppleKeyChain": "Lagra i Apples nyckelkedja (KeyChain)",
+ "@storeInAppleKeyChain": {},
+ "foregroundServiceRunning": "Denna notifikation visas när förgrundstjänsten körs.",
+ "@foregroundServiceRunning": {},
+ "custom": "Anpassad",
+ "@custom": {},
+ "countFiles": "{count} filer",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "screenSharingTitle": "skärmdelning",
+ "@screenSharingTitle": {},
+ "noKeyForThisMessage": "Detta kan hända om meddelandet skickades innan du loggade in på ditt konto i den här enheten.\n\nDet kan också vara så att avsändaren har blockerat din enhet eller att något gick fel med internetanslutningen.\n\nKan du läsa meddelandet i en annan session? I sådana fall kan du överföra meddelandet från den sessionen! Gå till Inställningar > Enhet och säkerställ att dina enheter har verifierat varandra. När du öppnar rummet nästa gång och båda sessionerna är i förgrunden, så kommer nycklarna att överföras automatiskt.\n\nVill du inte förlora nycklarna vid utloggning eller när du byter enhet? Säkerställ att du har aktiverat säkerhetskopiering för chatten i inställningarna.",
+ "@noKeyForThisMessage": {},
+ "fileIsTooBigForServer": "Servern informerar om att filen är för stor för att skickas.",
+ "@fileIsTooBigForServer": {},
+ "deviceKeys": "Enhetsnycklar:",
+ "@deviceKeys": {},
+ "enterSpace": "Gå till utrymme",
+ "@enterSpace": {},
+ "commandHint_googly": "Skicka några googly ögon",
+ "@commandHint_googly": {},
+ "commandHint_cuddle": "Skicka en omfamning",
+ "@commandHint_cuddle": {},
+ "commandHint_hug": "Skicka en kram",
+ "@commandHint_hug": {},
+ "users": "Användare",
+ "@users": {},
+ "cuddleContent": "{senderName} omfamnar dig",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "hydrate": "Återställ från säkerhetskopia",
+ "@hydrate": {},
+ "screenSharingDetail": "Du delar din skärm i FluffyChat",
+ "@screenSharingDetail": {},
+ "letsStart": "Lås oss börja",
+ "@letsStart": {},
+ "youRejectedTheInvitation": "Du avvisade inbjudan",
+ "@youRejectedTheInvitation": {},
+ "youBannedUser": "Du förbjöd {user}",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youInvitedBy": "📩 Du har blivit inbjuden av {user}",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youInvitedUser": "📩 Du bjöd in {user}",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "youKickedAndBanned": "🙅 Du sparkade ut och förbjöd {user}",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "stories": "Berättelser",
+ "@stories": {},
+ "saveKeyManuallyDescription": "Spara nyckeln manuellt genom att aktivera dela-funktionen eller urklippshanteraren på enheten.",
+ "@saveKeyManuallyDescription": {},
+ "storeInAndroidKeystore": "Lagra i Androids nyckellagring (KeyStore)",
+ "@storeInAndroidKeystore": {},
+ "callingPermissions": "Samtalsbehörighet",
+ "@callingPermissions": {},
+ "callingAccount": "Samtalskonto",
+ "@callingAccount": {},
+ "callingAccountDetails": "Tillåt FluffyChat att använda Androids ring-app.",
+ "@callingAccountDetails": {},
+ "appearOnTop": "Visa ovanpå",
+ "@appearOnTop": {},
+ "appearOnTopDetails": "Tillåt att appen visas ovanpå (behövs inte om du redan har FluffyChat konfigurerat som ett samtalskonto)",
+ "@appearOnTopDetails": {},
+ "otherCallingPermissions": "Mikrofon, kamera och andra behörigheter för FluffyChat",
+ "@otherCallingPermissions": {},
+ "whyIsThisMessageEncrypted": "Varför kan inte detta meddelande läsas?",
+ "@whyIsThisMessageEncrypted": {},
+ "newGroup": "Ny grupp",
+ "@newGroup": {},
+ "enterRoom": "Gå till rummet",
+ "@enterRoom": {},
+ "allSpaces": "Alla utrymmen",
+ "@allSpaces": {},
+ "numChats": "{number} chattar",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "hideUnimportantStateEvents": "Göm oviktiga tillståndshändelser",
+ "@hideUnimportantStateEvents": {},
+ "doNotShowAgain": "Visa inte igen",
+ "@doNotShowAgain": {},
+ "wasDirectChatDisplayName": "Tom chatt (var {oldDisplayName})",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "newSpaceDescription": "Utrymmen möjliggör konsolidering av chattar och att bygga privata eller offentliga gemenskaper.",
+ "@newSpaceDescription": {},
+ "reopenChat": "Återöppna chatt",
+ "@reopenChat": {},
+ "jumpToLastReadMessage": "Hoppa till det senast lästa meddelandet",
+ "@jumpToLastReadMessage": {},
+ "readUpToHere": "Läs upp till hit",
+ "@readUpToHere": {},
+ "fileHasBeenSavedAt": "Filen har sparats i {path}",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "tryAgain": "",
+ "@tryAgain": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "report": "",
+ "@report": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "importEmojis": "",
+ "@importEmojis": {},
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "replace": "",
+ "@replace": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "invite": "",
+ "@invite": {},
+ "continueWith": "",
+ "@continueWith": {}
+}
diff --git a/assets/l10n/intl_ta.arb b/assets/l10n/intl_ta.arb
index 8befa5210..4f1ff4472 100644
--- a/assets/l10n/intl_ta.arb
+++ b/assets/l10n/intl_ta.arb
@@ -1,20 +1,2621 @@
{
- "@@last_modified": "2021-08-14 12:41:09.826673",
- "acceptedTheInvitation": "{username} அழைப்பை ஏற்றுக்கொண்டார்",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "accept": "ஏற்றுக்கொள்",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "about": "பற்றி",
- "@about": {
- "type": "text",
- "placeholders": {}
+ "@@last_modified": "2021-08-14 12:41:09.826673",
+ "acceptedTheInvitation": "{username} அழைப்பை ஏற்றுக்கொண்டார்",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
}
-}
\ No newline at end of file
+ },
+ "accept": "ஏற்றுக்கொள்",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "about": "பற்றி",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "darkTheme": "",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "close": "",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "device": "",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "editDisplayname": "",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "banFromChat": "",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "askSSSSSign": "",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "changedTheChatDescriptionTo": "",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "countParticipants": "",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "areGuestsAllowedToJoin": "",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "dateWithoutYear": "",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "couldNotDecryptMessage": "",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheGuestAccessRules": "",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "dateWithYear": "",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "create": "",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "all": "",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "chatBackup": "",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "compareEmojiMatch": "",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomAliases": "",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "help": "",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "chatDetails": "",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "delete": "",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatPermissions": "",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeWallpaper": "",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "changedTheChatNameTo": "",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "account": "",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "openCamera": "",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "chat": "",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheProfileAvatar": "",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "allChats": "",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "badServerVersionsException": "",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "",
+ "@addToSpace": {},
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "chooseAStrongPassword": "",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "activatedEndToEndEncryption": "",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "fluffychat": "",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "cancel": "",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "appLock": "",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "copiedToClipboard": "",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "confirm": "",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "dateAndTimeOfDay": "",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "logout": "",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "contactHasBeenInvitedToTheGroup": "",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "bannedUser": "",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "askVerificationRequest": "",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "changeTheHomeserver": "",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "changePassword": "",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "chooseAUsername": "",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanJoin": "",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "placeCall": "",
+ "@placeCall": {},
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ }
+}
diff --git a/assets/l10n/intl_th.arb b/assets/l10n/intl_th.arb
index 9e26dfeeb..eb7291df0 100644
--- a/assets/l10n/intl_th.arb
+++ b/assets/l10n/intl_th.arb
@@ -1 +1,2620 @@
-{}
\ No newline at end of file
+{
+ "hugContent": "{senderName} กอดคุณ",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "commandHint_cuddle": "ส่งเคล้าเคลียให้",
+ "@commandHint_cuddle": {},
+ "admin": "แอดมิน",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "supposedMxid": "อันนี้ควรเป็น {mxid}",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "askSSSSSign": "เพื่อให้สามารถลงนามบุคคลอื่นได้ โปรดป้อนรหัสผ่านร้านค้าที่ปลอดภัยหรือรหัสกู้คืนของคุณ",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "ลบออก",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "ผู้ใช้ทั่วไปได้รับอนุญาตให้เข้าร่วมหรือไม่",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "กรุณาใส่อีเมล์ที่ถูกต้อง",
+ "@pleaseEnterValidEmail": {},
+ "sendOnEnter": "ส่งเมื่อกด enter",
+ "@sendOnEnter": {},
+ "answeredTheCall": "{senderName} รับสายแล้ว",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "pleaseChooseAtLeastChars": "กรุณาใส่รหัสอย่างน้อย {min} ตัว",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "alias": "นามแฝง",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "ทั้งหมด",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerLoginTypesException": "โฮมเซิร์ฟเวอร์รองรับประเภทการเข้าสู่ระบบ:\n{serverVersions}\nแต่แอปนี้รองรับเฉพาะ:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "updateNow": "เริ่มการอัปเดตในเบื้องหลัง",
+ "@updateNow": {},
+ "edit": "แก้ไข",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "คัดลอก",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "นำเข้าจากไฟล์ .zip",
+ "@importFromZipFile": {},
+ "autoplayImages": "เล่นสติ๊กเกอร์และอิโมจิแบบเคลื่อนไหวโดยอัตโนมัติ",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "updateAvailable": "มีการอัปเดต FluffyChat แล้ว",
+ "@updateAvailable": {},
+ "help": "ช่วยเหลือ",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "รายละเอียดแชท",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "ใส่รหัสผ่านอีกรอบ",
+ "@repeatPassword": {},
+ "delete": "ลบออก",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "👍 {username} ได้รับการชวนแล้ว",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "send": "ส่ง",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "exportEmotePack": "ส่งอิโมจิแพ็คออกเป็นไฟล์ .zip",
+ "@exportEmotePack": {},
+ "account": "บัญชี",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "savedEmotePack": "บันท฿กแพ็คอิโมจิไว้ที่ {path}!",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "chat": "แชท",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "คุณแน่ใจไหม?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "แชททั้งหมด",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordsDoNotMatch": "รหัสผ่านของคุณไม่ตรงกัน",
+ "@passwordsDoNotMatch": {},
+ "addToSpace": "เพิ่มไปที่ space",
+ "@addToSpace": {},
+ "importZipFile": "นำเข้าไฟล์ .zip",
+ "@importZipFile": {},
+ "about": "เกี่ยวกับ",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "🔐 {username} เปิดใช้งาน end to end encryption",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "googlyEyesContent": "{senderName} ส่งตากวนๆให้คุณ",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addChatDescription": "เพิ่มคำอธิบายการแชท",
+ "@addChatDescription": {},
+ "appLock": "ล็อคแอป",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendTypingNotifications": "ส่งการแจ้งเตือนการพิมพ์",
+ "@sendTypingNotifications": {},
+ "importEmojis": "นำเข้าอ๊โมจิ",
+ "@importEmojis": {},
+ "confirmMatrixId": "กรุณายืนยัน Matrix ID ของคุณเพื่อลบบัญชีของคุณ",
+ "@confirmMatrixId": {},
+ "notAnImage": "ไม่ใช่ไฟล์รูปภาพ",
+ "@notAnImage": {},
+ "areYouSureYouWantToLogout": "คุณแน่ใจว่าคุณต้องการที่จะออกจากระบบ?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cuddleContent": "{senderName} เคล้าเคลียคุณ",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "askVerificationRequest": "ยอมรับคำขอยืนยันนี้จาก {username} หรือไม่",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addEmail": "เพิ่มอีเมล",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_hug": "ส่งกอดให้",
+ "@commandHint_hug": {},
+ "replace": "แทนที่",
+ "@replace": {},
+ "archive": "คลังเก็บ",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "ยอมรับ",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "ส่งสายตากวนๆ มาให้หน่อย",
+ "@commandHint_googly": {},
+ "pin": "ปักหมุด",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "นำเข้าเลย",
+ "@importNow": {},
+ "anyoneCanJoin": "ใครๆ ก็สามารถเข้าร่วมได้",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "close": "",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "device": "",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "editDisplayname": "",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "banFromChat": "",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "changedTheChatDescriptionTo": "",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "countParticipants": "",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "blocked": "",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "dateWithoutYear": "",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "couldNotDecryptMessage": "",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "next": "",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheGuestAccessRules": "",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "dateWithYear": "",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "create": "",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "chatBackup": "",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "compareEmojiMatch": "",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomAliases": "",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatPermissions": "",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeWallpaper": "",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "changedTheChatNameTo": "",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "placeCall": "",
+ "@placeCall": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "emoteSettings": "",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "openCamera": "",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheProfileAvatar": "",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "badServerVersionsException": "",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "chooseAStrongPassword": "",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "cancel": "",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "copiedToClipboard": "",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "confirm": "",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "dateAndTimeOfDay": "",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "logout": "",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "contactHasBeenInvitedToTheGroup": "",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "bannedUser": "",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "changeTheHomeserver": "",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "chatBackupDescription": "",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "deactivateAccountWarning": "",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "changePassword": "",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "chooseAUsername": "",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ }
+}
diff --git a/assets/l10n/intl_tr.arb b/assets/l10n/intl_tr.arb
index 2d4dd11a7..3d2ecf6a4 100644
--- a/assets/l10n/intl_tr.arb
+++ b/assets/l10n/intl_tr.arb
@@ -2617,5 +2617,45 @@
"placeholders": {
"seconds": {}
}
- }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_uk.arb b/assets/l10n/intl_uk.arb
index dfac06603..b9f379f9d 100644
--- a/assets/l10n/intl_uk.arb
+++ b/assets/l10n/intl_uk.arb
@@ -736,7 +736,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "Схоже, на вашому телефоні немає служб Google. Це гарне рішення для вашої приватності! Щоб отримувати push-сповіщення у FluffyChat, ми радимо використовувати https://microg.org/ або https://unifiedpush.org/.",
+ "noGoogleServicesWarning": "Схоже, Firebase Cloud Messaging недоступна на вашому пристрої. Щоб отримувати push-сповіщення, радимо встановити ntfy. За допомогою ntfy або іншого постачальника Unified Push ви можете отримувати push-сповіщення у безпечний спосіб. Ви можете завантажити ntfy з PlayStore або з F-Droid.",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -2619,5 +2619,45 @@
"placeholders": {
"seconds": {}
}
- }
+ },
+ "banUserDescription": "Користувача буде заблоковано в бесіді, і він не зможе знову увійти в неї, поки його не буде розблоковано.",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "Ви вийдете з цього пристрою і більше не зможете отримувати повідомлення.",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "Користувач зможе знову увійти в бесіду, якщо спробує.",
+ "@unbanUserDescription": {},
+ "todoLists": "(Бета) Завдання",
+ "@todoLists": {},
+ "editTodo": "Змінити завдання",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "Push-сповіщення недоступні",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "Додайте заголовок",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "Після того, як ви зробите цього користувача адміністратором, ви, можливо, не зможете це скасувати, оскільки він матиме ті самі права, що й ви.",
+ "@makeAdminDescription": {},
+ "noTodosYet": "До цієї бесіди ще не додано жодного завдання. Створіть своє перше завдання і почніть співпрацювати з іншими. 📝",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "Бесіду буде переміщено до архіву. Інші користувачі зможуть побачити, що ви вийшли з неї.",
+ "@archiveRoomDescription": {},
+ "todosUnencrypted": "Зауважте, що завдання бачать усі учасники бесіди, і вони не захищені наскрізним шифруванням.",
+ "@todosUnencrypted": {},
+ "hasKnocked": "{user} стукає до вас",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newTodo": "Нове завдання",
+ "@newTodo": {},
+ "learnMore": "Докладніше",
+ "@learnMore": {},
+ "todoListChangedError": "Отакої... Список завдань було змінено, поки ви його редагували.",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "Після цього бесіду буде відтворено з новою версією кімнати. Усі учасники отримають сповіщення, що їм потрібно перейти до нової бесіди. Ви можете дізнатися більше про версії кімнат на https://spec.matrix.org/latest/rooms/",
+ "@roomUpgradeDescription": {},
+ "pleaseEnterANumber": "Введіть число більше ніж 0",
+ "@pleaseEnterANumber": {},
+ "kickUserDescription": "Користувача вигнали з бесіди, але не заблокували. До загальнодоступних бесід користувач може приєднатися будь-коли.",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_vi.arb b/assets/l10n/intl_vi.arb
index 072271a81..b15308bdb 100644
--- a/assets/l10n/intl_vi.arb
+++ b/assets/l10n/intl_vi.arb
@@ -1,452 +1,2631 @@
{
- "@@last_modified": "2021-08-14 12:41:09.781172",
- "about": "Giới thiệu",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "Đồng ý",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username} đã đồng ý lời mời",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "Tài khoản",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "{username} đã kích hoạt mã hóa đầu cuối 2 chiều",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addGroupDescription": "Thêm mô tả cho nhóm",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "Quản trị viên",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "bí danh",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "{senderName} đã trả lời cuộc gọi",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "Mọi người đều có thể gia nhập",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "Lưu trữ",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "Khách vãng lai có được tham gia không",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "Bạn chắc chứ?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "blockDevice": "Thiết bị bị chặn",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "verified": "Đã xác thực",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "Chuyển từ thiết bị khác",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "showPassword": "Hiển thị mật khẩu",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "Vui lòng làm theo hướng dẫn trên trang web và bấm tiếp",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "Bạn chỉ có thể kích hoạt mã hoá khi phòng này không mở",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "next": "Tiếp",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "Mọi thứ đã sẵn sàng!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "Cài đặt biểu tượng cảm xúc",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "Sửa tên hiển thị",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "Tải ảnh xuống",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "Tên hiển thị đã được thay đổi",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "Các thiết bị",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "Mã xác định thiết bị",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "device": "Thiết bị",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "Từ chối",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "Xoá tin nhắn",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "Xoá tài khoản",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "Xoá",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deactivateAccountWarning": "Việc này sẽ vô hiệu hoá tài khoản của bạn. Điều này không thể đảo ngược được! Bạn chắc là vẫn muốn tiếp tục chứ?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "dateWithYear": "{day}/{month}/{year}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "dateWithoutYear": "{day}/{month}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "currentlyActive": "Đang hoạt động",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "createNewGroup": "Tạo một nhóm mới",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "{username} đã tạo cuộc trò chuyện",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "create": "Tạo",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "countParticipants": "{count} thành viên",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "couldNotDecryptMessage": "Không thể giải mã tin nhắn: {error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "copy": "Sao chép",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "Liên hệ đã được mời vào nhóm",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "Kết nối",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "Xác nhận",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "So sánh và đảm bảo các số sau đây giống trên máy còn lại",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareEmojiMatch": "So sánh và đảm bảo các biểu tượng cảm xúc sau đây giống với các biểu tượng trên máy còn lại",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "close": "Đóng",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "Chọn tên người dùng",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "Chọn một mật khẩu mạnh",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "Chi tiết cuộc trò chuyện",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "Bản sao lưu cuộc trò chuyện của bạn được bảo mật bằng một khoá bảo mật. Bạn đừng làm mất nó.",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackup": "Sao lưu cuộc trò chuyện",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "Chat",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "Thay hình nền",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "Thay đổi tên nhóm",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "Thay đổi máy chủ nhà",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changePassword": "Thay đổi mật khẩu",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheRoomInvitationLink": "{username} đã thay đổi đường dẫn mời",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username} đã đổi địa chỉ phòng chat",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheProfileAvatar": "{username} đã thay đổi ảnh đại diện của mình",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username} đã thay đổi quy tắc truy cập đối với khách thành: {rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheGuestAccessRules": "{username} đã thay đổi quy tắc truy cập đối với khách",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatPermissions": "{username} đã thay đổi quyền trong phòng chat",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatNameTo": "{username} đã thay đổi tên phòng chat thành: '{chatname}'",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatDescriptionTo": "{username} đã thay đổi mô tả phòng chat thành: '{description}'",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatAvatar": "{username} đã thay đổi ảnh phòng chat",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changeDeviceName": "Thay đổi tên thiết bị",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "Hủy",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "Đã chặn",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username} đã cấm {targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "banned": "Đã bị cấm",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "banFromChat": "Cấm khỏi cuộc trò chuyện",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "badServerVersionsException": "Máy chủ nhà hỗ trợ Spec phiên bản:\n{serverVerions}\nNhưng ứng dụng này chỉ hỗ trợ {supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "badServerLoginTypesException": "Máy chủ nhà hỗ trợ kiểu đăng nhập:\n{serverVersions}\nNhưng ứng dụng này chỉ hỗ trợ:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "askVerificationRequest": "Bạn có đồng ý yêu cầu chứng thực từ {username} không?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "areYouSureYouWantToLogout": "Bạn có chắc bạn muốn đăng xuất không?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "addEmail": "Thêm email",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
+ "@@last_modified": "2021-08-14 12:41:09.781172",
+ "about": "Giới thiệu",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "Đồng ý",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username} đã đồng ý lời mời",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
}
-}
\ No newline at end of file
+ },
+ "account": "Tài khoản",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "{username} đã kích hoạt mã hóa đầu cuối 2 chiều",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addGroupDescription": "Thêm mô tả cho nhóm",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "Quản trị viên",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "bí danh",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "{senderName} đã trả lời cuộc gọi",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "Mọi người đều có thể gia nhập",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "Lưu trữ",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "Khách vãng lai có được tham gia không",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "Bạn chắc chứ?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blockDevice": "Thiết bị bị chặn",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verified": "Đã xác thực",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "Chuyển từ thiết bị khác",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "showPassword": "Hiển thị mật khẩu",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "Vui lòng làm theo hướng dẫn trên trang web và bấm tiếp",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "Bạn chỉ có thể kích hoạt mã hoá khi phòng này không mở",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "Tiếp",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "Mọi thứ đã sẵn sàng!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "Cài đặt biểu tượng cảm xúc",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "Sửa tên hiển thị",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "Tải ảnh xuống",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "Tên hiển thị đã được thay đổi",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "Các thiết bị",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "Mã xác định thiết bị",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "Thiết bị",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "Từ chối",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "Xoá tin nhắn",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "Xoá tài khoản",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "Xoá",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deactivateAccountWarning": "Việc này sẽ vô hiệu hoá tài khoản của bạn. Điều này không thể đảo ngược được! Bạn chắc là vẫn muốn tiếp tục chứ?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateWithYear": "{day}/{month}/{year}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithoutYear": "{day}/{month}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "currentlyActive": "Đang hoạt động",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewGroup": "Tạo một nhóm mới",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "{username} đã tạo cuộc trò chuyện",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "create": "Tạo",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countParticipants": "{count} thành viên",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "couldNotDecryptMessage": "Không thể giải mã tin nhắn: {error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "copy": "Sao chép",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "Liên hệ đã được mời vào nhóm",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "Kết nối",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "Xác nhận",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "So sánh và đảm bảo các số sau đây giống trên máy còn lại",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareEmojiMatch": "So sánh và đảm bảo các biểu tượng cảm xúc sau đây giống với các biểu tượng trên máy còn lại",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "close": "Đóng",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "Chọn tên người dùng",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "Chọn một mật khẩu mạnh",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "Chi tiết cuộc trò chuyện",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "Bản sao lưu cuộc trò chuyện của bạn được bảo mật bằng một khoá bảo mật. Bạn đừng làm mất nó.",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackup": "Sao lưu cuộc trò chuyện",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "Chat",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "Thay hình nền",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "Thay đổi tên nhóm",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "Thay đổi máy chủ nhà",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changePassword": "Thay đổi mật khẩu",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheRoomInvitationLink": "{username} đã thay đổi đường dẫn mời",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username} đã đổi địa chỉ phòng chat",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username} đã thay đổi ảnh đại diện của mình",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username} đã thay đổi quy tắc truy cập đối với khách thành: {rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username} đã thay đổi quy tắc truy cập đối với khách",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatPermissions": "{username} đã thay đổi quyền trong phòng chat",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatNameTo": "{username} đã thay đổi tên phòng chat thành: '{chatname}'",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username} đã thay đổi mô tả phòng chat thành: '{description}'",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatAvatar": "{username} đã thay đổi ảnh phòng chat",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changeDeviceName": "Thay đổi tên thiết bị",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "Hủy",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "Đã chặn",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username} đã cấm {targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "banned": "Đã bị cấm",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banFromChat": "Cấm khỏi cuộc trò chuyện",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "badServerVersionsException": "Máy chủ nhà hỗ trợ Spec phiên bản:\n{serverVerions}\nNhưng ứng dụng này chỉ hỗ trợ {supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "badServerLoginTypesException": "Máy chủ nhà hỗ trợ kiểu đăng nhập:\n{serverVersions}\nNhưng ứng dụng này chỉ hỗ trợ:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "askVerificationRequest": "Bạn có đồng ý yêu cầu chứng thực từ {username} không?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "areYouSureYouWantToLogout": "Bạn có chắc bạn muốn đăng xuất không?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addEmail": "Thêm email",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "ok": "",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordsDoNotMatch": "",
+ "@passwordsDoNotMatch": {},
+ "sharedTheLocation": "",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "unbanFromChat": "",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "darkTheme": "",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "chats": "",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "unknownDevice": "",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "directChats": "",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "addAccount": "",
+ "@addAccount": {},
+ "configureChat": "",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUserAndUser": "",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "chatHasBeenAddedToThisSpace": "",
+ "@chatHasBeenAddedToThisSpace": {},
+ "reply": "",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "youAreNoLongerParticipatingInThisChat": "",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "toggleMuted": "",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "title": "",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "requestPermission": "",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAPicture": "",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "invited": "",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "commandHint_create": "",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "youAreInvitedToThisChat": "",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "roomVersion": "",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCall": "",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "openAppToReadMessages": "",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAVideo": "",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "inviteContact": "",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requests": "",
+ "@requests": {},
+ "askSSSSSign": "",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "remove": "",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "stories": "",
+ "@stories": {},
+ "id": "",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeDevice": "",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterValidEmail": "",
+ "@pleaseEnterValidEmail": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "pleaseClickOnLink": "",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOnEnter": "",
+ "@sendOnEnter": {},
+ "seenByUserAndCountOthers": "",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "invitedUsersOnly": "",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "pleaseChooseAtLeastChars": "",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "editRoomAliases": "",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "unavailable": "",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "previousAccount": "",
+ "@previousAccount": {},
+ "publicRooms": "",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "toggleFavorite": "",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "inoffensive": "",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToBundle": "",
+ "@addToBundle": {},
+ "reportMessage": "",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "all": "",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unblockDevice": "",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "enableEncryptionWarning": "",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "passwordRecovery": "",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "replaceRoomWithNewerVersion": "",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "voiceMessage": "",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cantOpenUri": "",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "optionalGroupName": "",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "ignoredUsers": "",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "weSentYouAnEmail": "",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offensive": "",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "edit": "",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "goToTheNewRoom": "",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_clearcache": "",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "none": "",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "renderRichContent": "",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "rejectedTheInvitation": "",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "userLeftTheChat": "",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "sendOriginal": "",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "whoIsAllowedToJoinThisGroup": "",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "yourChatBackupHasBeenSetUp": "",
+ "@yourChatBackupHasBeenSetUp": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "submit": "",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "unmuteChat": "",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "autoplayImages": "",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "participant": "",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "yes": "",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "username": "",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "help": "",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "people": "",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheHistoryVisibilityTo": "",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "leftTheChat": "",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "repeatPassword": "",
+ "@repeatPassword": {},
+ "setStatus": "",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "newMessageInFluffyChat": "",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "identity": "",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "changedTheJoinRulesTo": "",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "ignore": "",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "recording": "",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "channelCorruptedDecryptError": "",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "send": "",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "visibleForAllParticipants": "",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "inviteForMe": "",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "removedBy": "",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "newChat": "",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "openCamera": "",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "guestsAreForbidden": "",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "emoteExists": "",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "group": "",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "roomHasBeenUpgraded": "",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterRoom": "",
+ "@enterRoom": {},
+ "enableEmotesGlobally": "",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAPasscode": "",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportUser": "",
+ "@reportUser": {},
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "unbannedUser": "",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "kickedAndBanned": "",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "noConnectionToTheServer": "",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "license": "",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "",
+ "@addToSpace": {},
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "rejoin": "",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "redactMessage": "",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_discardsession": "",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "invalidInput": "",
+ "@invalidInput": {},
+ "hideUnknownEvents": "",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "yourPublicKey": "",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomnick": "",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "offline": "",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "noPermission": "",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "status": "",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourStory": "",
+ "@yourStory": {},
+ "memberChanges": "",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinRoom": "",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unverified": "",
+ "@unverified": {},
+ "fluffychat": "",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "theyDontMatch": "",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "youHaveBeenBannedFromThisChat": "",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "sentAnAudio": "",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "editRoomAvatar": "",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_leave": "",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomavatar": "",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "clearArchive": "",
+ "@clearArchive": {},
+ "appLock": "",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "changedTheHistoryVisibility": "",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "pleaseEnterYourUsername": "",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "lightTheme": "",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "verifyTitle": "",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "enterAnEmailAddress": "",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceCall": "",
+ "@voiceCall": {},
+ "commandHint_kick": "",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "copiedToClipboard": "",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_unban": "",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "unknownEncryptionAlgorithm": "",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "defaultPermissionLevel": "",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "numUsersTyping": "",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "fontSize": "",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "iHaveClickedOnLink": "",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "search": "",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "commandHint_join": "",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "sourceCode": "",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAGroupName": "",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "commandHint_invite": "",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "userSentUnknownEvent": "",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "changedTheJoinRules": "",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "groups": "",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "loadCountMoreParticipants": "",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "messages": "",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setCustomEmotes": "",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "emoteInvalid": "",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "notificationsEnabledForThisAccount": "",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "wallpaper": "",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "security": "",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "markAsRead": "",
+ "@markAsRead": {},
+ "sendAudio": "",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "widgetName": "",
+ "@widgetName": {},
+ "sentASticker": "",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_dm": "",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "reject": "",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "joinedTheChat": "",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "visibleForEveryone": "",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "unknownEvent": "",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "emojis": "",
+ "@emojis": {},
+ "signUp": "",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "privacy": "",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeYourAvatar": "",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "enterYourHomeserver": "",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "fromJoining": "",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "sendAMessage": "",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importNow": "",
+ "@importNow": {},
+ "setInvitationLink": "",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pinMessage": "",
+ "@pinMessage": {},
+ "muteChat": "",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "emotePacks": "",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "pleaseChooseAUsername": "",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "changedTheDisplaynameTo": "",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "unreadChats": "",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "pleaseEnterAMatrixIdentifier": "",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userAndOthersAreTyping": "",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "userIsTyping": "",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "waitingPartnerAcceptRequest": "",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userAndUserAreTyping": "",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "pickImage": "",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadingPleaseWait": "",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "isTyping": "",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentCallInformations": "",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "encryptionNotEnabled": "",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logout": "",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "placeCall": "",
+ "@placeCall": {},
+ "noGoogleServicesWarning": "",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ }
+}
diff --git a/assets/l10n/intl_zh.arb b/assets/l10n/intl_zh.arb
index 586a5c9ff..676ca3aa6 100644
--- a/assets/l10n/intl_zh.arb
+++ b/assets/l10n/intl_zh.arb
@@ -1123,7 +1123,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "看起来你手机上没有谷歌服务框架。这对保护你的隐私而言是个好决定!要接收 FluffyChat 的推送通知,推荐你使用 https://microg.org/ 或 https://unifiedpush.org/。",
+ "noGoogleServicesWarning": "看起来你手机上没有 Firebase Cloud Messaging。如果仍希望接收 FluffyChat 的推送通知,推荐安装 ntfy。借助 ntfy 或另一个 Unified Push 程序,你可以以一种数据安全的方式接收推送通知。你可以从 PlayStore 或 F-Droid 商店下载 ntfy。",
"@noGoogleServicesWarning": {
"type": "text",
"placeholders": {}
@@ -2617,5 +2617,45 @@
"placeholders": {
"seconds": {}
}
- }
+ },
+ "hasKnocked": "{user} 请求了加入聊天室的邀请",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "pleaseEnterANumber": "请输入大于 0 的数",
+ "@pleaseEnterANumber": {},
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {}
}
diff --git a/assets/l10n/intl_zh_Hant.arb b/assets/l10n/intl_zh_Hant.arb
index 7cadeeb3d..5bfc25f37 100644
--- a/assets/l10n/intl_zh_Hant.arb
+++ b/assets/l10n/intl_zh_Hant.arb
@@ -1,1919 +1,2651 @@
{
- "@@last_modified": "2021-08-14 12:41:09.708353",
- "about": "關於",
- "@about": {
- "type": "text",
- "placeholders": {}
- },
- "accept": "接受",
- "@accept": {
- "type": "text",
- "placeholders": {}
- },
- "acceptedTheInvitation": "{username}已接受邀請",
- "@acceptedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "account": "帳號",
- "@account": {
- "type": "text",
- "placeholders": {}
- },
- "activatedEndToEndEncryption": "{username}已啟用點對點加密",
- "@activatedEndToEndEncryption": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "addEmail": "新增電子郵件",
- "@addEmail": {
- "type": "text",
- "placeholders": {}
- },
- "addGroupDescription": "新增一個群組描述",
- "@addGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "admin": "管理員",
- "@admin": {
- "type": "text",
- "placeholders": {}
- },
- "alias": "別稱",
- "@alias": {
- "type": "text",
- "placeholders": {}
- },
- "all": "全部",
- "@all": {
- "type": "text",
- "placeholders": {}
- },
- "answeredTheCall": "已開始與{senderName}通話",
- "@answeredTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "anyoneCanJoin": "任何人可以加入",
- "@anyoneCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "appLock": "密碼鎖定",
- "@appLock": {
- "type": "text",
- "placeholders": {}
- },
- "archive": "封存",
- "@archive": {
- "type": "text",
- "placeholders": {}
- },
- "areGuestsAllowedToJoin": "是否允許訪客加入",
- "@areGuestsAllowedToJoin": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSure": "您確定嗎?",
- "@areYouSure": {
- "type": "text",
- "placeholders": {}
- },
- "areYouSureYouWantToLogout": "您確定要登出嗎?",
- "@areYouSureYouWantToLogout": {
- "type": "text",
- "placeholders": {}
- },
- "askSSSSSign": "請輸入您安全儲存的密碼短語或恢復金鑰,以向對方簽名。",
- "@askSSSSSign": {
- "type": "text",
- "placeholders": {}
- },
- "askVerificationRequest": "是否接受來自{username}的驗證申請?",
- "@askVerificationRequest": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "badServerLoginTypesException": "目前伺服器支援的登入類型:\n{serverVersions}\n但本應用程式僅支援:\n{supportedVersions}",
- "@badServerLoginTypesException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "badServerVersionsException": "目前伺服器支援的Spec版本:\n{serverVersions}\n但本應用程式僅支援{supportedVersions}",
- "@badServerVersionsException": {
- "type": "text",
- "placeholders": {
- "serverVersions": {},
- "supportedVersions": {}
- }
- },
- "banFromChat": "已從聊天室中封禁",
- "@banFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "banned": "已被封禁",
- "@banned": {
- "type": "text",
- "placeholders": {}
- },
- "bannedUser": "{username}封禁了{targetName}",
- "@bannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "blockDevice": "封鎖裝置",
- "@blockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "blocked": "已封鎖",
- "@blocked": {
- "type": "text",
- "placeholders": {}
- },
- "botMessages": "機器人訊息",
- "@botMessages": {
- "type": "text",
- "placeholders": {}
- },
- "cancel": "取消",
- "@cancel": {
- "type": "text",
- "placeholders": {}
- },
- "changeDeviceName": "變更裝置名稱",
- "@changeDeviceName": {
- "type": "text",
- "placeholders": {}
- },
- "changedTheChatAvatar": "{username}變更了對話頭貼",
- "@changedTheChatAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheChatDescriptionTo": "{username}變更了對話介紹為:「{description}」",
- "@changedTheChatDescriptionTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "description": {}
- }
- },
- "changedTheChatNameTo": "{username}變更了暱稱為:「{chatname}」",
- "@changedTheChatNameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "chatname": {}
- }
- },
- "changedTheChatPermissions": "{username}變更了對話權限",
- "@changedTheChatPermissions": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheDisplaynameTo": "{username} 變更了顯示名稱為:「{displayname}」",
- "@changedTheDisplaynameTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "displayname": {}
- }
- },
- "changedTheGuestAccessRules": "{username}變更了訪客訪問規則",
- "@changedTheGuestAccessRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheGuestAccessRulesTo": "{username}變更了訪客訪問規則為:{rules}",
- "@changedTheGuestAccessRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheHistoryVisibility": "{username}變更了歷史記錄觀察狀態",
- "@changedTheHistoryVisibility": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheHistoryVisibilityTo": "{username}變更了歷史紀錄觀察狀態到:{rules}",
- "@changedTheHistoryVisibilityTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "rules": {}
- }
- },
- "changedTheJoinRules": "{username}變更了加入的規則",
- "@changedTheJoinRules": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheJoinRulesTo": "{username}變更了加入的規則為:{joinRules}",
- "@changedTheJoinRulesTo": {
- "type": "text",
- "placeholders": {
- "username": {},
- "joinRules": {}
- }
- },
- "changedTheProfileAvatar": "{username}變更了頭貼",
- "@changedTheProfileAvatar": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomAliases": "{username}變更了聊天室名",
- "@changedTheRoomAliases": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changedTheRoomInvitationLink": "{username}變更了邀請連結",
- "@changedTheRoomInvitationLink": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "changePassword": "變更密碼",
- "@changePassword": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheHomeserver": "變更主機位址",
- "@changeTheHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheme": "變更主題",
- "@changeTheme": {
- "type": "text",
- "placeholders": {}
- },
- "changeTheNameOfTheGroup": "變更了群組名稱",
- "@changeTheNameOfTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "changeWallpaper": "變更聊天背景",
- "@changeWallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "channelCorruptedDecryptError": "加密已被破壞",
- "@channelCorruptedDecryptError": {
- "type": "text",
- "placeholders": {}
- },
- "chat": "聊天",
- "@chat": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackup": "備份聊天室",
- "@chatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "chatBackupDescription": "您的聊天記錄備份已被安全金鑰鑰加密。請您確保不會弄丟它。",
- "@chatBackupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "chatDetails": "對話詳細",
- "@chatDetails": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAStrongPassword": "輸入一個較強的密碼",
- "@chooseAStrongPassword": {
- "type": "text",
- "placeholders": {}
- },
- "chooseAUsername": "輸入您的使用者名稱",
- "@chooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "close": "關閉",
- "@close": {
- "type": "text",
- "placeholders": {}
- },
- "compareEmojiMatch": "對比並確認這些表情符合其他那些裝置:",
- "@compareEmojiMatch": {
- "type": "text",
- "placeholders": {}
- },
- "compareNumbersMatch": "比較以下數字,確保它們和另一個裝置上的相同:",
- "@compareNumbersMatch": {
- "type": "text",
- "placeholders": {}
- },
- "configureChat": "設定聊天室",
- "@configureChat": {
- "type": "text",
- "placeholders": {}
- },
- "confirm": "確認",
- "@confirm": {
- "type": "text",
- "placeholders": {}
- },
- "connect": "連接",
- "@connect": {
- "type": "text",
- "placeholders": {}
- },
- "contactHasBeenInvitedToTheGroup": "聯絡人已被邀請至群組",
- "@contactHasBeenInvitedToTheGroup": {
- "type": "text",
- "placeholders": {}
- },
- "containsDisplayName": "包含顯示名稱",
- "@containsDisplayName": {
- "type": "text",
- "placeholders": {}
- },
- "containsUserName": "包含使用者名稱",
- "@containsUserName": {
- "type": "text",
- "placeholders": {}
- },
- "contentHasBeenReported": "此內容已被回報給伺服器管理員們",
- "@contentHasBeenReported": {
- "type": "text",
- "placeholders": {}
- },
- "copiedToClipboard": "已複製到剪貼簿",
- "@copiedToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "copy": "複製",
- "@copy": {
- "type": "text",
- "placeholders": {}
- },
- "copyToClipboard": "複製到剪貼簿",
- "@copyToClipboard": {
- "type": "text",
- "placeholders": {}
- },
- "couldNotDecryptMessage": "不能解密訊息:{error}",
- "@couldNotDecryptMessage": {
- "type": "text",
- "placeholders": {
- "error": {}
- }
- },
- "countParticipants": "{count}個參與者",
- "@countParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "create": "建立",
- "@create": {
- "type": "text",
- "placeholders": {}
- },
- "createdTheChat": "{username}建立了聊天室",
- "@createdTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "createNewGroup": "建立新群組",
- "@createNewGroup": {
- "type": "text",
- "placeholders": {}
- },
- "currentlyActive": "目前活躍",
- "@currentlyActive": {
- "type": "text",
- "placeholders": {}
- },
- "darkTheme": "夜間模式",
- "@darkTheme": {
- "type": "text",
- "placeholders": {}
- },
- "dateAndTimeOfDay": "{date}, {timeOfDay}",
- "@dateAndTimeOfDay": {
- "type": "text",
- "placeholders": {
- "date": {},
- "timeOfDay": {}
- }
- },
- "dateWithoutYear": "{month}-{day}",
- "@dateWithoutYear": {
- "type": "text",
- "placeholders": {
- "month": {},
- "day": {}
- }
- },
- "dateWithYear": "{year}-{month}-{day}",
- "@dateWithYear": {
- "type": "text",
- "placeholders": {
- "year": {},
- "month": {},
- "day": {}
- }
- },
- "deactivateAccountWarning": "這將停用您的帳號。這個決定是不能挽回的!您確定嗎?",
- "@deactivateAccountWarning": {
- "type": "text",
- "placeholders": {}
- },
- "defaultPermissionLevel": "預設權限等級",
- "@defaultPermissionLevel": {
- "type": "text",
- "placeholders": {}
- },
- "delete": "刪除",
- "@delete": {
- "type": "text",
- "placeholders": {}
- },
- "deleteAccount": "刪除帳號",
- "@deleteAccount": {
- "type": "text",
- "placeholders": {}
- },
- "deleteMessage": "刪除訊息",
- "@deleteMessage": {
- "type": "text",
- "placeholders": {}
- },
- "deny": "否認",
- "@deny": {
- "type": "text",
- "placeholders": {}
- },
- "device": "裝置",
- "@device": {
- "type": "text",
- "placeholders": {}
- },
- "deviceId": "裝置ID",
- "@deviceId": {
- "type": "text",
- "placeholders": {}
- },
- "devices": "裝置",
- "@devices": {
- "type": "text",
- "placeholders": {}
- },
- "directChats": "直接傳訊",
- "@directChats": {
- "type": "text",
- "placeholders": {}
- },
- "displaynameHasBeenChanged": "顯示名稱已被變更",
- "@displaynameHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "downloadFile": "下載文件",
- "@downloadFile": {
- "type": "text",
- "placeholders": {}
- },
- "edit": "編輯",
- "@edit": {
- "type": "text",
- "placeholders": {}
- },
- "editBlockedServers": "編輯被封鎖的伺服器",
- "@editBlockedServers": {
- "type": "text",
- "placeholders": {}
- },
- "editChatPermissions": "編輯聊天室權限",
- "@editChatPermissions": {
- "type": "text",
- "placeholders": {}
- },
- "editDisplayname": "編輯顯示名稱",
- "@editDisplayname": {
- "type": "text",
- "placeholders": {}
- },
- "editRoomAvatar": "編輯聊天室頭貼",
- "@editRoomAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "emoteExists": "表情已存在!",
- "@emoteExists": {
- "type": "text",
- "placeholders": {}
- },
- "emoteInvalid": "無效的表情快捷鍵!",
- "@emoteInvalid": {
- "type": "text",
- "placeholders": {}
- },
- "emotePacks": "聊天室的表情符號",
- "@emotePacks": {
- "type": "text",
- "placeholders": {}
- },
- "emoteSettings": "表情設定",
- "@emoteSettings": {
- "type": "text",
- "placeholders": {}
- },
- "emoteShortcode": "表情快捷鍵",
- "@emoteShortcode": {
- "type": "text",
- "placeholders": {}
- },
- "emoteWarnNeedToPick": "您需要選取一個表情快捷鍵和一張圖片!",
- "@emoteWarnNeedToPick": {
- "type": "text",
- "placeholders": {}
- },
- "emptyChat": "空的聊天室",
- "@emptyChat": {
- "type": "text",
- "placeholders": {}
- },
- "enableEmotesGlobally": "在全域啟用表情符號",
- "@enableEmotesGlobally": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryption": "啟用加密",
- "@enableEncryption": {
- "type": "text",
- "placeholders": {}
- },
- "enableEncryptionWarning": "您將不能再停用加密,確定嗎?",
- "@enableEncryptionWarning": {
- "type": "text",
- "placeholders": {}
- },
- "encrypted": "加密的",
- "@encrypted": {
- "type": "text",
- "placeholders": {}
- },
- "encryption": "加密",
- "@encryption": {
- "type": "text",
- "placeholders": {}
- },
- "encryptionNotEnabled": "加密未啟用",
- "@encryptionNotEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "endedTheCall": "{senderName}結束了通話",
- "@endedTheCall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "enterAGroupName": "輸入群組名稱",
- "@enterAGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "enterAnEmailAddress": "輸入一個電子郵件位址",
- "@enterAnEmailAddress": {
- "type": "text",
- "placeholders": {}
- },
- "enterYourHomeserver": "輸入伺服器位址",
- "@enterYourHomeserver": {
- "type": "text",
- "placeholders": {}
- },
- "everythingReady": "一切就緒!",
- "@everythingReady": {
- "type": "text",
- "placeholders": {}
- },
- "extremeOffensive": "極端令人反感",
- "@extremeOffensive": {
- "type": "text",
- "placeholders": {}
- },
- "fileName": "檔案名稱",
- "@fileName": {
- "type": "text",
- "placeholders": {}
- },
- "fluffychat": "FluffyChat",
- "@fluffychat": {
- "type": "text",
- "placeholders": {}
- },
- "fontSize": "字體大小",
- "@fontSize": {
- "type": "text",
- "placeholders": {}
- },
- "forward": "轉發",
- "@forward": {
- "type": "text",
- "placeholders": {}
- },
- "fromJoining": "自加入起",
- "@fromJoining": {
- "type": "text",
- "placeholders": {}
- },
- "fromTheInvitation": "自邀請起",
- "@fromTheInvitation": {
- "type": "text",
- "placeholders": {}
- },
- "group": "群組",
- "@group": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescription": "群組描述",
- "@groupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "groupDescriptionHasBeenChanged": "群組描述已被變更",
- "@groupDescriptionHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "groupIsPublic": "群組是公開的",
- "@groupIsPublic": {
- "type": "text",
- "placeholders": {}
- },
- "groups": "群組",
- "@groups": {
- "type": "text",
- "placeholders": {}
- },
- "groupWith": "名稱為{displayname}的群組",
- "@groupWith": {
- "type": "text",
- "placeholders": {
- "displayname": {}
- }
- },
- "guestsAreForbidden": "訪客已被禁止",
- "@guestsAreForbidden": {
- "type": "text",
- "placeholders": {}
- },
- "guestsCanJoin": "訪客可以加入",
- "@guestsCanJoin": {
- "type": "text",
- "placeholders": {}
- },
- "hasWithdrawnTheInvitationFor": "{username}收回了對{targetName}的邀請",
- "@hasWithdrawnTheInvitationFor": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "help": "幫助",
- "@help": {
- "type": "text",
- "placeholders": {}
- },
- "hideRedactedEvents": "隱藏編輯過的事件",
- "@hideRedactedEvents": {
- "type": "text",
- "placeholders": {}
- },
- "hideUnknownEvents": "隱藏未知事件",
- "@hideUnknownEvents": {
- "type": "text",
- "placeholders": {}
- },
- "howOffensiveIsThisContent": "這個內容有多令人反感?",
- "@howOffensiveIsThisContent": {
- "type": "text",
- "placeholders": {}
- },
- "id": "ID",
- "@id": {
- "type": "text",
- "placeholders": {}
- },
- "identity": "身份",
- "@identity": {
- "type": "text",
- "placeholders": {}
- },
- "ignore": "無視",
- "@ignore": {
- "type": "text",
- "placeholders": {}
- },
- "ignoredUsers": "已無視的使用者",
- "@ignoredUsers": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreListDescription": "您可以無視打擾您的使用者。您將不會再收到來自無視列表中使用者的任何消息或聊天室邀請。",
- "@ignoreListDescription": {
- "type": "text",
- "placeholders": {}
- },
- "ignoreUsername": "無視使用者名稱",
- "@ignoreUsername": {
- "type": "text",
- "placeholders": {}
- },
- "iHaveClickedOnLink": "我已經點擊了網址",
- "@iHaveClickedOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "incorrectPassphraseOrKey": "錯誤的密碼短語或恢復金鑰",
- "@incorrectPassphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "inoffensive": "不令人反感",
- "@inoffensive": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContact": "邀請聯絡人",
- "@inviteContact": {
- "type": "text",
- "placeholders": {}
- },
- "inviteContactToGroup": "邀請聯絡人到{groupName}",
- "@inviteContactToGroup": {
- "type": "text",
- "placeholders": {
- "groupName": {}
- }
- },
- "invited": "已邀請",
- "@invited": {
- "type": "text",
- "placeholders": {}
- },
- "invitedUser": "{username}邀請了{targetName}",
- "@invitedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "invitedUsersOnly": "只有被邀請的使用者",
- "@invitedUsersOnly": {
- "type": "text",
- "placeholders": {}
- },
- "inviteForMe": "來自我的邀請",
- "@inviteForMe": {
- "type": "text",
- "placeholders": {}
- },
- "inviteText": "{username}邀請您使用FluffyChat\n1. 安裝FluffyChat:https://fluffychat.im\n2. 登入或註冊\n3. 打開該邀請網址:{link}",
- "@inviteText": {
- "type": "text",
- "placeholders": {
- "username": {},
- "link": {}
- }
- },
- "isTyping": "正在輸入...…",
- "@isTyping": {
- "type": "text",
- "placeholders": {}
- },
- "joinedTheChat": "{username}加入了聊天室",
- "@joinedTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "joinRoom": "加入聊天室",
- "@joinRoom": {
- "type": "text",
- "placeholders": {}
- },
- "kicked": "{username}踢了{targetName}",
- "@kicked": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickedAndBanned": "{username}踢了{targetName}並將其封禁",
- "@kickedAndBanned": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "kickFromChat": "從聊天室踢出",
- "@kickFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "lastActiveAgo": "最後活動時間:{localizedTimeShort}",
- "@lastActiveAgo": {
- "type": "text",
- "placeholders": {
- "localizedTimeShort": {}
- }
- },
- "lastSeenLongTimeAgo": "很長一段時間沒有上線了",
- "@lastSeenLongTimeAgo": {
- "type": "text",
- "placeholders": {}
- },
- "leave": "離開",
- "@leave": {
- "type": "text",
- "placeholders": {}
- },
- "leftTheChat": "離開了聊天室",
- "@leftTheChat": {
- "type": "text",
- "placeholders": {}
- },
- "license": "授權",
- "@license": {
- "type": "text",
- "placeholders": {}
- },
- "lightTheme": "日間模式",
- "@lightTheme": {
- "type": "text",
- "placeholders": {}
- },
- "loadCountMoreParticipants": "載入{count}個更多的參與者",
- "@loadCountMoreParticipants": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "loadingPleaseWait": "載入中… 請稍候。",
- "@loadingPleaseWait": {
- "type": "text",
- "placeholders": {}
- },
- "loadMore": "載入更多…",
- "@loadMore": {
- "type": "text",
- "placeholders": {}
- },
- "login": "登入",
- "@login": {
- "type": "text",
- "placeholders": {}
- },
- "logInTo": "登入{homeserver}",
- "@logInTo": {
- "type": "text",
- "placeholders": {
- "homeserver": {}
- }
- },
- "logout": "登出",
- "@logout": {
- "type": "text",
- "placeholders": {}
- },
- "makeSureTheIdentifierIsValid": "確保識別碼正確",
- "@makeSureTheIdentifierIsValid": {
- "type": "text",
- "placeholders": {}
- },
- "memberChanges": "變更成員",
- "@memberChanges": {
- "type": "text",
- "placeholders": {}
- },
- "mention": "提及",
- "@mention": {
- "type": "text",
- "placeholders": {}
- },
- "messages": "訊息",
- "@messages": {
- "type": "text",
- "placeholders": {}
- },
- "messageWillBeRemovedWarning": "將移除所有參與者的訊息",
- "@messageWillBeRemovedWarning": {
- "type": "text",
- "placeholders": {}
- },
- "moderator": "版主",
- "@moderator": {
- "type": "text",
- "placeholders": {}
- },
- "muteChat": "將該聊天室靜音",
- "@muteChat": {
- "type": "text",
- "placeholders": {}
- },
- "needPantalaimonWarning": "請注意您需要Pantalaimon才能使用點對點加密功能。",
- "@needPantalaimonWarning": {
- "type": "text",
- "placeholders": {}
- },
- "newChat": "新聊天室",
- "@newChat": {
- "type": "text",
- "placeholders": {}
- },
- "newMessageInFluffyChat": "來自 FluffyChat 的新訊息",
- "@newMessageInFluffyChat": {
- "type": "text",
- "placeholders": {}
- },
- "newVerificationRequest": "新的驗證請求!",
- "@newVerificationRequest": {
- "type": "text",
- "placeholders": {}
- },
- "next": "下一個",
- "@next": {
- "type": "text",
- "placeholders": {}
- },
- "no": "否",
- "@no": {
- "type": "text",
- "placeholders": {}
- },
- "noConnectionToTheServer": "無法連接到伺服器",
- "@noConnectionToTheServer": {
- "type": "text",
- "placeholders": {}
- },
- "noEmotesFound": "表情符號不存在。😕",
- "@noEmotesFound": {
- "type": "text",
- "placeholders": {}
- },
- "noEncryptionForPublicRooms": "您只能在這個聊天室不再被允許公開訪問後,才能啟用加密。",
- "@noEncryptionForPublicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "noGoogleServicesWarning": "看起來您手機上沒有Google服務框架。這對於保護您的隱私而言是個好決定!但為了收到FluffyChat的推播通知,我們推薦您使用 https://microg.org/ 或 https://unifiedpush.org/。",
- "@noGoogleServicesWarning": {
- "type": "text",
- "placeholders": {}
- },
- "none": "無",
- "@none": {
- "type": "text",
- "placeholders": {}
- },
- "noPasswordRecoveryDescription": "您尚未新增恢復密碼的方法。",
- "@noPasswordRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "noPermission": "沒有權限",
- "@noPermission": {
- "type": "text",
- "placeholders": {}
- },
- "noRoomsFound": "找不到聊天室…",
- "@noRoomsFound": {
- "type": "text",
- "placeholders": {}
- },
- "notifications": "通知",
- "@notifications": {
- "type": "text",
- "placeholders": {}
- },
- "notificationsEnabledForThisAccount": "已為此帳號啟用通知",
- "@notificationsEnabledForThisAccount": {
- "type": "text",
- "placeholders": {}
- },
- "numUsersTyping": "{count}個人正在輸入…",
- "@numUsersTyping": {
- "type": "text",
- "placeholders": {
- "count": {}
- }
- },
- "offensive": "令人反感",
- "@offensive": {
- "type": "text",
- "placeholders": {}
- },
- "offline": "離線",
- "@offline": {
- "type": "text",
- "placeholders": {}
- },
- "ok": "OK",
- "@ok": {
- "type": "text",
- "placeholders": {}
- },
- "online": "線上",
- "@online": {
- "type": "text",
- "placeholders": {}
- },
- "onlineKeyBackupEnabled": "線上金鑰備份已啟用",
- "@onlineKeyBackupEnabled": {
- "type": "text",
- "placeholders": {}
- },
- "oopsSomethingWentWrong": "哎呀!出了一點差錯…",
- "@oopsSomethingWentWrong": {
- "type": "text",
- "placeholders": {}
- },
- "openAppToReadMessages": "打開應用程式以讀取訊息",
- "@openAppToReadMessages": {
- "type": "text",
- "placeholders": {}
- },
- "openCamera": "開啟相機",
- "@openCamera": {
- "type": "text",
- "placeholders": {}
- },
- "optionalGroupName": "(可選)群組名稱",
- "@optionalGroupName": {
- "type": "text",
- "placeholders": {}
- },
- "participant": "參與者",
- "@participant": {
- "type": "text",
- "placeholders": {}
- },
- "passphraseOrKey": "密碼短語或恢復金鑰",
- "@passphraseOrKey": {
- "type": "text",
- "placeholders": {}
- },
- "password": "密碼",
- "@password": {
- "type": "text",
- "placeholders": {}
- },
- "passwordForgotten": "忘記密碼",
- "@passwordForgotten": {
- "type": "text",
- "placeholders": {}
- },
- "passwordHasBeenChanged": "密碼已被變更",
- "@passwordHasBeenChanged": {
- "type": "text",
- "placeholders": {}
- },
- "passwordRecovery": "恢復密碼",
- "@passwordRecovery": {
- "type": "text",
- "placeholders": {}
- },
- "pickImage": "選擇圖片",
- "@pickImage": {
- "type": "text",
- "placeholders": {}
- },
- "pin": "釘選",
- "@pin": {
- "type": "text",
- "placeholders": {}
- },
- "play": "播放{fileName}",
- "@play": {
- "type": "text",
- "placeholders": {
- "fileName": {}
- }
- },
- "pleaseChooseAPasscode": "請選擇一個密碼",
- "@pleaseChooseAPasscode": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseChooseAUsername": "請選擇使用者名稱",
- "@pleaseChooseAUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseClickOnLink": "請點擊電子郵件中的網址,然後繼續。",
- "@pleaseClickOnLink": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnter4Digits": "請輸入4位數字,或留空以停用密碼鎖定。",
- "@pleaseEnter4Digits": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterAMatrixIdentifier": "請輸入Matrix ID。",
- "@pleaseEnterAMatrixIdentifier": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourPassword": "請輸入您的密碼",
- "@pleaseEnterYourPassword": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseEnterYourUsername": "請輸入您的使用者名稱",
- "@pleaseEnterYourUsername": {
- "type": "text",
- "placeholders": {}
- },
- "pleaseFollowInstructionsOnWeb": "請按照網站上的說明進行操作,然後點擊下一步。",
- "@pleaseFollowInstructionsOnWeb": {
- "type": "text",
- "placeholders": {}
- },
- "privacy": "隱私",
- "@privacy": {
- "type": "text",
- "placeholders": {}
- },
- "publicRooms": "公開的聊天室",
- "@publicRooms": {
- "type": "text",
- "placeholders": {}
- },
- "pushRules": "推播規則",
- "@pushRules": {
- "type": "text",
- "placeholders": {}
- },
- "reason": "原因",
- "@reason": {
- "type": "text",
- "placeholders": {}
- },
- "recording": "錄音中",
- "@recording": {
- "type": "text",
- "placeholders": {}
- },
- "redactedAnEvent": "{username}編輯了一個事件",
- "@redactedAnEvent": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "redactMessage": "重新編輯訊息",
- "@redactMessage": {
- "type": "text",
- "placeholders": {}
- },
- "reject": "拒絕",
- "@reject": {
- "type": "text",
- "placeholders": {}
- },
- "rejectedTheInvitation": "{username}拒絕了邀請",
- "@rejectedTheInvitation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "rejoin": "重新加入",
- "@rejoin": {
- "type": "text",
- "placeholders": {}
- },
- "remove": "移除",
- "@remove": {
- "type": "text",
- "placeholders": {}
- },
- "removeAllOtherDevices": "移除所有其他裝置",
- "@removeAllOtherDevices": {
- "type": "text",
- "placeholders": {}
- },
- "removedBy": "被{username}移除",
- "@removedBy": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "removeDevice": "移除裝置",
- "@removeDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unbanFromChat": "解禁聊天",
- "@unbanFromChat": {
- "type": "text",
- "placeholders": {}
- },
- "renderRichContent": "繪製圖文訊息內容",
- "@renderRichContent": {
- "type": "text",
- "placeholders": {}
- },
- "replaceRoomWithNewerVersion": "用較新的版本取代聊天室",
- "@replaceRoomWithNewerVersion": {
- "type": "text",
- "placeholders": {}
- },
- "reply": "回覆",
- "@reply": {
- "type": "text",
- "placeholders": {}
- },
- "reportMessage": "檢舉訊息",
- "@reportMessage": {
- "type": "text",
- "placeholders": {}
- },
- "requestPermission": "請求權限",
- "@requestPermission": {
- "type": "text",
- "placeholders": {}
- },
- "roomHasBeenUpgraded": "聊天室已更新",
- "@roomHasBeenUpgraded": {
- "type": "text",
- "placeholders": {}
- },
- "search": "搜尋",
- "@search": {
- "type": "text",
- "placeholders": {}
- },
- "security": "安全",
- "@security": {
- "type": "text",
- "placeholders": {}
- },
- "seenByUser": "{username}已讀",
- "@seenByUser": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "seenByUserAndCountOthers": "{count, plural, other{{username}和其他{count}個人已讀}}",
- "@seenByUserAndCountOthers": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "seenByUserAndUser": "{username}和{username2}已讀",
- "@seenByUserAndUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "send": "傳送",
- "@send": {
- "type": "text",
- "placeholders": {}
- },
- "sendAMessage": "傳送訊息",
- "@sendAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "sendAudio": "傳送音訊",
- "@sendAudio": {
- "type": "text",
- "placeholders": {}
- },
- "sendFile": "傳送文件",
- "@sendFile": {
- "type": "text",
- "placeholders": {}
- },
- "sendImage": "傳送圖片",
- "@sendImage": {
- "type": "text",
- "placeholders": {}
- },
- "sendMessages": "傳送訊息",
- "@sendMessages": {
- "type": "text",
- "placeholders": {}
- },
- "sendOriginal": "傳送原始內容",
- "@sendOriginal": {
- "type": "text",
- "placeholders": {}
- },
- "sendVideo": "傳送影片",
- "@sendVideo": {
- "type": "text",
- "placeholders": {}
- },
- "sentAFile": "{username}傳送了一個文件",
- "@sentAFile": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAnAudio": "{username}傳送了一個音訊",
- "@sentAnAudio": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAPicture": "{username}傳送了一張圖片",
- "@sentAPicture": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentASticker": "{username} 傳送了貼圖",
- "@sentASticker": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentAVideo": "{username} 傳送了影片",
- "@sentAVideo": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "sentCallInformations": "{senderName} 傳送了通話資訊",
- "@sentCallInformations": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "setCustomEmotes": "自訂表情符號",
- "@setCustomEmotes": {
- "type": "text",
- "placeholders": {}
- },
- "setGroupDescription": "設定群組描述",
- "@setGroupDescription": {
- "type": "text",
- "placeholders": {}
- },
- "setInvitationLink": "設定邀請連結",
- "@setInvitationLink": {
- "type": "text",
- "placeholders": {}
- },
- "setPermissionsLevel": "設定權限級別",
- "@setPermissionsLevel": {
- "type": "text",
- "placeholders": {}
- },
- "setStatus": "設定狀態",
- "@setStatus": {
- "type": "text",
- "placeholders": {}
- },
- "settings": "設定",
- "@settings": {
- "type": "text",
- "placeholders": {}
- },
- "share": "分享",
- "@share": {
- "type": "text",
- "placeholders": {}
- },
- "sharedTheLocation": "{username} 分享了位置",
- "@sharedTheLocation": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "showPassword": "顯示密碼",
- "@showPassword": {
- "type": "text",
- "placeholders": {}
- },
- "signUp": "註冊",
- "@signUp": {
- "type": "text",
- "placeholders": {}
- },
- "skip": "跳過",
- "@skip": {
- "type": "text",
- "placeholders": {}
- },
- "sourceCode": "原始碼",
- "@sourceCode": {
- "type": "text",
- "placeholders": {}
- },
- "startedACall": "{senderName}開始了通話",
- "@startedACall": {
- "type": "text",
- "placeholders": {
- "senderName": {}
- }
- },
- "status": "狀態",
- "@status": {
- "type": "text",
- "placeholders": {}
- },
- "statusExampleMessage": "今天過得如何?",
- "@statusExampleMessage": {
- "type": "text",
- "placeholders": {}
- },
- "submit": "送出",
- "@submit": {
- "type": "text",
- "placeholders": {}
- },
- "systemTheme": "自動",
- "@systemTheme": {
- "type": "text",
- "placeholders": {}
- },
- "theyDontMatch": "它們不相符",
- "@theyDontMatch": {
- "type": "text",
- "placeholders": {}
- },
- "theyMatch": "它們相符",
- "@theyMatch": {
- "type": "text",
- "placeholders": {}
- },
- "title": "FluffyChat",
- "@title": {
- "description": "Title for the application",
- "type": "text",
- "placeholders": {}
- },
- "toggleFavorite": "切換收藏夾",
- "@toggleFavorite": {
- "type": "text",
- "placeholders": {}
- },
- "toggleMuted": "切換靜音",
- "@toggleMuted": {
- "type": "text",
- "placeholders": {}
- },
- "toggleUnread": "標記為已讀/未讀",
- "@toggleUnread": {
- "type": "text",
- "placeholders": {}
- },
- "tooManyRequestsWarning": "太多請求了。請稍候再試!",
- "@tooManyRequestsWarning": {
- "type": "text",
- "placeholders": {}
- },
- "transferFromAnotherDevice": "從其他裝置傳輸",
- "@transferFromAnotherDevice": {
- "type": "text",
- "placeholders": {}
- },
- "tryToSendAgain": "再次嘗試傳送",
- "@tryToSendAgain": {
- "type": "text",
- "placeholders": {}
- },
- "unavailable": "無法取得",
- "@unavailable": {
- "type": "text",
- "placeholders": {}
- },
- "unbannedUser": "{username}解除封禁了{targetName}",
- "@unbannedUser": {
- "type": "text",
- "placeholders": {
- "username": {},
- "targetName": {}
- }
- },
- "unblockDevice": "解除鎖定裝置",
- "@unblockDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownDevice": "未知裝置",
- "@unknownDevice": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEncryptionAlgorithm": "未知的加密演算法",
- "@unknownEncryptionAlgorithm": {
- "type": "text",
- "placeholders": {}
- },
- "unknownEvent": "未知事件「{type}」",
- "@unknownEvent": {
- "type": "text",
- "placeholders": {
- "type": {}
- }
- },
- "unmuteChat": "取消靜音聊天室",
- "@unmuteChat": {
- "type": "text",
- "placeholders": {}
- },
- "unpin": "取消釘選",
- "@unpin": {
- "type": "text",
- "placeholders": {}
- },
- "unreadChats": "{unreadCount, plural, =1{1 unread chat} other{{unreadCount} 個未讀聊天室}}",
- "@unreadChats": {
- "type": "text",
- "placeholders": {
- "unreadCount": {}
- }
- },
- "userAndOthersAreTyping": "{username}和其他{count}個人正在輸入…",
- "@userAndOthersAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "count": {}
- }
- },
- "userAndUserAreTyping": "{username}和{username2}正在輸入…",
- "@userAndUserAreTyping": {
- "type": "text",
- "placeholders": {
- "username": {},
- "username2": {}
- }
- },
- "userIsTyping": "{username}正在輸入…",
- "@userIsTyping": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "userLeftTheChat": "{username}離開了聊天室",
- "@userLeftTheChat": {
- "type": "text",
- "placeholders": {
- "username": {}
- }
- },
- "username": "使用者名稱",
- "@username": {
- "type": "text",
- "placeholders": {}
- },
- "userSentUnknownEvent": "{username}傳送了一個{type}事件",
- "@userSentUnknownEvent": {
- "type": "text",
- "placeholders": {
- "username": {},
- "type": {}
- }
- },
- "verified": "已驗證",
- "@verified": {
- "type": "text",
- "placeholders": {}
- },
- "verify": "驗證",
- "@verify": {
- "type": "text",
- "placeholders": {}
- },
- "verifyStart": "開始驗證",
- "@verifyStart": {
- "type": "text",
- "placeholders": {}
- },
- "verifySuccess": "您成功驗證了!",
- "@verifySuccess": {
- "type": "text",
- "placeholders": {}
- },
- "verifyTitle": "正在驗證其他帳號",
- "@verifyTitle": {
- "type": "text",
- "placeholders": {}
- },
- "videoCall": "視訊通話",
- "@videoCall": {
- "type": "text",
- "placeholders": {}
- },
- "visibilityOfTheChatHistory": "聊天記錄的可見性",
- "@visibilityOfTheChatHistory": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForAllParticipants": "對所有參與者可見",
- "@visibleForAllParticipants": {
- "type": "text",
- "placeholders": {}
- },
- "visibleForEveryone": "對所有人可見",
- "@visibleForEveryone": {
- "type": "text",
- "placeholders": {}
- },
- "voiceMessage": "語音訊息",
- "@voiceMessage": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerAcceptRequest": "正在等待夥伴接受請求…",
- "@waitingPartnerAcceptRequest": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerEmoji": "正在等待夥伴接受表情符號…",
- "@waitingPartnerEmoji": {
- "type": "text",
- "placeholders": {}
- },
- "waitingPartnerNumbers": "正在等待夥伴接受數字…",
- "@waitingPartnerNumbers": {
- "type": "text",
- "placeholders": {}
- },
- "wallpaper": "桌布",
- "@wallpaper": {
- "type": "text",
- "placeholders": {}
- },
- "warning": "警告!",
- "@warning": {
- "type": "text",
- "placeholders": {}
- },
- "weSentYouAnEmail": "我們向您傳送了一封電子郵件",
- "@weSentYouAnEmail": {
- "type": "text",
- "placeholders": {}
- },
- "whoCanPerformWhichAction": "誰可以執行這個動作",
- "@whoCanPerformWhichAction": {
- "type": "text",
- "placeholders": {}
- },
- "whoIsAllowedToJoinThisGroup": "誰可以加入這個群組",
- "@whoIsAllowedToJoinThisGroup": {
- "type": "text",
- "placeholders": {}
- },
- "whyDoYouWantToReportThis": "您檢舉的原因是什麼?",
- "@whyDoYouWantToReportThis": {
- "type": "text",
- "placeholders": {}
- },
- "wipeChatBackup": "要清除您的聊天記錄備份以建立新的安全金鑰嗎?",
- "@wipeChatBackup": {
- "type": "text",
- "placeholders": {}
- },
- "withTheseAddressesRecoveryDescription": "有了這些位址,您就可以恢復密碼。",
- "@withTheseAddressesRecoveryDescription": {
- "type": "text",
- "placeholders": {}
- },
- "writeAMessage": "輸入訊息…",
- "@writeAMessage": {
- "type": "text",
- "placeholders": {}
- },
- "yes": "是",
- "@yes": {
- "type": "text",
- "placeholders": {}
- },
- "you": "您",
- "@you": {
- "type": "text",
- "placeholders": {}
- },
- "youAreInvitedToThisChat": "有人邀請您加入這個聊天室",
- "@youAreInvitedToThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youAreNoLongerParticipatingInThisChat": "您不再參與這個聊天室了",
- "@youAreNoLongerParticipatingInThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "youCannotInviteYourself": "您不能邀請您自己",
- "@youCannotInviteYourself": {
- "type": "text",
- "placeholders": {}
- },
- "youHaveBeenBannedFromThisChat": "您已經被這個聊天室封禁",
- "@youHaveBeenBannedFromThisChat": {
- "type": "text",
- "placeholders": {}
- },
- "yourPublicKey": "您的公鑰",
- "@yourPublicKey": {
- "type": "text",
- "placeholders": {}
- },
- "people": "人",
- "@people": {
- "type": "text",
- "placeholders": {}
- },
- "chats": "聊天室",
- "@chats": {
- "type": "text",
- "placeholders": {}
- },
- "allChats": "所有會話",
- "@allChats": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_ban": "在此聊天室封禁該使用者",
- "@commandHint_ban": {
- "type": "text",
- "description": "Usage hint for the command /ban"
- },
- "commandHint_clearcache": "清除快取",
- "@commandHint_clearcache": {
- "type": "text",
- "description": "Usage hint for the command /clearcache"
- },
- "commandHint_create": "建立一個空的群聊\n使用 --no-encryption 選項來禁用加密",
- "@commandHint_create": {
- "type": "text",
- "description": "Usage hint for the command /create"
- },
- "commandHint_discardsession": "丟棄工作階段",
- "@commandHint_discardsession": {
- "type": "text",
- "description": "Usage hint for the command /discardsession"
- },
- "commandHint_dm": "啟動一對一聊天\n使用 --no-encryption 選項來禁用加密",
- "@commandHint_dm": {
- "type": "text",
- "description": "Usage hint for the command /dm"
- },
- "commandHint_invite": "邀請該使用者加入此聊天室",
- "@commandHint_invite": {
- "type": "text",
- "description": "Usage hint for the command /invite"
- },
- "commandHint_join": "加入此聊天室",
- "@commandHint_join": {
- "type": "text",
- "description": "Usage hint for the command /join"
- },
- "commandHint_kick": "將這個使用者移出此聊天室",
- "@commandHint_kick": {
- "type": "text",
- "description": "Usage hint for the command /kick"
- },
- "commandHint_leave": "退出此聊天室",
- "@commandHint_leave": {
- "type": "text",
- "description": "Usage hint for the command /leave"
- },
- "commandHint_myroomnick": "設定您的聊天室暱稱",
- "@commandHint_myroomnick": {
- "type": "text",
- "description": "Usage hint for the command /myroomnick"
- },
- "editRoomAliases": "編輯聊天室名",
- "@editRoomAliases": {
- "type": "text",
- "placeholders": {}
- },
- "roomVersion": "聊天室的版本",
- "@roomVersion": {
- "type": "text",
- "placeholders": {}
- },
- "addToSpace": "加入空間",
- "@addToSpace": {},
- "cantOpenUri": "無法打開URI {uri}",
- "@cantOpenUri": {
- "type": "text",
- "placeholders": {
- "uri": {}
- }
- },
- "repeatPassword": "再次輸入密碼",
- "@repeatPassword": {},
- "yourChatBackupHasBeenSetUp": "您的聊天記錄備份已設定。",
- "@yourChatBackupHasBeenSetUp": {},
- "pleaseChooseAtLeastChars": "請至少輸入 {min} 个字元。",
- "@pleaseChooseAtLeastChars": {
- "type": "text",
- "placeholders": {
- "min": {}
- }
- },
- "goToTheNewRoom": "前往新聊天室",
- "@goToTheNewRoom": {
- "type": "text",
- "placeholders": {}
- },
- "commandHint_myroomavatar": "設置您的聊天室頭貼(通過 mxc-uri)",
- "@commandHint_myroomavatar": {
- "type": "text",
- "description": "Usage hint for the command /myroomavatar"
- },
- "commandHint_unban": "在此聊天室解封該使用者",
- "@commandHint_unban": {
- "type": "text",
- "description": "Usage hint for the command /unban"
- },
- "passwordsDoNotMatch": "密碼不匹配!",
- "@passwordsDoNotMatch": {},
- "pleaseEnterValidEmail": "請輸入一個有效的電子郵件地址。",
- "@pleaseEnterValidEmail": {},
- "autoplayImages": "自動播放動態貼圖和表情",
- "@autoplayImages": {
- "type": "text",
- "placeholder": {}
- },
- "sendOnEnter": "按 Enter 鍵發送",
- "@sendOnEnter": {},
- "changeYourAvatar": "更改您的大頭貼",
- "@changeYourAvatar": {
- "type": "text",
- "placeholders": {}
- },
- "chatHasBeenAddedToThisSpace": "聊天室已添加到此空間",
- "@chatHasBeenAddedToThisSpace": {},
- "clearArchive": "清除存檔",
- "@clearArchive": {}
-}
\ No newline at end of file
+ "@@last_modified": "2021-08-14 12:41:09.708353",
+ "about": "關於",
+ "@about": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "accept": "接受",
+ "@accept": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "acceptedTheInvitation": "{username}已接受邀請",
+ "@acceptedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "account": "帳號",
+ "@account": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "activatedEndToEndEncryption": "{username}已啟用點對點加密",
+ "@activatedEndToEndEncryption": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "addEmail": "新增電子郵件",
+ "@addEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addGroupDescription": "新增一個群組描述",
+ "@addGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "admin": "管理員",
+ "@admin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "alias": "別稱",
+ "@alias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "all": "全部",
+ "@all": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "answeredTheCall": "已開始與{senderName}通話",
+ "@answeredTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "anyoneCanJoin": "任何人可以加入",
+ "@anyoneCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "appLock": "密碼鎖定",
+ "@appLock": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "archive": "封存",
+ "@archive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areGuestsAllowedToJoin": "是否允許訪客加入",
+ "@areGuestsAllowedToJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSure": "您確定嗎?",
+ "@areYouSure": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "areYouSureYouWantToLogout": "您確定要登出嗎?",
+ "@areYouSureYouWantToLogout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askSSSSSign": "請輸入您安全儲存的密碼短語或恢復金鑰,以向對方簽名。",
+ "@askSSSSSign": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "askVerificationRequest": "是否接受來自{username}的驗證申請?",
+ "@askVerificationRequest": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "badServerLoginTypesException": "目前伺服器支援的登入類型:\n{serverVersions}\n但本應用程式僅支援:\n{supportedVersions}",
+ "@badServerLoginTypesException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "badServerVersionsException": "目前伺服器支援的Spec版本:\n{serverVersions}\n但本應用程式僅支援{supportedVersions}",
+ "@badServerVersionsException": {
+ "type": "text",
+ "placeholders": {
+ "serverVersions": {},
+ "supportedVersions": {}
+ }
+ },
+ "banFromChat": "已從聊天室中封禁",
+ "@banFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "banned": "已被封禁",
+ "@banned": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "bannedUser": "{username}封禁了{targetName}",
+ "@bannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "blockDevice": "封鎖裝置",
+ "@blockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "blocked": "已封鎖",
+ "@blocked": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "botMessages": "機器人訊息",
+ "@botMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "cancel": "取消",
+ "@cancel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeDeviceName": "變更裝置名稱",
+ "@changeDeviceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changedTheChatAvatar": "{username}變更了對話頭貼",
+ "@changedTheChatAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheChatDescriptionTo": "{username}變更了對話介紹為:「{description}」",
+ "@changedTheChatDescriptionTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "description": {}
+ }
+ },
+ "changedTheChatNameTo": "{username}變更了暱稱為:「{chatname}」",
+ "@changedTheChatNameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "chatname": {}
+ }
+ },
+ "changedTheChatPermissions": "{username}變更了對話權限",
+ "@changedTheChatPermissions": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheDisplaynameTo": "{username} 變更了顯示名稱為:「{displayname}」",
+ "@changedTheDisplaynameTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "displayname": {}
+ }
+ },
+ "changedTheGuestAccessRules": "{username}變更了訪客訪問規則",
+ "@changedTheGuestAccessRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheGuestAccessRulesTo": "{username}變更了訪客訪問規則為:{rules}",
+ "@changedTheGuestAccessRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheHistoryVisibility": "{username}變更了歷史記錄觀察狀態",
+ "@changedTheHistoryVisibility": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheHistoryVisibilityTo": "{username}變更了歷史紀錄觀察狀態到:{rules}",
+ "@changedTheHistoryVisibilityTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "rules": {}
+ }
+ },
+ "changedTheJoinRules": "{username}變更了加入的規則",
+ "@changedTheJoinRules": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheJoinRulesTo": "{username}變更了加入的規則為:{joinRules}",
+ "@changedTheJoinRulesTo": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "joinRules": {}
+ }
+ },
+ "changedTheProfileAvatar": "{username}變更了頭貼",
+ "@changedTheProfileAvatar": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomAliases": "{username}變更了聊天室名",
+ "@changedTheRoomAliases": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changedTheRoomInvitationLink": "{username}變更了邀請連結",
+ "@changedTheRoomInvitationLink": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "changePassword": "變更密碼",
+ "@changePassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheHomeserver": "變更主機位址",
+ "@changeTheHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheme": "變更主題",
+ "@changeTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeTheNameOfTheGroup": "變更了群組名稱",
+ "@changeTheNameOfTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "changeWallpaper": "變更聊天背景",
+ "@changeWallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "channelCorruptedDecryptError": "加密已被破壞",
+ "@channelCorruptedDecryptError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chat": "聊天",
+ "@chat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackup": "備份聊天室",
+ "@chatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatBackupDescription": "您的聊天記錄備份已被安全金鑰鑰加密。請您確保不會弄丟它。",
+ "@chatBackupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatDetails": "對話詳細",
+ "@chatDetails": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAStrongPassword": "輸入一個較強的密碼",
+ "@chooseAStrongPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chooseAUsername": "輸入您的使用者名稱",
+ "@chooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "close": "關閉",
+ "@close": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareEmojiMatch": "對比並確認這些表情符合其他那些裝置:",
+ "@compareEmojiMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "compareNumbersMatch": "比較以下數字,確保它們和另一個裝置上的相同:",
+ "@compareNumbersMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "configureChat": "設定聊天室",
+ "@configureChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "confirm": "確認",
+ "@confirm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "connect": "連接",
+ "@connect": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contactHasBeenInvitedToTheGroup": "聯絡人已被邀請至群組",
+ "@contactHasBeenInvitedToTheGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsDisplayName": "包含顯示名稱",
+ "@containsDisplayName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "containsUserName": "包含使用者名稱",
+ "@containsUserName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "contentHasBeenReported": "此內容已被回報給伺服器管理員們",
+ "@contentHasBeenReported": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copiedToClipboard": "已複製到剪貼簿",
+ "@copiedToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copy": "複製",
+ "@copy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "copyToClipboard": "複製到剪貼簿",
+ "@copyToClipboard": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "couldNotDecryptMessage": "不能解密訊息:{error}",
+ "@couldNotDecryptMessage": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "countParticipants": "{count}個參與者",
+ "@countParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "create": "建立",
+ "@create": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "createdTheChat": "{username}建立了聊天室",
+ "@createdTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "createNewGroup": "建立新群組",
+ "@createNewGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "currentlyActive": "目前活躍",
+ "@currentlyActive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "darkTheme": "夜間模式",
+ "@darkTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dateAndTimeOfDay": "{date}, {timeOfDay}",
+ "@dateAndTimeOfDay": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "timeOfDay": {}
+ }
+ },
+ "dateWithoutYear": "{month}-{day}",
+ "@dateWithoutYear": {
+ "type": "text",
+ "placeholders": {
+ "month": {},
+ "day": {}
+ }
+ },
+ "dateWithYear": "{year}-{month}-{day}",
+ "@dateWithYear": {
+ "type": "text",
+ "placeholders": {
+ "year": {},
+ "month": {},
+ "day": {}
+ }
+ },
+ "deactivateAccountWarning": "這將停用您的帳號。這個決定是不能挽回的!您確定嗎?",
+ "@deactivateAccountWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "defaultPermissionLevel": "預設權限等級",
+ "@defaultPermissionLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "delete": "刪除",
+ "@delete": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteAccount": "刪除帳號",
+ "@deleteAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deleteMessage": "刪除訊息",
+ "@deleteMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deny": "否認",
+ "@deny": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "device": "裝置",
+ "@device": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "deviceId": "裝置ID",
+ "@deviceId": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "devices": "裝置",
+ "@devices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "directChats": "直接傳訊",
+ "@directChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "displaynameHasBeenChanged": "顯示名稱已被變更",
+ "@displaynameHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "downloadFile": "下載文件",
+ "@downloadFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "edit": "編輯",
+ "@edit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editBlockedServers": "編輯被封鎖的伺服器",
+ "@editBlockedServers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editChatPermissions": "編輯聊天室權限",
+ "@editChatPermissions": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editDisplayname": "編輯顯示名稱",
+ "@editDisplayname": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "editRoomAvatar": "編輯聊天室頭貼",
+ "@editRoomAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteExists": "表情已存在!",
+ "@emoteExists": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteInvalid": "無效的表情快捷鍵!",
+ "@emoteInvalid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emotePacks": "聊天室的表情符號",
+ "@emotePacks": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteSettings": "表情設定",
+ "@emoteSettings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteShortcode": "表情快捷鍵",
+ "@emoteShortcode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emoteWarnNeedToPick": "您需要選取一個表情快捷鍵和一張圖片!",
+ "@emoteWarnNeedToPick": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "emptyChat": "空的聊天室",
+ "@emptyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEmotesGlobally": "在全域啟用表情符號",
+ "@enableEmotesGlobally": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryption": "啟用加密",
+ "@enableEncryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enableEncryptionWarning": "您將不能再停用加密,確定嗎?",
+ "@enableEncryptionWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encrypted": "加密的",
+ "@encrypted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryption": "加密",
+ "@encryption": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "encryptionNotEnabled": "加密未啟用",
+ "@encryptionNotEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endedTheCall": "{senderName}結束了通話",
+ "@endedTheCall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "enterAGroupName": "輸入群組名稱",
+ "@enterAGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterAnEmailAddress": "輸入一個電子郵件位址",
+ "@enterAnEmailAddress": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "enterYourHomeserver": "輸入伺服器位址",
+ "@enterYourHomeserver": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "everythingReady": "一切就緒!",
+ "@everythingReady": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "extremeOffensive": "極端令人反感",
+ "@extremeOffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fileName": "檔案名稱",
+ "@fileName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fluffychat": "FluffyChat",
+ "@fluffychat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fontSize": "字體大小",
+ "@fontSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "forward": "轉發",
+ "@forward": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromJoining": "自加入起",
+ "@fromJoining": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "fromTheInvitation": "自邀請起",
+ "@fromTheInvitation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "group": "群組",
+ "@group": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescription": "群組描述",
+ "@groupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupDescriptionHasBeenChanged": "群組描述已被變更",
+ "@groupDescriptionHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupIsPublic": "群組是公開的",
+ "@groupIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groups": "群組",
+ "@groups": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "groupWith": "名稱為{displayname}的群組",
+ "@groupWith": {
+ "type": "text",
+ "placeholders": {
+ "displayname": {}
+ }
+ },
+ "guestsAreForbidden": "訪客已被禁止",
+ "@guestsAreForbidden": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "guestsCanJoin": "訪客可以加入",
+ "@guestsCanJoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hasWithdrawnTheInvitationFor": "{username}收回了對{targetName}的邀請",
+ "@hasWithdrawnTheInvitationFor": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "help": "幫助",
+ "@help": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideRedactedEvents": "隱藏編輯過的事件",
+ "@hideRedactedEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hideUnknownEvents": "隱藏未知事件",
+ "@hideUnknownEvents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "howOffensiveIsThisContent": "這個內容有多令人反感?",
+ "@howOffensiveIsThisContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "id": "ID",
+ "@id": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "identity": "身份",
+ "@identity": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignore": "無視",
+ "@ignore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoredUsers": "已無視的使用者",
+ "@ignoredUsers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreListDescription": "您可以無視打擾您的使用者。您將不會再收到來自無視列表中使用者的任何消息或聊天室邀請。",
+ "@ignoreListDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ignoreUsername": "無視使用者名稱",
+ "@ignoreUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "iHaveClickedOnLink": "我已經點擊了網址",
+ "@iHaveClickedOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "incorrectPassphraseOrKey": "錯誤的密碼短語或恢復金鑰",
+ "@incorrectPassphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inoffensive": "不令人反感",
+ "@inoffensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContact": "邀請聯絡人",
+ "@inviteContact": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroup": "邀請聯絡人到{groupName}",
+ "@inviteContactToGroup": {
+ "type": "text",
+ "placeholders": {
+ "groupName": {}
+ }
+ },
+ "invited": "已邀請",
+ "@invited": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "invitedUser": "{username}邀請了{targetName}",
+ "@invitedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "invitedUsersOnly": "只有被邀請的使用者",
+ "@invitedUsersOnly": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteForMe": "來自我的邀請",
+ "@inviteForMe": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteText": "{username}邀請您使用FluffyChat\n1. 安裝FluffyChat:https://fluffychat.im\n2. 登入或註冊\n3. 打開該邀請網址:{link}",
+ "@inviteText": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "link": {}
+ }
+ },
+ "isTyping": "正在輸入...…",
+ "@isTyping": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "joinedTheChat": "{username}加入了聊天室",
+ "@joinedTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "joinRoom": "加入聊天室",
+ "@joinRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "kicked": "{username}踢了{targetName}",
+ "@kicked": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickedAndBanned": "{username}踢了{targetName}並將其封禁",
+ "@kickedAndBanned": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "kickFromChat": "從聊天室踢出",
+ "@kickFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lastActiveAgo": "最後活動時間:{localizedTimeShort}",
+ "@lastActiveAgo": {
+ "type": "text",
+ "placeholders": {
+ "localizedTimeShort": {}
+ }
+ },
+ "lastSeenLongTimeAgo": "很長一段時間沒有上線了",
+ "@lastSeenLongTimeAgo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leave": "離開",
+ "@leave": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "leftTheChat": "離開了聊天室",
+ "@leftTheChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "license": "授權",
+ "@license": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "lightTheme": "日間模式",
+ "@lightTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadCountMoreParticipants": "載入{count}個更多的參與者",
+ "@loadCountMoreParticipants": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "loadingPleaseWait": "載入中… 請稍候。",
+ "@loadingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "loadMore": "載入更多…",
+ "@loadMore": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "login": "登入",
+ "@login": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "logInTo": "登入{homeserver}",
+ "@logInTo": {
+ "type": "text",
+ "placeholders": {
+ "homeserver": {}
+ }
+ },
+ "logout": "登出",
+ "@logout": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "makeSureTheIdentifierIsValid": "確保識別碼正確",
+ "@makeSureTheIdentifierIsValid": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "memberChanges": "變更成員",
+ "@memberChanges": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "mention": "提及",
+ "@mention": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messages": "訊息",
+ "@messages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "messageWillBeRemovedWarning": "將移除所有參與者的訊息",
+ "@messageWillBeRemovedWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "moderator": "版主",
+ "@moderator": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "muteChat": "將該聊天室靜音",
+ "@muteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "needPantalaimonWarning": "請注意您需要Pantalaimon才能使用點對點加密功能。",
+ "@needPantalaimonWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newChat": "新聊天室",
+ "@newChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newMessageInFluffyChat": "來自 FluffyChat 的新訊息",
+ "@newMessageInFluffyChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "newVerificationRequest": "新的驗證請求!",
+ "@newVerificationRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "next": "下一個",
+ "@next": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "no": "否",
+ "@no": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noConnectionToTheServer": "無法連接到伺服器",
+ "@noConnectionToTheServer": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEmotesFound": "表情符號不存在。😕",
+ "@noEmotesFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noEncryptionForPublicRooms": "您只能在這個聊天室不再被允許公開訪問後,才能啟用加密。",
+ "@noEncryptionForPublicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noGoogleServicesWarning": "看起來您手機上沒有Google服務框架。這對於保護您的隱私而言是個好決定!但為了收到FluffyChat的推播通知,我們推薦您使用 https://microg.org/ 或 https://unifiedpush.org/。",
+ "@noGoogleServicesWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "none": "無",
+ "@none": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPasswordRecoveryDescription": "您尚未新增恢復密碼的方法。",
+ "@noPasswordRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noPermission": "沒有權限",
+ "@noPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "noRoomsFound": "找不到聊天室…",
+ "@noRoomsFound": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notifications": "通知",
+ "@notifications": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "notificationsEnabledForThisAccount": "已為此帳號啟用通知",
+ "@notificationsEnabledForThisAccount": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "numUsersTyping": "{count}個人正在輸入…",
+ "@numUsersTyping": {
+ "type": "text",
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "offensive": "令人反感",
+ "@offensive": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "offline": "離線",
+ "@offline": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "ok": "OK",
+ "@ok": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "online": "線上",
+ "@online": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "onlineKeyBackupEnabled": "線上金鑰備份已啟用",
+ "@onlineKeyBackupEnabled": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "oopsSomethingWentWrong": "哎呀!出了一點差錯…",
+ "@oopsSomethingWentWrong": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openAppToReadMessages": "打開應用程式以讀取訊息",
+ "@openAppToReadMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "openCamera": "開啟相機",
+ "@openCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "optionalGroupName": "(可選)群組名稱",
+ "@optionalGroupName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "participant": "參與者",
+ "@participant": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passphraseOrKey": "密碼短語或恢復金鑰",
+ "@passphraseOrKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "password": "密碼",
+ "@password": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordForgotten": "忘記密碼",
+ "@passwordForgotten": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordHasBeenChanged": "密碼已被變更",
+ "@passwordHasBeenChanged": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "passwordRecovery": "恢復密碼",
+ "@passwordRecovery": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pickImage": "選擇圖片",
+ "@pickImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pin": "釘選",
+ "@pin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "play": "播放{fileName}",
+ "@play": {
+ "type": "text",
+ "placeholders": {
+ "fileName": {}
+ }
+ },
+ "pleaseChooseAPasscode": "請選擇一個密碼",
+ "@pleaseChooseAPasscode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChooseAUsername": "請選擇使用者名稱",
+ "@pleaseChooseAUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseClickOnLink": "請點擊電子郵件中的網址,然後繼續。",
+ "@pleaseClickOnLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnter4Digits": "請輸入4位數字,或留空以停用密碼鎖定。",
+ "@pleaseEnter4Digits": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterAMatrixIdentifier": "請輸入Matrix ID。",
+ "@pleaseEnterAMatrixIdentifier": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourPassword": "請輸入您的密碼",
+ "@pleaseEnterYourPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseEnterYourUsername": "請輸入您的使用者名稱",
+ "@pleaseEnterYourUsername": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseFollowInstructionsOnWeb": "請按照網站上的說明進行操作,然後點擊下一步。",
+ "@pleaseFollowInstructionsOnWeb": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "privacy": "隱私",
+ "@privacy": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "publicRooms": "公開的聊天室",
+ "@publicRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pushRules": "推播規則",
+ "@pushRules": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reason": "原因",
+ "@reason": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "recording": "錄音中",
+ "@recording": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "redactedAnEvent": "{username}編輯了一個事件",
+ "@redactedAnEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "redactMessage": "重新編輯訊息",
+ "@redactMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reject": "拒絕",
+ "@reject": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "rejectedTheInvitation": "{username}拒絕了邀請",
+ "@rejectedTheInvitation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "rejoin": "重新加入",
+ "@rejoin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "remove": "移除",
+ "@remove": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removeAllOtherDevices": "移除所有其他裝置",
+ "@removeAllOtherDevices": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "removedBy": "被{username}移除",
+ "@removedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "removeDevice": "移除裝置",
+ "@removeDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanFromChat": "解禁聊天",
+ "@unbanFromChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "renderRichContent": "繪製圖文訊息內容",
+ "@renderRichContent": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "replaceRoomWithNewerVersion": "用較新的版本取代聊天室",
+ "@replaceRoomWithNewerVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reply": "回覆",
+ "@reply": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "reportMessage": "檢舉訊息",
+ "@reportMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "requestPermission": "請求權限",
+ "@requestPermission": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomHasBeenUpgraded": "聊天室已更新",
+ "@roomHasBeenUpgraded": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "search": "搜尋",
+ "@search": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "security": "安全",
+ "@security": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "seenByUser": "{username}已讀",
+ "@seenByUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "seenByUserAndCountOthers": "{count, plural, other{{username}和其他{count}個人已讀}}",
+ "@seenByUserAndCountOthers": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "seenByUserAndUser": "{username}和{username2}已讀",
+ "@seenByUserAndUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "send": "傳送",
+ "@send": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAMessage": "傳送訊息",
+ "@sendAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAudio": "傳送音訊",
+ "@sendAudio": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendFile": "傳送文件",
+ "@sendFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendImage": "傳送圖片",
+ "@sendImage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendMessages": "傳送訊息",
+ "@sendMessages": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendOriginal": "傳送原始內容",
+ "@sendOriginal": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendVideo": "傳送影片",
+ "@sendVideo": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sentAFile": "{username}傳送了一個文件",
+ "@sentAFile": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAnAudio": "{username}傳送了一個音訊",
+ "@sentAnAudio": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAPicture": "{username}傳送了一張圖片",
+ "@sentAPicture": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentASticker": "{username} 傳送了貼圖",
+ "@sentASticker": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentAVideo": "{username} 傳送了影片",
+ "@sentAVideo": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "sentCallInformations": "{senderName} 傳送了通話資訊",
+ "@sentCallInformations": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "setCustomEmotes": "自訂表情符號",
+ "@setCustomEmotes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setGroupDescription": "設定群組描述",
+ "@setGroupDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setInvitationLink": "設定邀請連結",
+ "@setInvitationLink": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setPermissionsLevel": "設定權限級別",
+ "@setPermissionsLevel": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "setStatus": "設定狀態",
+ "@setStatus": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "settings": "設定",
+ "@settings": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "share": "分享",
+ "@share": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sharedTheLocation": "{username} 分享了位置",
+ "@sharedTheLocation": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "showPassword": "顯示密碼",
+ "@showPassword": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "signUp": "註冊",
+ "@signUp": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "skip": "跳過",
+ "@skip": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sourceCode": "原始碼",
+ "@sourceCode": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "startedACall": "{senderName}開始了通話",
+ "@startedACall": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "status": "狀態",
+ "@status": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "statusExampleMessage": "今天過得如何?",
+ "@statusExampleMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "submit": "送出",
+ "@submit": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "systemTheme": "自動",
+ "@systemTheme": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyDontMatch": "它們不相符",
+ "@theyDontMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "theyMatch": "它們相符",
+ "@theyMatch": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "title": "FluffyChat",
+ "@title": {
+ "description": "Title for the application",
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleFavorite": "切換收藏夾",
+ "@toggleFavorite": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleMuted": "切換靜音",
+ "@toggleMuted": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "toggleUnread": "標記為已讀/未讀",
+ "@toggleUnread": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tooManyRequestsWarning": "太多請求了。請稍候再試!",
+ "@tooManyRequestsWarning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "transferFromAnotherDevice": "從其他裝置傳輸",
+ "@transferFromAnotherDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryToSendAgain": "再次嘗試傳送",
+ "@tryToSendAgain": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unavailable": "無法取得",
+ "@unavailable": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbannedUser": "{username}解除封禁了{targetName}",
+ "@unbannedUser": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "targetName": {}
+ }
+ },
+ "unblockDevice": "解除鎖定裝置",
+ "@unblockDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownDevice": "未知裝置",
+ "@unknownDevice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEncryptionAlgorithm": "未知的加密演算法",
+ "@unknownEncryptionAlgorithm": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unknownEvent": "未知事件「{type}」",
+ "@unknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "type": {}
+ }
+ },
+ "unmuteChat": "取消靜音聊天室",
+ "@unmuteChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unpin": "取消釘選",
+ "@unpin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unreadChats": "{unreadCount, plural, =1{1 unread chat} other{{unreadCount} 個未讀聊天室}}",
+ "@unreadChats": {
+ "type": "text",
+ "placeholders": {
+ "unreadCount": {}
+ }
+ },
+ "userAndOthersAreTyping": "{username}和其他{count}個人正在輸入…",
+ "@userAndOthersAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "count": {}
+ }
+ },
+ "userAndUserAreTyping": "{username}和{username2}正在輸入…",
+ "@userAndUserAreTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "username2": {}
+ }
+ },
+ "userIsTyping": "{username}正在輸入…",
+ "@userIsTyping": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "userLeftTheChat": "{username}離開了聊天室",
+ "@userLeftTheChat": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "username": "使用者名稱",
+ "@username": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "userSentUnknownEvent": "{username}傳送了一個{type}事件",
+ "@userSentUnknownEvent": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "type": {}
+ }
+ },
+ "verified": "已驗證",
+ "@verified": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verify": "驗證",
+ "@verify": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyStart": "開始驗證",
+ "@verifyStart": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifySuccess": "您成功驗證了!",
+ "@verifySuccess": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "verifyTitle": "正在驗證其他帳號",
+ "@verifyTitle": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "videoCall": "視訊通話",
+ "@videoCall": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibilityOfTheChatHistory": "聊天記錄的可見性",
+ "@visibilityOfTheChatHistory": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForAllParticipants": "對所有參與者可見",
+ "@visibleForAllParticipants": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "visibleForEveryone": "對所有人可見",
+ "@visibleForEveryone": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "voiceMessage": "語音訊息",
+ "@voiceMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerAcceptRequest": "正在等待夥伴接受請求…",
+ "@waitingPartnerAcceptRequest": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerEmoji": "正在等待夥伴接受表情符號…",
+ "@waitingPartnerEmoji": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "waitingPartnerNumbers": "正在等待夥伴接受數字…",
+ "@waitingPartnerNumbers": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wallpaper": "桌布",
+ "@wallpaper": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "warning": "警告!",
+ "@warning": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "weSentYouAnEmail": "我們向您傳送了一封電子郵件",
+ "@weSentYouAnEmail": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanPerformWhichAction": "誰可以執行這個動作",
+ "@whoCanPerformWhichAction": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoIsAllowedToJoinThisGroup": "誰可以加入這個群組",
+ "@whoIsAllowedToJoinThisGroup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whyDoYouWantToReportThis": "您檢舉的原因是什麼?",
+ "@whyDoYouWantToReportThis": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "wipeChatBackup": "要清除您的聊天記錄備份以建立新的安全金鑰嗎?",
+ "@wipeChatBackup": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "withTheseAddressesRecoveryDescription": "有了這些位址,您就可以恢復密碼。",
+ "@withTheseAddressesRecoveryDescription": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "writeAMessage": "輸入訊息…",
+ "@writeAMessage": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yes": "是",
+ "@yes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "you": "您",
+ "@you": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreInvitedToThisChat": "有人邀請您加入這個聊天室",
+ "@youAreInvitedToThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youAreNoLongerParticipatingInThisChat": "您不再參與這個聊天室了",
+ "@youAreNoLongerParticipatingInThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youCannotInviteYourself": "您不能邀請您自己",
+ "@youCannotInviteYourself": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youHaveBeenBannedFromThisChat": "您已經被這個聊天室封禁",
+ "@youHaveBeenBannedFromThisChat": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "yourPublicKey": "您的公鑰",
+ "@yourPublicKey": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "people": "人",
+ "@people": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chats": "聊天室",
+ "@chats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allChats": "所有會話",
+ "@allChats": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_ban": "在此聊天室封禁該使用者",
+ "@commandHint_ban": {
+ "type": "text",
+ "description": "Usage hint for the command /ban"
+ },
+ "commandHint_clearcache": "清除快取",
+ "@commandHint_clearcache": {
+ "type": "text",
+ "description": "Usage hint for the command /clearcache"
+ },
+ "commandHint_create": "建立一個空的群聊\n使用 --no-encryption 選項來禁用加密",
+ "@commandHint_create": {
+ "type": "text",
+ "description": "Usage hint for the command /create"
+ },
+ "commandHint_discardsession": "丟棄工作階段",
+ "@commandHint_discardsession": {
+ "type": "text",
+ "description": "Usage hint for the command /discardsession"
+ },
+ "commandHint_dm": "啟動一對一聊天\n使用 --no-encryption 選項來禁用加密",
+ "@commandHint_dm": {
+ "type": "text",
+ "description": "Usage hint for the command /dm"
+ },
+ "commandHint_invite": "邀請該使用者加入此聊天室",
+ "@commandHint_invite": {
+ "type": "text",
+ "description": "Usage hint for the command /invite"
+ },
+ "commandHint_join": "加入此聊天室",
+ "@commandHint_join": {
+ "type": "text",
+ "description": "Usage hint for the command /join"
+ },
+ "commandHint_kick": "將這個使用者移出此聊天室",
+ "@commandHint_kick": {
+ "type": "text",
+ "description": "Usage hint for the command /kick"
+ },
+ "commandHint_leave": "退出此聊天室",
+ "@commandHint_leave": {
+ "type": "text",
+ "description": "Usage hint for the command /leave"
+ },
+ "commandHint_myroomnick": "設定您的聊天室暱稱",
+ "@commandHint_myroomnick": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomnick"
+ },
+ "editRoomAliases": "編輯聊天室名",
+ "@editRoomAliases": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "roomVersion": "聊天室的版本",
+ "@roomVersion": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addToSpace": "加入空間",
+ "@addToSpace": {},
+ "cantOpenUri": "無法打開URI {uri}",
+ "@cantOpenUri": {
+ "type": "text",
+ "placeholders": {
+ "uri": {}
+ }
+ },
+ "repeatPassword": "再次輸入密碼",
+ "@repeatPassword": {},
+ "yourChatBackupHasBeenSetUp": "您的聊天記錄備份已設定。",
+ "@yourChatBackupHasBeenSetUp": {},
+ "pleaseChooseAtLeastChars": "請至少輸入 {min} 个字元。",
+ "@pleaseChooseAtLeastChars": {
+ "type": "text",
+ "placeholders": {
+ "min": {}
+ }
+ },
+ "goToTheNewRoom": "前往新聊天室",
+ "@goToTheNewRoom": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_myroomavatar": "設置您的聊天室頭貼(通過 mxc-uri)",
+ "@commandHint_myroomavatar": {
+ "type": "text",
+ "description": "Usage hint for the command /myroomavatar"
+ },
+ "commandHint_unban": "在此聊天室解封該使用者",
+ "@commandHint_unban": {
+ "type": "text",
+ "description": "Usage hint for the command /unban"
+ },
+ "passwordsDoNotMatch": "密碼不匹配!",
+ "@passwordsDoNotMatch": {},
+ "pleaseEnterValidEmail": "請輸入一個有效的電子郵件地址。",
+ "@pleaseEnterValidEmail": {},
+ "autoplayImages": "自動播放動態貼圖和表情",
+ "@autoplayImages": {
+ "type": "text",
+ "placeholder": {}
+ },
+ "sendOnEnter": "按 Enter 鍵發送",
+ "@sendOnEnter": {},
+ "changeYourAvatar": "更改您的大頭貼",
+ "@changeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "chatHasBeenAddedToThisSpace": "聊天室已添加到此空間",
+ "@chatHasBeenAddedToThisSpace": {},
+ "clearArchive": "清除存檔",
+ "@clearArchive": {},
+ "discover": "",
+ "@discover": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "hugContent": "",
+ "@hugContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "jumpToLastReadMessage": "",
+ "@jumpToLastReadMessage": {},
+ "allRooms": "",
+ "@allRooms": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "obtainingLocation": "",
+ "@obtainingLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "whoCanSeeMyStories": "",
+ "@whoCanSeeMyStories": {},
+ "commandHint_cuddle": "",
+ "@commandHint_cuddle": {},
+ "widgetVideo": "",
+ "@widgetVideo": {},
+ "dismiss": "",
+ "@dismiss": {},
+ "reportErrorDescription": "",
+ "@reportErrorDescription": {},
+ "addAccount": "",
+ "@addAccount": {},
+ "removeYourAvatar": "",
+ "@removeYourAvatar": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unsupportedAndroidVersion": "",
+ "@unsupportedAndroidVersion": {},
+ "enterASpacepName": "",
+ "@enterASpacepName": {},
+ "commandHint_html": "",
+ "@commandHint_html": {
+ "type": "text",
+ "description": "Usage hint for the command /html"
+ },
+ "widgetJitsi": "",
+ "@widgetJitsi": {},
+ "messageType": "",
+ "@messageType": {},
+ "noEmailWarning": "",
+ "@noEmailWarning": {},
+ "indexedDbErrorLong": "",
+ "@indexedDbErrorLong": {},
+ "oneClientLoggedOut": "",
+ "@oneClientLoggedOut": {},
+ "startFirstChat": "",
+ "@startFirstChat": {},
+ "callingAccount": "",
+ "@callingAccount": {},
+ "setColorTheme": "",
+ "@setColorTheme": {},
+ "nextAccount": "",
+ "@nextAccount": {},
+ "singlesignon": "",
+ "@singlesignon": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "allSpaces": "",
+ "@allSpaces": {},
+ "supposedMxid": "",
+ "@supposedMxid": {
+ "type": "text",
+ "placeholders": {
+ "mxid": {}
+ }
+ },
+ "user": "",
+ "@user": {},
+ "youAcceptedTheInvitation": "",
+ "@youAcceptedTheInvitation": {},
+ "noMatrixServer": "",
+ "@noMatrixServer": {
+ "type": "text",
+ "placeholders": {
+ "server1": {},
+ "server2": {}
+ }
+ },
+ "youInvitedBy": "",
+ "@youInvitedBy": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "banUserDescription": "",
+ "@banUserDescription": {},
+ "requests": "",
+ "@requests": {},
+ "widgetEtherpad": "",
+ "@widgetEtherpad": {},
+ "stories": "",
+ "@stories": {},
+ "addToStory": "",
+ "@addToStory": {},
+ "removeDevicesDescription": "",
+ "@removeDevicesDescription": {},
+ "separateChatTypes": "",
+ "@separateChatTypes": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "tryAgain": "",
+ "@tryAgain": {},
+ "youKickedAndBanned": "",
+ "@youKickedAndBanned": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "showDirectChatsInSpaces": "",
+ "@showDirectChatsInSpaces": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unbanUserDescription": "",
+ "@unbanUserDescription": {},
+ "todoLists": "",
+ "@todoLists": {},
+ "saveFile": "",
+ "@saveFile": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youRejectedTheInvitation": "",
+ "@youRejectedTheInvitation": {},
+ "otherCallingPermissions": "",
+ "@otherCallingPermissions": {},
+ "messagesStyle": "",
+ "@messagesStyle": {},
+ "link": "",
+ "@link": {},
+ "widgetUrlError": "",
+ "@widgetUrlError": {},
+ "emailOrUsername": "",
+ "@emailOrUsername": {},
+ "newSpaceDescription": "",
+ "@newSpaceDescription": {},
+ "chatDescription": "",
+ "@chatDescription": {},
+ "callingAccountDetails": "",
+ "@callingAccountDetails": {},
+ "enterSpace": "",
+ "@enterSpace": {},
+ "encryptThisChat": "",
+ "@encryptThisChat": {},
+ "previousAccount": "",
+ "@previousAccount": {},
+ "reopenChat": "",
+ "@reopenChat": {},
+ "pleaseEnterRecoveryKey": "",
+ "@pleaseEnterRecoveryKey": {},
+ "widgetNameError": "",
+ "@widgetNameError": {},
+ "addToBundle": "",
+ "@addToBundle": {},
+ "spaceIsPublic": "",
+ "@spaceIsPublic": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "addWidget": "",
+ "@addWidget": {},
+ "countFiles": "",
+ "@countFiles": {
+ "placeholders": {
+ "count": {}
+ }
+ },
+ "noKeyForThisMessage": "",
+ "@noKeyForThisMessage": {},
+ "shareLocation": "",
+ "@shareLocation": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_markasgroup": "",
+ "@commandHint_markasgroup": {},
+ "editTodo": "",
+ "@editTodo": {},
+ "errorObtainingLocation": "",
+ "@errorObtainingLocation": {
+ "type": "text",
+ "placeholders": {
+ "error": {}
+ }
+ },
+ "hydrateTor": "",
+ "@hydrateTor": {},
+ "pushNotificationsNotAvailable": "",
+ "@pushNotificationsNotAvailable": {},
+ "storeInAppleKeyChain": "",
+ "@storeInAppleKeyChain": {},
+ "hydrate": "",
+ "@hydrate": {},
+ "invalidServerName": "",
+ "@invalidServerName": {},
+ "chatPermissions": "",
+ "@chatPermissions": {},
+ "sender": "",
+ "@sender": {},
+ "storeInAndroidKeystore": "",
+ "@storeInAndroidKeystore": {},
+ "signInWithPassword": "",
+ "@signInWithPassword": {},
+ "pleaseAddATitle": "",
+ "@pleaseAddATitle": {},
+ "updateNow": "",
+ "@updateNow": {},
+ "makeAdminDescription": "",
+ "@makeAdminDescription": {},
+ "synchronizingPleaseWait": "",
+ "@synchronizingPleaseWait": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "saveKeyManuallyDescription": "",
+ "@saveKeyManuallyDescription": {},
+ "editBundlesForAccount": "",
+ "@editBundlesForAccount": {},
+ "whyIsThisMessageEncrypted": "",
+ "@whyIsThisMessageEncrypted": {},
+ "setChatDescription": "",
+ "@setChatDescription": {},
+ "spaceName": "",
+ "@spaceName": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importFromZipFile": "",
+ "@importFromZipFile": {},
+ "or": "",
+ "@or": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "dehydrateWarning": "",
+ "@dehydrateWarning": {},
+ "noOtherDevicesFound": "",
+ "@noOtherDevicesFound": {},
+ "addDescription": "",
+ "@addDescription": {},
+ "redactedBy": "",
+ "@redactedBy": {
+ "type": "text",
+ "placeholders": {
+ "username": {}
+ }
+ },
+ "videoCallsBetaWarning": "",
+ "@videoCallsBetaWarning": {},
+ "storyPrivacyWarning": "",
+ "@storyPrivacyWarning": {},
+ "matrixWidgets": "",
+ "@matrixWidgets": {},
+ "signInWith": "",
+ "@signInWith": {
+ "type": "text",
+ "placeholders": {
+ "provider": {}
+ }
+ },
+ "updateAvailable": "",
+ "@updateAvailable": {},
+ "fileIsTooBigForServer": "",
+ "@fileIsTooBigForServer": {},
+ "homeserver": "",
+ "@homeserver": {},
+ "noTodosYet": "",
+ "@noTodosYet": {},
+ "callingPermissions": "",
+ "@callingPermissions": {},
+ "readUpToHere": "",
+ "@readUpToHere": {},
+ "start": "",
+ "@start": {},
+ "bubbleSize": "",
+ "@bubbleSize": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "register": "",
+ "@register": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "unlockOldMessages": "",
+ "@unlockOldMessages": {},
+ "numChats": "",
+ "@numChats": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "whatIsGoingOn": "",
+ "@whatIsGoingOn": {},
+ "optionalRedactReason": "",
+ "@optionalRedactReason": {},
+ "dehydrate": "",
+ "@dehydrate": {},
+ "locationPermissionDeniedNotice": "",
+ "@locationPermissionDeniedNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "sendAsText": "",
+ "@sendAsText": {
+ "type": "text"
+ },
+ "archiveRoomDescription": "",
+ "@archiveRoomDescription": {},
+ "exportEmotePack": "",
+ "@exportEmotePack": {},
+ "sendSticker": "",
+ "@sendSticker": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "switchToAccount": "",
+ "@switchToAccount": {
+ "type": "number",
+ "placeholders": {
+ "number": {}
+ }
+ },
+ "commandInvalid": "",
+ "@commandInvalid": {
+ "type": "text"
+ },
+ "setAsCanonicalAlias": "",
+ "@setAsCanonicalAlias": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "locationDisabledNotice": "",
+ "@locationDisabledNotice": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "letsStart": "",
+ "@letsStart": {},
+ "commandHint_plain": "",
+ "@commandHint_plain": {
+ "type": "text",
+ "description": "Usage hint for the command /plain"
+ },
+ "experimentalVideoCalls": "",
+ "@experimentalVideoCalls": {},
+ "savedEmotePack": "",
+ "@savedEmotePack": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "pleaseEnterRecoveryKeyDescription": "",
+ "@pleaseEnterRecoveryKeyDescription": {},
+ "openInMaps": "",
+ "@openInMaps": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "inviteContactToGroupQuestion": "",
+ "@inviteContactToGroupQuestion": {},
+ "redactedByBecause": "",
+ "@redactedByBecause": {
+ "type": "text",
+ "placeholders": {
+ "username": {},
+ "reason": {}
+ }
+ },
+ "youHaveWithdrawnTheInvitationFor": "",
+ "@youHaveWithdrawnTheInvitationFor": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "appearOnTopDetails": "",
+ "@appearOnTopDetails": {},
+ "enterRoom": "",
+ "@enterRoom": {},
+ "reportUser": "",
+ "@reportUser": {},
+ "commandHint_send": "",
+ "@commandHint_send": {
+ "type": "text",
+ "description": "Usage hint for the command /send"
+ },
+ "confirmEventUnpin": "",
+ "@confirmEventUnpin": {},
+ "youInvitedUser": "",
+ "@youInvitedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "fileHasBeenSavedAt": "",
+ "@fileHasBeenSavedAt": {
+ "type": "text",
+ "placeholders": {
+ "path": {}
+ }
+ },
+ "importZipFile": "",
+ "@importZipFile": {},
+ "anyoneCanKnock": "",
+ "@anyoneCanKnock": {},
+ "commandMissing": "",
+ "@commandMissing": {
+ "type": "text",
+ "placeholders": {
+ "command": {}
+ },
+ "description": "State that {command} is not a valid /command."
+ },
+ "redactMessageDescription": "",
+ "@redactMessageDescription": {},
+ "recoveryKey": "",
+ "@recoveryKey": {},
+ "invalidInput": "",
+ "@invalidInput": {},
+ "todosUnencrypted": "",
+ "@todosUnencrypted": {},
+ "dehydrateTorLong": "",
+ "@dehydrateTorLong": {},
+ "replyHasBeenSent": "",
+ "@replyHasBeenSent": {},
+ "doNotShowAgain": "",
+ "@doNotShowAgain": {},
+ "report": "",
+ "@report": {},
+ "yourStory": "",
+ "@yourStory": {},
+ "unverified": "",
+ "@unverified": {},
+ "serverRequiresEmail": "",
+ "@serverRequiresEmail": {},
+ "hideUnimportantStateEvents": "",
+ "@hideUnimportantStateEvents": {},
+ "screenSharingTitle": "",
+ "@screenSharingTitle": {},
+ "widgetCustom": "",
+ "@widgetCustom": {},
+ "addToSpaceDescription": "",
+ "@addToSpaceDescription": {},
+ "googlyEyesContent": "",
+ "@googlyEyesContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "whoCanSeeMyStoriesDesc": "",
+ "@whoCanSeeMyStoriesDesc": {},
+ "youBannedUser": "",
+ "@youBannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "unsubscribeStories": "",
+ "@unsubscribeStories": {},
+ "loginWithOneClick": "",
+ "@loginWithOneClick": {},
+ "addChatDescription": "",
+ "@addChatDescription": {},
+ "hasKnocked": "",
+ "@hasKnocked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "publish": "",
+ "@publish": {},
+ "openLinkInBrowser": "",
+ "@openLinkInBrowser": {},
+ "commandHint_react": "",
+ "@commandHint_react": {
+ "type": "text",
+ "description": "Usage hint for the command /react"
+ },
+ "commandHint_me": "",
+ "@commandHint_me": {
+ "type": "text",
+ "description": "Usage hint for the command /me"
+ },
+ "messageInfo": "",
+ "@messageInfo": {},
+ "disableEncryptionWarning": "",
+ "@disableEncryptionWarning": {},
+ "directChat": "",
+ "@directChat": {},
+ "noOneCanJoin": "",
+ "@noOneCanJoin": {},
+ "wrongPinEntered": "",
+ "@wrongPinEntered": {
+ "type": "text",
+ "placeholders": {
+ "seconds": {}
+ }
+ },
+ "sendTypingNotifications": "",
+ "@sendTypingNotifications": {},
+ "inviteGroupChat": "",
+ "@inviteGroupChat": {},
+ "appearOnTop": "",
+ "@appearOnTop": {},
+ "invitePrivateChat": "",
+ "@invitePrivateChat": {},
+ "foregroundServiceRunning": "",
+ "@foregroundServiceRunning": {},
+ "voiceCall": "",
+ "@voiceCall": {},
+ "createNewSpace": "",
+ "@createNewSpace": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "importEmojis": "",
+ "@importEmojis": {},
+ "wasDirectChatDisplayName": "",
+ "@wasDirectChatDisplayName": {
+ "type": "text",
+ "placeholders": {
+ "oldDisplayName": {}
+ }
+ },
+ "noChatDescriptionYet": "",
+ "@noChatDescriptionYet": {},
+ "newTodo": "",
+ "@newTodo": {},
+ "removeFromBundle": "",
+ "@removeFromBundle": {},
+ "confirmMatrixId": "",
+ "@confirmMatrixId": {},
+ "learnMore": "",
+ "@learnMore": {},
+ "notAnImage": "",
+ "@notAnImage": {},
+ "users": "",
+ "@users": {},
+ "openGallery": "",
+ "@openGallery": {},
+ "chatDescriptionHasBeenChanged": "",
+ "@chatDescriptionHasBeenChanged": {},
+ "newGroup": "",
+ "@newGroup": {},
+ "bundleName": "",
+ "@bundleName": {},
+ "dehydrateTor": "",
+ "@dehydrateTor": {},
+ "todoListChangedError": "",
+ "@todoListChangedError": {},
+ "removeFromSpace": "",
+ "@removeFromSpace": {},
+ "enterInviteLinkOrMatrixId": "",
+ "@enterInviteLinkOrMatrixId": {},
+ "commandHint_op": "",
+ "@commandHint_op": {
+ "type": "text",
+ "description": "Usage hint for the command /op"
+ },
+ "roomUpgradeDescription": "",
+ "@roomUpgradeDescription": {},
+ "scanQrCode": "",
+ "@scanQrCode": {},
+ "pleaseEnterANumber": "",
+ "@pleaseEnterANumber": {},
+ "youKicked": "",
+ "@youKicked": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "profileNotFound": "",
+ "@profileNotFound": {},
+ "jump": "",
+ "@jump": {},
+ "reactedWith": "",
+ "@reactedWith": {
+ "type": "text",
+ "placeholders": {
+ "sender": {},
+ "reaction": {}
+ }
+ },
+ "sorryThatsNotPossible": "",
+ "@sorryThatsNotPossible": {},
+ "storyFrom": "",
+ "@storyFrom": {
+ "type": "text",
+ "placeholders": {
+ "date": {},
+ "body": {}
+ }
+ },
+ "videoWithSize": "",
+ "@videoWithSize": {
+ "type": "text",
+ "placeholders": {
+ "size": {}
+ }
+ },
+ "shareInviteLink": "",
+ "@shareInviteLink": {},
+ "commandHint_markasdm": "",
+ "@commandHint_markasdm": {},
+ "recoveryKeyLost": "",
+ "@recoveryKeyLost": {},
+ "cuddleContent": "",
+ "@cuddleContent": {
+ "type": "text",
+ "placeholders": {
+ "senderName": {}
+ }
+ },
+ "deviceKeys": "",
+ "@deviceKeys": {},
+ "emoteKeyboardNoRecents": "",
+ "@emoteKeyboardNoRecents": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "endToEndEncryption": "",
+ "@endToEndEncryption": {},
+ "setTheme": "",
+ "@setTheme": {},
+ "youJoinedTheChat": "",
+ "@youJoinedTheChat": {},
+ "openVideoCamera": "",
+ "@openVideoCamera": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "thisUserHasNotPostedAnythingYet": "",
+ "@thisUserHasNotPostedAnythingYet": {},
+ "markAsRead": "",
+ "@markAsRead": {},
+ "widgetName": "",
+ "@widgetName": {},
+ "errorAddingWidget": "",
+ "@errorAddingWidget": {},
+ "commandHint_hug": "",
+ "@commandHint_hug": {},
+ "replace": "",
+ "@replace": {},
+ "oopsPushError": "",
+ "@oopsPushError": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "youUnbannedUser": "",
+ "@youUnbannedUser": {
+ "placeholders": {
+ "user": {}
+ }
+ },
+ "newSpace": "",
+ "@newSpace": {},
+ "emojis": "",
+ "@emojis": {},
+ "pleaseEnterYourPin": "",
+ "@pleaseEnterYourPin": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "pleaseChoose": "",
+ "@pleaseChoose": {
+ "type": "text",
+ "placeholders": {}
+ },
+ "commandHint_googly": "",
+ "@commandHint_googly": {},
+ "pleaseTryAgainLaterOrChooseDifferentServer": "",
+ "@pleaseTryAgainLaterOrChooseDifferentServer": {},
+ "createGroup": "",
+ "@createGroup": {},
+ "hydrateTorLong": "",
+ "@hydrateTorLong": {},
+ "time": "",
+ "@time": {},
+ "custom": "",
+ "@custom": {},
+ "noBackupWarning": "",
+ "@noBackupWarning": {},
+ "editWidgets": "",
+ "@editWidgets": {},
+ "storeInSecureStorageDescription": "",
+ "@storeInSecureStorageDescription": {},
+ "openChat": "",
+ "@openChat": {},
+ "kickUserDescription": "",
+ "@kickUserDescription": {},
+ "importNow": "",
+ "@importNow": {},
+ "pinMessage": "",
+ "@pinMessage": {},
+ "invite": "",
+ "@invite": {},
+ "enableMultiAccounts": "",
+ "@enableMultiAccounts": {},
+ "continueWith": "",
+ "@continueWith": {},
+ "indexedDbErrorTitle": "",
+ "@indexedDbErrorTitle": {},
+ "unsupportedAndroidVersionLong": "",
+ "@unsupportedAndroidVersionLong": {},
+ "storeSecurlyOnThisDevice": "",
+ "@storeSecurlyOnThisDevice": {},
+ "iUnderstand": "",
+ "@iUnderstand": {},
+ "screenSharingDetail": "",
+ "@screenSharingDetail": {},
+ "placeCall": "",
+ "@placeCall": {}
+}
diff --git a/assets/login_wallpaper.png b/assets/login_wallpaper.png
index 2ca9db9ca..2301f7ffd 100644
Binary files a/assets/login_wallpaper.png and b/assets/login_wallpaper.png differ
diff --git a/assets/pangea/apple.svg b/assets/pangea/apple.svg
new file mode 100644
index 000000000..133f976ba
--- /dev/null
+++ b/assets/pangea/apple.svg
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/assets/pangea/bot_faces/addled.png b/assets/pangea/bot_faces/addled.png
new file mode 100644
index 000000000..bc65a3c0b
Binary files /dev/null and b/assets/pangea/bot_faces/addled.png differ
diff --git a/assets/pangea/bot_faces/down.png b/assets/pangea/bot_faces/down.png
new file mode 100644
index 000000000..99bd22bad
Binary files /dev/null and b/assets/pangea/bot_faces/down.png differ
diff --git a/assets/pangea/bot_faces/left.png b/assets/pangea/bot_faces/left.png
new file mode 100644
index 000000000..dbf2b486f
Binary files /dev/null and b/assets/pangea/bot_faces/left.png differ
diff --git a/assets/pangea/bot_faces/right.png b/assets/pangea/bot_faces/right.png
new file mode 100644
index 000000000..c6283d710
Binary files /dev/null and b/assets/pangea/bot_faces/right.png differ
diff --git a/assets/pangea/bot_faces/shocked.png b/assets/pangea/bot_faces/shocked.png
new file mode 100644
index 000000000..b0a302a35
Binary files /dev/null and b/assets/pangea/bot_faces/shocked.png differ
diff --git a/assets/pangea/bot_faces/surprised.png b/assets/pangea/bot_faces/surprised.png
new file mode 100644
index 000000000..760279019
Binary files /dev/null and b/assets/pangea/bot_faces/surprised.png differ
diff --git a/assets/pangea/google.svg b/assets/pangea/google.svg
new file mode 100644
index 000000000..a504470e1
--- /dev/null
+++ b/assets/pangea/google.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/assets/pangea/logo.png b/assets/pangea/logo.png
new file mode 100644
index 000000000..96781ee7f
Binary files /dev/null and b/assets/pangea/logo.png differ
diff --git a/assets/pangea/pangea_logo.svg b/assets/pangea/pangea_logo.svg
new file mode 100644
index 000000000..f1169b6b1
--- /dev/null
+++ b/assets/pangea/pangea_logo.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/assets/sounds/WoodenBeaver_stereo_message-new-instant.ogg b/assets/sounds/WoodenBeaver_stereo_message-new-instant.ogg
new file mode 100644
index 000000000..3950f4903
Binary files /dev/null and b/assets/sounds/WoodenBeaver_stereo_message-new-instant.ogg differ
diff --git a/assets/start_chat.png b/assets/start_chat.png
new file mode 100644
index 000000000..bb9dd5524
Binary files /dev/null and b/assets/start_chat.png differ
diff --git a/config.sample.json b/config.sample.json
index ff37ec238..03ac42a6a 100644
--- a/config.sample.json
+++ b/config.sample.json
@@ -1,9 +1,9 @@
{
- "application_name": "FluffyChat",
+ "application_name": "PangeaChat",
"application_welcome_message": null,
- "default_homeserver": "matrix.org",
- "web_base_url": "https://fluffychat.im/web",
- "privacy_url": "https://fluffychat.im/en/privacy.html",
+ "default_homeserver": "matrix.pangea.chat",
+ "web_base_url": "https://web.pangea.chat",
+ "privacy_url": "https://pangea.chat/privacy",
"render_html": false,
"hide_redacted_events": false,
"hide_unknown_events": false
diff --git a/docs/en/privacy.html b/docs/en/privacy.html
new file mode 100644
index 000000000..6651972a1
--- /dev/null
+++ b/docs/en/privacy.html
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+ Please follow this link .
+
+
\ No newline at end of file
diff --git a/docs/how_to_fork.md b/docs/how_to_fork.md
new file mode 100644
index 000000000..2452c13fd
--- /dev/null
+++ b/docs/how_to_fork.md
@@ -0,0 +1,39 @@
+# How to create your own FluffyChat fork
+
+## 1. License
+FluffyChat is licensed under AGPL. Read the license
+(https://gitlab.com/ChristianPauly/fluffychat-flutter/-/blob/main/LICENSE) and
+make sure that your fork is open source under the same license and that you
+fulfill all requirements. Maybe you should consider contacting a lawyer **before**
+you publish your fork.
+
+## 2. Disable end-to-end encryption!
+Due to US export regulations you are not allowed to publish your app in
+a store or anywhere on a US server before you have removed everything regarding
+the encryption or fulfill the regulations.
+
+Learn more:
+https://www.bis.doc.gov/index.php/policy-guidance/encryption
+
+If you need help from us with using E2EE in your fork read more below under the
+topic "**Official Support**".
+
+## 3. Stay up to date!
+FluffyChat contains security related stuff. If we find a security bug, we will
+try to fix it as soon as possible and ship it with a new version. But this
+means that your fork is out of date and a security risk. You can't be awake
+24 hours a day so you must decide how you protect your users by chosing one
+of the following methods:
+
+1. Make your fork as minimal as possible and enable repository mirroring. Set
+up a CI which publishes new versions automatically if FluffyChat publishes a
+bug fix.
+2. Never sleep and pay a big team where one guy at least is never sleeping.
+3. Contact [famedly.com](https://famedly.com) to buy official support.
+
+## 4. Official Support
+FluffyChat is free as in free speech and not free beer! Please contact
+my company [famedly.com](https://famedly.com) for offers and official support
+and take in mind that it costs a lot of work and time to maintain FluffyChat
+or the Famedly Matrix SDK. So we can't give you support for free. So please
+expect around 1$ per month per user of your fork.
diff --git a/docs/index.html b/docs/index.html
index edfb771d0..cbd27caa5 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -94,16 +94,16 @@
code
-
Privacy
+ href="https://github.com/krille-chan/fluffychat/blob/main/PRIVACY.md">Privacy
-
Changelog
+ href="https://github.com/krille-chan/fluffychat/blob/main/CHANGELOG.md">Changelog
-
Translations
-
FluffyChat F-Droid
+ href="https://github.com/krille-chan/fluffychat/blob/main/docs/fdroid_repo.md">FluffyChat F-Droid
repository
-
-