diff --git a/.github/ISSUE_TEMPLATE/test_report.md b/.github/ISSUE_TEMPLATE/test_report.md
index beda783fb..9a7ed7028 100644
--- a/.github/ISSUE_TEMPLATE/test_report.md
+++ b/.github/ISSUE_TEMPLATE/test_report.md
@@ -2,7 +2,7 @@
name: đ Test
about: A detailed protocol for testing all features
title: 'Test Report'
-label: test
+labels: test
---
1. App receives push notifications over Firebase Cloud Messaging when it is in background/terminated:
diff --git a/.github/workflows/main_deploy.yaml b/.github/workflows/main_deploy.yaml
index a29d49a92..f6ad95bc8 100644
--- a/.github/workflows/main_deploy.yaml
+++ b/.github/workflows/main_deploy.yaml
@@ -60,6 +60,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/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 5f950ea01..3c87c2c94 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -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 7ad54f1fe..2fd07e8a9 100644
--- a/.github/workflows/versions.env
+++ b/.github/workflows/versions.env
@@ -1,2 +1,2 @@
-FLUTTER_VERSION=3.13.9
+FLUTTER_VERSION=3.16.0
JAVA_VERSION=17
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 97c360d4e..f8f042378 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,28 @@
+## 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)
diff --git a/Dockerfile b/Dockerfile
index 7859f2468..e5416091c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
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
@@ -8,4 +8,4 @@ RUN flutter build web --dart-define=FLUTTER_WEB_CANVASKIT_URL=canvaskit/ --relea
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/android/app/build.gradle b/android/app/build.gradle
index b6ebfed52..ef59c2ac4 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -73,6 +73,13 @@ android {
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/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_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 d4b696ba0..415221c28 100644
--- a/assets/l10n/intl_en.arb
+++ b/assets/l10n/intl_en.arb
@@ -3925,5 +3925,17 @@
"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"
+ "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": {
+ "query": {}
+ }
+ },
+ "searchChatsRooms": "Search for #chats, @users...",
+ "groupName": "Group name",
+ "createGroupAndInviteUsers": "Create a group and invite users",
+ "groupCanBeFoundViaSearch": "Group can be found via search"
}
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 3b708af78..630db9401 100644
--- a/assets/l10n/intl_es.arb
+++ b/assets/l10n/intl_es.arb
@@ -3618,11 +3618,358 @@
"placeholders": {}
},
"commandHint_create": "Crear un chat grupal vacÃo\nUse --no-encryption para deshabilitar el cifrado",
+ "replace": "Reemplazar",
+ "@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"
@@ -4262,5 +4609,55 @@
"why": "ÂŋPor quÊ?",
"definition": "DefiniciÃŗn",
"exampleSentence": "Ejemplo de frase",
- "addToClassTitle": "AÃąadir intercambio a la clase"
+ "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_eu.arb b/assets/l10n/intl_eu.arb
index ea4bfdb3b..375fc43e4 100644
--- a/assets/l10n/intl_eu.arb
+++ b/assets/l10n/intl_eu.arb
@@ -746,7 +746,7 @@
"type": "text",
"placeholders": {}
},
- "noGoogleServicesWarning": "Dirudienez Firebase Cloud Messaging ez dago erabilgarri zure mugikorrean. Jakinarazpenak jasotzeko MicroG edo Unified Push instalatzea 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": {}
@@ -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": {
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 0b3839887..1dc681ede 100644
--- a/assets/l10n/intl_fi.arb
+++ b/assets/l10n/intl_fi.arb
@@ -2620,5 +2620,33 @@
"importNow": "Tuo nyt",
"@importNow": {},
"invite": "Kutsu",
- "@invite": {}
+ "@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 79329c83e..a514d8fef 100644
--- a/assets/l10n/intl_gl.arb
+++ b/assets/l10n/intl_gl.arb
@@ -2657,5 +2657,7 @@
"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": {}
+ "@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 b64f3ec47..1ac5468c5 100644
--- a/assets/l10n/intl_hr.arb
+++ b/assets/l10n/intl_hr.arb
@@ -2625,5 +2625,37 @@
}
},
"pleaseEnterANumber": "UpiÅĄi broj veÄi od 0",
- "@pleaseEnterANumber": {}
+ "@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 6a9f22c74..705d8ac47 100644
--- a/assets/l10n/intl_pl.arb
+++ b/assets/l10n/intl_pl.arb
@@ -2610,5 +2610,45 @@
"invite": "Zaproszenie",
"@invite": {},
"continueWith": "Kontynuuj z:",
- "@continueWith": {}
+ "@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 93d784b63..eb7291df0 100644
--- a/assets/l10n/intl_th.arb
+++ b/assets/l10n/intl_th.arb
@@ -246,5 +246,2375 @@
"@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_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 38f47563b..676ca3aa6 100644
--- a/assets/l10n/intl_zh.arb
+++ b/assets/l10n/intl_zh.arb
@@ -2625,5 +2625,37 @@
}
},
"pleaseEnterANumber": "蝎čžå
Ĩ大äē 0 įæ°",
- "@pleaseEnterANumber": {}
+ "@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/docs/index.html b/docs/index.html
index 4114cf2e8..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
-
controller.setReadMarker(),
diff --git a/lib/pages/chat/event_info_dialog.dart b/lib/pages/chat/event_info_dialog.dart
index 0846e137e..e8ff6dad9 100644
--- a/lib/pages/chat/event_info_dialog.dart
+++ b/lib/pages/chat/event_info_dialog.dart
@@ -51,6 +51,8 @@ class EventInfoDialog extends StatelessWidget {
leading: Avatar(
mxContent: event.senderFromMemoryOrFallback.avatarUrl,
name: event.senderFromMemoryOrFallback.calcDisplayname(),
+ client: event.room.client,
+ presenceUserId: event.senderId,
),
title: Text(L10n.of(context)!.sender),
subtitle: Text(
diff --git a/lib/pages/chat/events/html_message.dart b/lib/pages/chat/events/html_message.dart
index cc5641189..bafd50e5d 100644
--- a/lib/pages/chat/events/html_message.dart
+++ b/lib/pages/chat/events/html_message.dart
@@ -140,7 +140,11 @@ class HtmlMessage extends StatelessWidget {
const ImageExtension(),
FontColorExtension(),
],
- onLinkTap: (url, _, __) => UrlLauncher(context, url).launchUrl(),
+ onLinkTap: (url, _, element) => UrlLauncher(
+ context,
+ url,
+ element?.text,
+ ).launchUrl(),
onlyRenderTheseTags: const {
...allowedHtmlTags,
// Needed to make it work properly
diff --git a/lib/pages/chat/events/image_bubble.dart b/lib/pages/chat/events/image_bubble.dart
index 2225b0a77..0fd067cbd 100644
--- a/lib/pages/chat/events/image_bubble.dart
+++ b/lib/pages/chat/events/image_bubble.dart
@@ -1,3 +1,4 @@
+import 'package:fluffychat/config/app_config.dart';
import 'package:fluffychat/pages/image_viewer/image_viewer.dart';
import 'package:fluffychat/widgets/mxc_image.dart';
import 'package:flutter/material.dart';
@@ -15,6 +16,7 @@ class ImageBubble extends StatelessWidget {
final double width;
final double height;
final void Function()? onTap;
+ final BorderRadius? borderRadius;
const ImageBubble(
this.event, {
@@ -27,6 +29,7 @@ class ImageBubble extends StatelessWidget {
this.height = 300,
this.animated = false,
this.onTap,
+ this.borderRadius,
super.key,
});
@@ -47,8 +50,10 @@ class ImageBubble extends StatelessWidget {
var height = 32;
if (ratio > 1.0) {
height = (width / ratio).round();
+ if (height <= 0) height = 1;
} else {
width = (height * ratio).round();
+ if (width <= 0) width = 1;
}
return SizedBox(
width: this.width,
@@ -77,19 +82,25 @@ class ImageBubble extends StatelessWidget {
@override
Widget build(BuildContext context) {
- return InkWell(
- onTap: () => _onTap(context),
- child: Hero(
- tag: event.eventId,
- child: AnimatedSwitcher(
- duration: const Duration(seconds: 1),
- child: Container(
+ final borderRadius =
+ this.borderRadius ?? BorderRadius.circular(AppConfig.borderRadius);
+ return Material(
+ shape: RoundedRectangleBorder(
+ borderRadius: borderRadius,
+ side: BorderSide(color: Theme.of(context).dividerColor),
+ ),
+ child: InkWell(
+ onTap: () => _onTap(context),
+ borderRadius: borderRadius,
+ child: Hero(
+ tag: event.eventId,
+ child: ConstrainedBox(
constraints: maxSize
? BoxConstraints(
maxWidth: width,
maxHeight: height,
)
- : null,
+ : const BoxConstraints.expand(),
child: MxcImage(
event: event,
width: width,
diff --git a/lib/pages/chat/events/message.dart b/lib/pages/chat/events/message.dart
index cc4b092f3..2ff8a6605 100644
--- a/lib/pages/chat/events/message.dart
+++ b/lib/pages/chat/events/message.dart
@@ -12,7 +12,6 @@ import 'package:matrix/matrix.dart';
import 'package:swipe_to_action/swipe_to_action.dart';
import '../../../config/app_config.dart';
-import '../../../widgets/hover_builder.dart';
import 'message_content.dart';
import 'message_reactions.dart';
import 'reply_content.dart';
@@ -23,10 +22,10 @@ class Message extends StatelessWidget {
final Event event;
final Event? nextEvent;
final bool displayReadMarker;
- final void Function(Event)? onSelect;
- final void Function(Event)? onAvatarTab;
- final void Function(Event)? onInfoTab;
- final void Function(String)? scrollToEventId;
+ final void Function(Event) onSelect;
+ final void Function(Event) onAvatarTab;
+ final void Function(Event) onInfoTab;
+ final void Function(String) scrollToEventId;
final void Function() onSwipe;
final bool longPressSelect;
final bool selected;
@@ -35,17 +34,17 @@ class Message extends StatelessWidget {
final LanguageModel? selectedDisplayLang;
final bool immersionMode;
final bool definitions;
- // #Pangea
+ // Pangea#
const Message(
this.event, {
this.nextEvent,
this.displayReadMarker = false,
this.longPressSelect = false,
- this.onSelect,
- this.onInfoTab,
- this.onAvatarTab,
- this.scrollToEventId,
+ required this.onSelect,
+ required this.onInfoTab,
+ required this.onAvatarTab,
+ required this.scrollToEventId,
required this.onSwipe,
this.selected = false,
required this.timeline,
@@ -53,7 +52,7 @@ class Message extends StatelessWidget {
required this.selectedDisplayLang,
required this.immersionMode,
required this.definitions,
- // #Pangea
+ // Pangea#
super.key,
});
@@ -129,231 +128,218 @@ class Message extends StatelessWidget {
: Theme.of(context).colorScheme.primaryContainer;
}
- //#Pangea
+ // #Pangea
final pangeaMessageEvent = PangeaMessageEvent(
event: event,
timeline: timeline,
ownMessage: ownMessage,
selected: selected,
);
- //#Pangea
+ // Pangea#
- final row = HoverBuilder(
- builder: (context, hovered) => Row(
- crossAxisAlignment: CrossAxisAlignment.start,
- mainAxisAlignment: rowMainAxisAlignment,
- children: [
- if (hovered || selected)
- SizedBox(
- width: Avatar.defaultSize,
- height: Avatar.defaultSize - 8,
- child: Checkbox.adaptive(
- value: selected,
- onChanged: (_) => onSelect?.call(event),
+ final row = Row(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ mainAxisAlignment: rowMainAxisAlignment,
+ children: [
+ if (sameSender || ownMessage)
+ SizedBox(
+ width: Avatar.defaultSize,
+ child: Center(
+ child: SizedBox(
+ width: 16,
+ height: 16,
+ child: event.status == EventStatus.sending
+ ? const CircularProgressIndicator.adaptive(
+ strokeWidth: 2,
+ )
+ : event.status == EventStatus.error
+ ? const Icon(Icons.error, color: Colors.red)
+ : null,
),
- )
- else if (sameSender || ownMessage)
- SizedBox(
- width: Avatar.defaultSize,
- child: Center(
- child: SizedBox(
- width: 16,
- height: 16,
- child: event.status == EventStatus.sending
- ? const CircularProgressIndicator.adaptive(
- strokeWidth: 2,
- )
- : event.status == EventStatus.error
- ? const Icon(Icons.error, color: Colors.red)
- : null,
- ),
- ),
- )
- else
- FutureBuilder(
- future: event.fetchSenderUser(),
- builder: (context, snapshot) {
- final user = snapshot.data ?? event.senderFromMemoryOrFallback;
- return Avatar(
- mxContent: user.avatarUrl,
- name: user.calcDisplayname(),
- onTap: () => onAvatarTab!(event),
- );
- },
),
- Expanded(
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- mainAxisSize: MainAxisSize.min,
- children: [
- if (!sameSender)
- Padding(
- padding: const EdgeInsets.only(left: 8.0, bottom: 4),
- child: ownMessage || event.room.isDirectChat
- ? const SizedBox(height: 12)
- : FutureBuilder(
- future: event.fetchSenderUser(),
- builder: (context, snapshot) {
- final displayname =
- snapshot.data?.calcDisplayname() ??
- event.senderFromMemoryOrFallback
- .calcDisplayname();
- return Text(
- displayname,
- style: TextStyle(
- fontSize: 12,
- fontWeight: FontWeight.bold,
- color: (Theme.of(context).brightness ==
- Brightness.light
- ? displayname.color
- : displayname.lightColorText),
- ),
- );
- },
- ),
- ),
- Container(
- alignment: alignment,
- padding: const EdgeInsets.only(left: 8),
- child: Material(
- color: noBubble ? Colors.transparent : color,
- borderRadius: borderRadius,
- clipBehavior: Clip.antiAlias,
- // #Pangea
- child: CompositedTransformTarget(
- link: MatrixState.pAnyState
- .layerLinkAndKey(event.eventId)
- .link,
- child: Container(
- key: MatrixState.pAnyState
- .layerLinkAndKey(event.eventId)
- .key,
- // #Pangea
- decoration: BoxDecoration(
- borderRadius:
- BorderRadius.circular(AppConfig.borderRadius),
- ),
- padding: noBubble || noPadding
- ? EdgeInsets.zero
- : const EdgeInsets.symmetric(
- horizontal: 16,
- vertical: 8,
+ )
+ else
+ FutureBuilder(
+ future: event.fetchSenderUser(),
+ builder: (context, snapshot) {
+ final user = snapshot.data ?? event.senderFromMemoryOrFallback;
+ return Avatar(
+ mxContent: user.avatarUrl,
+ name: user.calcDisplayname(),
+ presenceUserId: user.stateKey,
+ onTap: () => onAvatarTab(event),
+ );
+ },
+ ),
+ Expanded(
+ child: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ if (!sameSender)
+ Padding(
+ padding: const EdgeInsets.only(left: 8.0, bottom: 4),
+ child: ownMessage || event.room.isDirectChat
+ ? const SizedBox(height: 12)
+ : FutureBuilder(
+ future: event.fetchSenderUser(),
+ builder: (context, snapshot) {
+ final displayname =
+ snapshot.data?.calcDisplayname() ??
+ event.senderFromMemoryOrFallback
+ .calcDisplayname();
+ return Text(
+ displayname,
+ style: TextStyle(
+ fontSize: 12,
+ fontWeight: FontWeight.bold,
+ color: (Theme.of(context).brightness ==
+ Brightness.light
+ ? displayname.color
+ : displayname.lightColorText),
),
- constraints: const BoxConstraints(
- maxWidth: FluffyThemes.columnWidth * 1.5,
+ );
+ },
),
- child: Column(
- mainAxisSize: MainAxisSize.min,
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- if (event.relationshipType ==
- RelationshipTypes.reply)
- FutureBuilder(
- future: event.getReplyEvent(timeline),
- builder: (BuildContext context, snapshot) {
- final replyEvent = snapshot.hasData
- ? snapshot.data!
- : Event(
- eventId: event.relationshipEventId!,
- content: {
- 'msgtype': 'm.text',
- 'body': '...',
- },
- senderId: event.senderId,
- type: 'm.room.message',
- room: event.room,
- status: EventStatus.sent,
- originServerTs: DateTime.now(),
- );
- return InkWell(
- onTap: () {
- if (scrollToEventId != null) {
- scrollToEventId!(replyEvent.eventId);
- }
- },
- child: AbsorbPointer(
- child: Container(
- margin: const EdgeInsets.symmetric(
- vertical: 4.0,
- ),
- child: ReplyContent(
- replyEvent,
- ownMessage: ownMessage,
- timeline: timeline,
- ),
+ ),
+ Container(
+ alignment: alignment,
+ padding: const EdgeInsets.only(left: 8),
+ child: Material(
+ color: noBubble ? Colors.transparent : color,
+ borderRadius: borderRadius,
+ clipBehavior: Clip.antiAlias,
+ // #Pangea
+ child: CompositedTransformTarget(
+ link: MatrixState.pAnyState
+ .layerLinkAndKey(event.eventId)
+ .link,
+ child: Container(
+ key: MatrixState.pAnyState
+ .layerLinkAndKey(event.eventId)
+ .key,
+ // Pangea#
+ decoration: BoxDecoration(
+ borderRadius:
+ BorderRadius.circular(AppConfig.borderRadius),
+ ),
+ padding: noBubble || noPadding
+ ? EdgeInsets.zero
+ : const EdgeInsets.symmetric(
+ horizontal: 16,
+ vertical: 8,
+ ),
+ constraints: const BoxConstraints(
+ maxWidth: FluffyThemes.columnWidth * 1.5,
+ ),
+ child: Column(
+ mainAxisSize: MainAxisSize.min,
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ if (event.relationshipType == RelationshipTypes.reply)
+ FutureBuilder(
+ future: event.getReplyEvent(timeline),
+ builder: (BuildContext context, snapshot) {
+ final replyEvent = snapshot.hasData
+ ? snapshot.data!
+ : Event(
+ eventId: event.relationshipEventId!,
+ content: {
+ 'msgtype': 'm.text',
+ 'body': '...',
+ },
+ senderId: event.senderId,
+ type: 'm.room.message',
+ room: event.room,
+ status: EventStatus.sent,
+ originServerTs: DateTime.now(),
+ );
+ return InkWell(
+ onTap: () =>
+ scrollToEventId(replyEvent.eventId),
+ child: AbsorbPointer(
+ child: Container(
+ margin: const EdgeInsets.symmetric(
+ vertical: 4.0,
+ ),
+ child: ReplyContent(
+ replyEvent,
+ ownMessage: ownMessage,
+ timeline: timeline,
),
),
- );
- },
- ),
- MessageContent(
- displayEvent,
- textColor: textColor,
- onInfoTab: onInfoTab,
- // #Pangea
- selected: selected,
- pangeaMessageEvent: pangeaMessageEvent,
- selectedDisplayLang: selectedDisplayLang,
- immersionMode: immersionMode,
- definitions: definitions,
- // Pangea#
+ ),
+ );
+ },
),
- if (event.hasAggregatedEvents(
- timeline,
- RelationshipTypes.edit,
- )
- // #Pangea
- ||
- (pangeaMessageEvent.showUseType)
- // #Pangea
- )
- Padding(
- padding: const EdgeInsets.only(
- top: 4.0,
- ),
- child: Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- // #Pangea
- if (pangeaMessageEvent.showUseType) ...[
- pangeaMessageEvent.useType.iconView(
- context,
- textColor.withAlpha(164),
- ),
- const SizedBox(width: 4),
- ],
- if (event.hasAggregatedEvents(
- timeline,
- RelationshipTypes.edit,
- )) ...[
- // #Pangea
- Icon(
- Icons.edit_outlined,
- color: textColor.withAlpha(164),
- size: 14,
- ),
- Text(
- ' - ${displayEvent.originServerTs.localizedTimeShort(context)}',
- style: TextStyle(
- color: textColor.withAlpha(164),
- fontSize: 12,
- ),
- ),
- ],
- ],
- ),
+ MessageContent(
+ displayEvent,
+ textColor: textColor,
+ onInfoTab: onInfoTab,
+ borderRadius: borderRadius,
+ // #Pangea
+ selected: selected,
+ pangeaMessageEvent: pangeaMessageEvent,
+ selectedDisplayLang: selectedDisplayLang,
+ immersionMode: immersionMode,
+ definitions: definitions,
+ // Pangea#
+ ),
+ if (event.hasAggregatedEvents(
+ timeline,
+ RelationshipTypes.edit,
+ )
+ // #Pangea
+ ||
+ (pangeaMessageEvent.showUseType)
+ // Pangea#
+ )
+ Padding(
+ padding: const EdgeInsets.only(
+ top: 4.0,
),
- ],
- ),
+ child: Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ // #Pangea
+ if (pangeaMessageEvent.showUseType) ...[
+ pangeaMessageEvent.useType.iconView(
+ context,
+ textColor.withAlpha(164),
+ ),
+ const SizedBox(width: 4),
+ ],
+ if (event.hasAggregatedEvents(
+ timeline,
+ RelationshipTypes.edit,
+ )) ...[
+ // Pangea#
+ Icon(
+ Icons.edit_outlined,
+ color: textColor.withAlpha(164),
+ size: 14,
+ ),
+ Text(
+ ' - ${displayEvent.originServerTs.localizedTimeShort(context)}',
+ style: TextStyle(
+ color: textColor.withAlpha(164),
+ fontSize: 12,
+ ),
+ ),
+ ],
+ ],
+ ),
+ ),
+ ],
),
),
),
),
- ],
- ),
+ ),
+ ],
),
- ],
- ),
+ ),
+ ],
);
Widget container;
if (event.hasAggregatedEvents(timeline, RelationshipTypes.reaction) ||
@@ -452,23 +438,20 @@ class Message extends StatelessWidget {
),
direction: SwipeDirection.endToStart,
onSwipe: (_) => onSwipe(),
- child: Center(
- child: InkWell(
- onTap: longPressSelect ? () => onSelect!(event) : null,
- onLongPress: () => onSelect!(event),
- child: Container(
- color: selected
- ? Theme.of(context).primaryColor.withAlpha(100)
- : Theme.of(context).primaryColor.withAlpha(0),
- constraints: const BoxConstraints(
- maxWidth: FluffyThemes.columnWidth * 2.5,
- ),
- padding: const EdgeInsets.symmetric(
- horizontal: 8.0,
- vertical: 4.0,
- ),
- child: container,
+ child: InkWell(
+ onTap: () => onSelect(event),
+ child: Container(
+ color: selected
+ ? Theme.of(context).primaryColor.withAlpha(100)
+ : Theme.of(context).primaryColor.withAlpha(0),
+ constraints: const BoxConstraints(
+ maxWidth: FluffyThemes.columnWidth * 2.5,
),
+ padding: const EdgeInsets.symmetric(
+ horizontal: 8.0,
+ vertical: 4.0,
+ ),
+ child: container,
),
),
);
diff --git a/lib/pages/chat/events/message_content.dart b/lib/pages/chat/events/message_content.dart
index 6e3115ab5..69cc94860 100644
--- a/lib/pages/chat/events/message_content.dart
+++ b/lib/pages/chat/events/message_content.dart
@@ -26,6 +26,7 @@ class MessageContent extends StatelessWidget {
final Event event;
final Color textColor;
final void Function(Event)? onInfoTab;
+ final BorderRadius borderRadius;
// #Pangea
final bool selected;
final PangeaMessageEvent pangeaMessageEvent;
@@ -49,6 +50,7 @@ class MessageContent extends StatelessWidget {
required this.immersionMode,
required this.definitions,
// Pangea#
+ required this.borderRadius,
});
void _verifyOrRequestKey(BuildContext context) async {
@@ -97,6 +99,7 @@ class MessageContent extends StatelessWidget {
leading: Avatar(
mxContent: sender.avatarUrl,
name: sender.calcDisplayname(),
+ presenceUserId: sender.stateKey,
),
title: Text(sender.calcDisplayname()),
subtitle: Text(event.originServerTs.localizedTime(context)),
@@ -130,6 +133,7 @@ class MessageContent extends StatelessWidget {
width: 400,
height: 300,
fit: BoxFit.cover,
+ borderRadius: borderRadius,
);
case MessageTypes.Sticker:
if (event.redacted) continue textmessage;
diff --git a/lib/pages/chat/events/message_reactions.dart b/lib/pages/chat/events/message_reactions.dart
index ac9722ed5..788dfec71 100644
--- a/lib/pages/chat/events/message_reactions.dart
+++ b/lib/pages/chat/events/message_reactions.dart
@@ -208,6 +208,7 @@ class _AdaptableReactorsDialog extends StatelessWidget {
mxContent: reactor.avatarUrl,
name: reactor.displayName,
client: client,
+ presenceUserId: reactor.stateKey,
),
label: Text(reactor.displayName!),
),
diff --git a/lib/pages/chat/events/video_player.dart b/lib/pages/chat/events/video_player.dart
index eee2516cf..28a06267b 100644
--- a/lib/pages/chat/events/video_player.dart
+++ b/lib/pages/chat/events/video_player.dart
@@ -58,6 +58,7 @@ class EventVideoPlayerState extends State {
);
} else if (!kIsWeb && tmpFile != null && _chewieManager == null) {
_chewieManager ??= ChewieController(
+ useRootNavigator: false,
videoPlayerController: VideoPlayerController.file(tmpFile),
autoPlay: true,
autoInitialize: true,
diff --git a/lib/pages/chat_details/participant_list_item.dart b/lib/pages/chat_details/participant_list_item.dart
index a0325b7c8..89b8d034d 100644
--- a/lib/pages/chat_details/participant_list_item.dart
+++ b/lib/pages/chat_details/participant_list_item.dart
@@ -103,8 +103,11 @@ class ParticipantListItem extends StatelessWidget {
],
),
subtitle: Text(user.id),
- leading:
- Avatar(mxContent: user.avatarUrl, name: user.calcDisplayname()),
+ leading: Avatar(
+ mxContent: user.avatarUrl,
+ name: user.calcDisplayname(),
+ presenceUserId: user.stateKey,
+ ),
),
);
}
diff --git a/lib/pages/chat_list/chat_list_header.dart b/lib/pages/chat_list/chat_list_header.dart
index 261e86be9..e8c71c55a 100644
--- a/lib/pages/chat_list/chat_list_header.dart
+++ b/lib/pages/chat_list/chat_list_header.dart
@@ -53,7 +53,7 @@ class ChatListHeader extends StatelessWidget implements PreferredSizeWidget {
// borderSide: BorderSide.none,
// borderRadius: BorderRadius.circular(99),
// ),
- // hintText: L10n.of(context)!.search,
+ // hintText: L10n.of(context)!.searchChatsRooms,
// floatingLabelBehavior: FloatingLabelBehavior.never,
// prefixIcon: controller.isSearchMode
// ? IconButton(
diff --git a/lib/pages/chat_list/chat_list_item.dart b/lib/pages/chat_list/chat_list_item.dart
index 3fd5c7422..d48ee688b 100644
--- a/lib/pages/chat_list/chat_list_item.dart
+++ b/lib/pages/chat_list/chat_list_item.dart
@@ -159,6 +159,11 @@ class ChatListItem extends StatelessWidget {
: 14.0
: 0.0;
final hasNotifications = room.notificationCount > 0;
+ final backgroundColor = selected
+ ? Theme.of(context).colorScheme.primaryContainer
+ : activeChat
+ ? Theme.of(context).colorScheme.secondaryContainer
+ : null;
final displayname = room.getLocalizedDisplayname(
MatrixLocals(L10n.of(context)!),
);
@@ -170,11 +175,7 @@ class ChatListItem extends StatelessWidget {
child: Material(
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
clipBehavior: Clip.hardEdge,
- color: selected
- ? Theme.of(context).colorScheme.primaryContainer
- : activeChat
- ? Theme.of(context).colorScheme.secondaryContainer
- : Colors.transparent,
+ color: backgroundColor,
child: ListTile(
visualDensity: const VisualDensity(vertical: -0.5),
contentPadding: const EdgeInsets.symmetric(horizontal: 8),
@@ -196,6 +197,8 @@ class ChatListItem extends StatelessWidget {
//#Pangea
littleIcon: room.roomTypeIcon,
// Pangea#
+ presenceUserId: room.directChatMatrixID,
+ presenceBackgroundColor: backgroundColor,
),
title: Row(
children: [
diff --git a/lib/pages/chat_list/chat_list_view.dart b/lib/pages/chat_list/chat_list_view.dart
index 04fba6670..f23d16b1d 100644
--- a/lib/pages/chat_list/chat_list_view.dart
+++ b/lib/pages/chat_list/chat_list_view.dart
@@ -98,16 +98,23 @@ class ChatListView extends StatelessWidget {
stream: Matrix.of(context).onShareContentChanged.stream,
builder: (_, __) {
final selectMode = controller.selectMode;
- return WillPopScope(
- onWillPop: () async {
+ return PopScope(
+ canPop: controller.selectMode == SelectMode.normal &&
+ !controller.isSearchMode &&
+ controller.activeFilter ==
+ (AppConfig.separateChatTypes
+ ? ActiveFilter.messages
+ : ActiveFilter.allChats),
+ onPopInvoked: (pop) async {
+ if (pop) return;
final selMode = controller.selectMode;
if (controller.isSearchMode) {
controller.cancelSearch();
- return false;
+ return;
}
if (selMode != SelectMode.normal) {
controller.cancelAction();
- return false;
+ return;
}
if (controller.activeFilter !=
(AppConfig.separateChatTypes
@@ -115,9 +122,8 @@ class ChatListView extends StatelessWidget {
: ActiveFilter.allChats)) {
controller
.onDestinationSelected(AppConfig.separateChatTypes ? 1 : 0);
- return false;
+ return;
}
- return true;
},
child: Row(
children: [
diff --git a/lib/pages/chat_list/space_view.dart b/lib/pages/chat_list/space_view.dart
index bec5c0f6d..e066eb50f 100644
--- a/lib/pages/chat_list/space_view.dart
+++ b/lib/pages/chat_list/space_view.dart
@@ -395,13 +395,13 @@ class _SpaceViewState extends State {
// Pangea#
final canLoadMore = response.nextBatch != null;
- return WillPopScope(
- onWillPop: () async {
+ return PopScope(
+ canPop: parentSpace == null,
+ onPopInvoked: (pop) async {
+ if (pop) return;
if (parentSpace != null) {
widget.controller.setActiveSpace(parentSpace.id);
- return false;
}
- return true;
},
child: CustomScrollView(
controller: widget.scrollController,
diff --git a/lib/pages/invitation_selection/invitation_selection_view.dart b/lib/pages/invitation_selection/invitation_selection_view.dart
index 4b6321fb2..aa055ddf6 100644
--- a/lib/pages/invitation_selection/invitation_selection_view.dart
+++ b/lib/pages/invitation_selection/invitation_selection_view.dart
@@ -167,6 +167,7 @@ class _InviteContactListTile extends StatelessWidget {
leading: Avatar(
mxContent: avatarUrl,
name: displayname,
+ presenceUserId: userId,
),
title: Text(
displayname,
diff --git a/lib/pages/new_group/new_group.dart b/lib/pages/new_group/new_group.dart
index 1a1ab6c9e..28d325d9f 100644
--- a/lib/pages/new_group/new_group.dart
+++ b/lib/pages/new_group/new_group.dart
@@ -1,18 +1,16 @@
-import 'dart:developer';
+import 'dart:typed_data';
+import 'package:file_picker/file_picker.dart';
import 'package:fluffychat/pages/new_group/new_group_view.dart';
import 'package:fluffychat/pangea/controllers/pangea_controller.dart';
import 'package:fluffychat/pangea/models/chat_topic_model.dart';
import 'package:fluffychat/pangea/models/lemma.dart';
import 'package:fluffychat/pangea/utils/class_chat_power_levels.dart';
-import 'package:fluffychat/pangea/utils/error_handler.dart';
import 'package:fluffychat/pangea/utils/firebase_analytics.dart';
import 'package:fluffychat/pangea/widgets/class/add_space_toggles.dart';
import 'package:fluffychat/widgets/matrix.dart';
-import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
-import 'package:future_loading_dialog/future_loading_dialog.dart';
import 'package:go_router/go_router.dart';
import 'package:matrix/matrix.dart' as sdk;
@@ -24,25 +22,53 @@ class NewGroup extends StatefulWidget {
}
class NewGroupController extends State {
- TextEditingController controller = TextEditingController();
- bool publicGroup = false;
+ TextEditingController nameController = TextEditingController();
- //#Pangea
+ TextEditingController topicController = TextEditingController();
+
+ bool publicGroup = false;
+ bool groupCanBeFound = true;
+
+ Uint8List? avatar;
+
+ Uri? avatarUrl;
+
+ Object? error;
+
+ bool loading = false;
+
+ // #Pangea
PangeaController pangeaController = MatrixState.pangeaController;
final GlobalKey addToSpaceKey = GlobalKey();
ChatTopic chatTopic = ChatTopic.empty;
void setVocab(List vocab) => setState(() => chatTopic.vocab = vocab);
+
String? get activeSpaceId =>
GoRouterState.of(context).pathParameters['spaceid'];
// Pangea#
void setPublicGroup(bool b) => setState(() => publicGroup = b);
+ void setGroupCanBeFound(bool b) => setState(() => groupCanBeFound = b);
+
+ void selectPhoto() async {
+ final photo = await FilePicker.platform.pickFiles(
+ type: FileType.image,
+ allowMultiple: false,
+ withData: true,
+ );
+
+ setState(() {
+ avatarUrl = null;
+ avatar = photo?.files.singleOrNull?.bytes;
+ });
+ }
+
void submitAction([_]) async {
// #Pangea
- if (controller.text.isEmpty) {
+ if (nameController.text.isEmpty) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(L10n.of(context)!.emptyChatNameWarning),
@@ -52,48 +78,68 @@ class NewGroupController extends State {
}
// Pangea#
final client = Matrix.of(context).client;
- final roomID = await showFutureLoadingDialog(
- context: context,
- future: () async {
- final roomId = await client.createGroupChat(
- // #Pangea
- // visibility:
- // publicGroup ? sdk.Visibility.public : sdk.Visibility.private,
- // preset: publicGroup
- // ? sdk.CreateRoomPreset.publicChat
- // : sdk.CreateRoomPreset.privateChat,
- preset: sdk.CreateRoomPreset.publicChat,
- groupName: controller.text.isNotEmpty ? controller.text : null,
- powerLevelContentOverride:
- await ClassChatPowerLevels.powerLevelOverrideForClassChat(
- context,
- addToSpaceKey.currentState!.parents
- .map((suggestionStatus) => suggestionStatus.room)
- .toList(),
- ),
- // Pangea#
+
+ try {
+ setState(() {
+ loading = true;
+ error = null;
+ });
+
+ final avatar = this.avatar;
+ avatarUrl ??= avatar == null ? null : await client.uploadContent(avatar);
+
+ if (!mounted) return;
+
+ final roomId = await client.createGroupChat(
+ // #Pangea
+ // visibility:
+ // publicGroup ? sdk.Visibility.public : sdk.Visibility.private,
+ // preset: publicGroup
+ // ? sdk.CreateRoomPreset.publicChat
+ // : sdk.CreateRoomPreset.privateChat,
+ // groupName: nameController.text.isNotEmpty ? nameController.text : null,
+ // initialState: [
+ // if (topicController.text.isNotEmpty)
+ // sdk.StateEvent(
+ // type: sdk.EventTypes.RoomTopic,
+ // content: {'topic': topicController.text},
+ // ),
+ // if (avatar != null)
+ // sdk.StateEvent(
+ // type: sdk.EventTypes.RoomAvatar,
+ // content: {'url': avatarUrl.toString()},
+ // ),
+ // ],
+ groupName: nameController.text,
+ preset: sdk.CreateRoomPreset.publicChat,
+ powerLevelContentOverride:
+ await ClassChatPowerLevels.powerLevelOverrideForClassChat(
+ context,
+ addToSpaceKey.currentState!.parents
+ .map((suggestionStatus) => suggestionStatus.room)
+ .toList(),
+ ),
+ // Pangea#
+ );
+ if (!mounted) return;
+ if (publicGroup && groupCanBeFound) {
+ await client.setRoomVisibilityOnDirectory(
+ roomId,
+ visibility: sdk.Visibility.public,
);
- return roomId;
- },
- // #Pangea
- onError: (exception) {
- ErrorHandler.logError(e: exception, s: StackTrace.current);
- return exception.toString();
- },
- // Pangea#
- );
- if (roomID.error == null) {
+ }
//#Pangea
- GoogleAnalytics.createChat(roomID.result!);
- await addToSpaceKey.currentState!.addSpaces(roomID.result!);
+ GoogleAnalytics.createChat(roomId);
+ await addToSpaceKey.currentState!.addSpaces(roomId);
//Pangea#
- context.go('/rooms/${roomID.result!}/invite');
- //#Pangea
- } else {
- debugger(when: kDebugMode);
- ErrorHandler.logError(e: roomID.error, s: StackTrace.current);
+ context.go('/rooms/$roomId/invite');
+ } catch (e, s) {
+ sdk.Logs().d('Unable to create group', e, s);
+ setState(() {
+ error = e;
+ loading = false;
+ });
}
- //Pangea#
}
//#Pangea
diff --git a/lib/pages/new_group/new_group_view.dart b/lib/pages/new_group/new_group_view.dart
index cadb47633..62addb0dc 100644
--- a/lib/pages/new_group/new_group_view.dart
+++ b/lib/pages/new_group/new_group_view.dart
@@ -1,6 +1,9 @@
+import 'package:fluffychat/config/themes.dart';
import 'package:fluffychat/pages/new_group/new_group.dart';
import 'package:fluffychat/pangea/widgets/class/add_class_and_invite.dart';
import 'package:fluffychat/pangea/widgets/class/add_space_toggles.dart';
+import 'package:fluffychat/utils/localized_exception_extension.dart';
+import 'package:fluffychat/widgets/avatar.dart';
import 'package:fluffychat/widgets/layouts/max_width_body.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
@@ -12,44 +15,73 @@ class NewGroupView extends StatelessWidget {
@override
Widget build(BuildContext context) {
+ final avatar = controller.avatar;
+ final error = controller.error;
return Scaffold(
appBar: AppBar(
+ leading: Center(
+ child: BackButton(
+ onPressed: controller.loading ? null : Navigator.of(context).pop,
+ ),
+ ),
title: Text(L10n.of(context)!.createGroup),
),
body: MaxWidthBody(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
+ const SizedBox(height: 16),
Padding(
- padding: const EdgeInsets.all(12.0),
- child: TextField(
- controller: controller.controller,
- autofocus: true,
- autocorrect: false,
- textInputAction: TextInputAction.go,
- onSubmitted: controller.submitAction,
- decoration: InputDecoration(
- // #Pangea
- labelText: L10n.of(context)!.enterAGroupName,
- // labelText: L10n.of(context)!.optionalGroupName,
- prefixIcon: const Icon(Icons.people_outlined),
- // hintText: L10n.of(context)!.enterAGroupName,
- // Pangea#
- ),
+ padding: const EdgeInsets.symmetric(horizontal: 16.0),
+ child: Row(
+ children: [
+ InkWell(
+ borderRadius: BorderRadius.circular(90),
+ onTap: controller.loading ? null : controller.selectPhoto,
+ child: CircleAvatar(
+ radius: Avatar.defaultSize / 2,
+ child: avatar == null
+ ? const Icon(Icons.camera_alt_outlined)
+ : ClipRRect(
+ borderRadius: BorderRadius.circular(90),
+ child: Image.memory(
+ avatar,
+ width: Avatar.defaultSize,
+ height: Avatar.defaultSize,
+ fit: BoxFit.cover,
+ ),
+ ),
+ ),
+ ),
+ const SizedBox(width: 16),
+ Expanded(
+ child: TextField(
+ controller: controller.nameController,
+ autocorrect: false,
+ readOnly: controller.loading,
+ decoration: InputDecoration(
+ prefixIcon: const Icon(Icons.people_outlined),
+ hintText: L10n.of(context)!.groupName,
+ ),
+ ),
+ ),
+ ],
),
),
+ const SizedBox(height: 16),
// #Pangea
- // SwitchListTile.adaptive(
- // secondary: const Icon(Icons.public_outlined),
- // title: Text(L10n.of(context)!.groupIsPublic),
- // value: controller.publicGroup,
- // onChanged: controller.setPublicGroup,
- // ),
- // SwitchListTile.adaptive(
- // secondary: const Icon(Icons.lock_outlined),
- // title: Text(L10n.of(context)!.enableEncryption),
- // value: !controller.publicGroup,
- // onChanged: null,
+ // Padding(
+ // padding: const EdgeInsets.symmetric(horizontal: 16.0),
+ // child: TextField(
+ // controller: controller.topicController,
+ // minLines: 4,
+ // maxLines: 4,
+ // maxLength: 255,
+ // readOnly: controller.loading,
+ // decoration: InputDecoration(
+ // hintText: L10n.of(context)!.addChatDescription,
+ // ),
+ // ),
// ),
AddToSpaceToggles(
key: controller.addToSpaceKey,
@@ -57,17 +89,87 @@ class NewGroupView extends StatelessWidget {
activeSpaceId: controller.activeSpaceId,
mode: AddToClassMode.chat,
),
- const SizedBox(
- height: 50,
- ),
+ // const SizedBox(height: 16),
+ // SwitchListTile.adaptive(
+ // secondary: const Icon(Icons.public_outlined),
+ // title: Text(L10n.of(context)!.groupIsPublic),
+ // value: controller.publicGroup,
+ // onChanged: controller.loading ? null : controller.setPublicGroup,
+ // ),
+ // AnimatedSize(
+ // duration: FluffyThemes.animationDuration,
+ // child: controller.publicGroup
+ // ? SwitchListTile.adaptive(
+ // secondary: const Icon(Icons.search_outlined),
+ // title: Text(L10n.of(context)!.groupCanBeFoundViaSearch),
+ // value: controller.groupCanBeFound,
+ // onChanged: controller.loading
+ // ? null
+ // : controller.setGroupCanBeFound,
+ // )
+ // : const SizedBox.shrink(),
+ // ),
+ // SwitchListTile.adaptive(
+ // secondary: Icon(
+ // Icons.lock_outlined,
+ // color: Theme.of(context).colorScheme.onBackground,
+ // ),
+ // title: Text(
+ // L10n.of(context)!.enableEncryption,
+ // style: TextStyle(
+ // color: Theme.of(context).colorScheme.onBackground,
+ // ),
+ // ),
+ // value: !controller.publicGroup,
+ // onChanged: null,
+ // ),
// Pangea#
+ Padding(
+ padding: const EdgeInsets.all(16.0),
+ child: SizedBox(
+ width: double.infinity,
+ child: ElevatedButton(
+ style: ElevatedButton.styleFrom(
+ foregroundColor: Theme.of(context).colorScheme.onPrimary,
+ backgroundColor: Theme.of(context).colorScheme.primary,
+ ),
+ onPressed:
+ controller.loading ? null : controller.submitAction,
+ child: controller.loading
+ ? const LinearProgressIndicator()
+ : Row(
+ children: [
+ Expanded(
+ child: Text(
+ L10n.of(context)!.createGroupAndInviteUsers,
+ ),
+ ),
+ Icon(Icons.adaptive.arrow_forward_outlined),
+ ],
+ ),
+ ),
+ ),
+ ),
+ AnimatedSize(
+ duration: FluffyThemes.animationDuration,
+ child: error == null
+ ? const SizedBox.shrink()
+ : ListTile(
+ leading: Icon(
+ Icons.warning_outlined,
+ color: Theme.of(context).colorScheme.error,
+ ),
+ title: Text(
+ error.toLocalizedString(context),
+ style: TextStyle(
+ color: Theme.of(context).colorScheme.error,
+ ),
+ ),
+ ),
+ ),
],
),
),
- floatingActionButton: FloatingActionButton(
- onPressed: controller.submitAction,
- child: const Icon(Icons.arrow_forward_outlined),
- ),
);
}
}
diff --git a/lib/pages/new_private_chat/new_private_chat.dart b/lib/pages/new_private_chat/new_private_chat.dart
index 5d68c815f..09b401988 100644
--- a/lib/pages/new_private_chat/new_private_chat.dart
+++ b/lib/pages/new_private_chat/new_private_chat.dart
@@ -1,6 +1,9 @@
+import 'dart:async';
+
import 'package:device_info_plus/device_info_plus.dart';
import 'package:fluffychat/pages/new_private_chat/new_private_chat_view.dart';
import 'package:fluffychat/pages/new_private_chat/qr_scanner_modal.dart';
+import 'package:fluffychat/pages/user_bottom_sheet/user_bottom_sheet.dart';
import 'package:fluffychat/utils/adaptive_bottom_sheet.dart';
import 'package:fluffychat/utils/fluffy_share.dart';
import 'package:fluffychat/utils/platform_infos.dart';
@@ -21,38 +24,43 @@ class NewPrivateChat extends StatefulWidget {
class NewPrivateChatController extends State {
final TextEditingController controller = TextEditingController();
final FocusNode textFieldFocus = FocusNode();
- final formKey = GlobalKey();
- bool loading = false;
- // remove leading matrix.to from text field in order to simplify pasting
- final List removeMatrixToFormatters = [
- FilteringTextInputFormatter.deny(NewPrivateChatController.prefix),
- FilteringTextInputFormatter.deny(NewPrivateChatController.prefixNoProtocol),
- ];
+ Future>? searchResponse;
- static const Set supportedSigils = {'@', '!', '#'};
+ Timer? _searchCoolDown;
- static const String prefix = 'https://matrix.to/#/';
- static const String prefixNoProtocol = 'matrix.to/#/';
+ static const Duration _coolDown = Duration(milliseconds: 500);
- void submitAction([_]) async {
- controller.text = controller.text.trim();
- if (!formKey.currentState!.validate()) return;
- UrlLauncher(context, '$prefix${controller.text}').openMatrixToUrl();
+ void searchUsers([String? input]) async {
+ final searchTerm = input ?? controller.text;
+ if (searchTerm.isEmpty) {
+ _searchCoolDown?.cancel();
+ setState(() {
+ searchResponse = _searchCoolDown = null;
+ });
+ return;
+ }
+
+ _searchCoolDown?.cancel();
+ _searchCoolDown = Timer(_coolDown, () {
+ setState(() {
+ searchResponse = _searchUser(searchTerm);
+ });
+ });
}
- String? validateForm(String? value) {
- if (value!.isEmpty) {
- return L10n.of(context)!.pleaseEnterAMatrixIdentifier;
+ Future> _searchUser(String searchTerm) async {
+ final result =
+ await Matrix.of(context).client.searchUserDirectory(searchTerm);
+ final profiles = result.results;
+
+ if (searchTerm.isValidMatrixId &&
+ searchTerm.sigil == '@' &&
+ !profiles.any((profile) => profile.userId == searchTerm)) {
+ profiles.add(Profile(userId: searchTerm));
}
- if (!controller.text.isValidMatrixId ||
- !supportedSigils.contains(controller.text.sigil)) {
- return L10n.of(context)!.makeSureTheIdentifierIsValid;
- }
- if (controller.text == Matrix.of(context).client.userID) {
- return L10n.of(context)!.youCannotInviteYourself;
- }
- return null;
+
+ return profiles;
}
void inviteAction() => FluffyShare.shareInviteLink(context);
@@ -79,6 +87,23 @@ class NewPrivateChatController extends State {
);
}
+ void copyUserId() async {
+ await Clipboard.setData(
+ ClipboardData(text: Matrix.of(context).client.userID!),
+ );
+ ScaffoldMessenger.of(context).showSnackBar(
+ SnackBar(content: Text(L10n.of(context)!.copiedToClipboard)),
+ );
+ }
+
+ void openUserModal(Profile profile) => showAdaptiveBottomSheet(
+ context: context,
+ builder: (c) => UserBottomSheet(
+ profile: profile,
+ outerContext: context,
+ ),
+ );
+
@override
Widget build(BuildContext context) => NewPrivateChatView(this);
}
diff --git a/lib/pages/new_private_chat/new_private_chat_view.dart b/lib/pages/new_private_chat/new_private_chat_view.dart
index da3a4e2a9..ef2f4a761 100644
--- a/lib/pages/new_private_chat/new_private_chat_view.dart
+++ b/lib/pages/new_private_chat/new_private_chat_view.dart
@@ -1,131 +1,254 @@
import 'dart:math';
+import 'package:fluffychat/config/app_config.dart';
+import 'package:fluffychat/config/themes.dart';
import 'package:fluffychat/pages/new_private_chat/new_private_chat.dart';
+import 'package:fluffychat/utils/localized_exception_extension.dart';
import 'package:fluffychat/utils/platform_infos.dart';
+import 'package:fluffychat/utils/url_launcher.dart';
+import 'package:fluffychat/widgets/avatar.dart';
import 'package:fluffychat/widgets/layouts/max_width_body.dart';
+import 'package:fluffychat/widgets/matrix.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:go_router/go_router.dart';
+import 'package:matrix/matrix.dart';
class NewPrivateChatView extends StatelessWidget {
final NewPrivateChatController controller;
const NewPrivateChatView(this.controller, {super.key});
- static const double _qrCodePadding = 8;
-
@override
Widget build(BuildContext context) {
+ final searchResponse = controller.searchResponse;
final qrCodeSize =
min(MediaQuery.of(context).size.width - 16, 256).toDouble();
return Scaffold(
appBar: AppBar(
+ scrolledUnderElevation: 0,
leading: const Center(child: BackButton()),
title: Text(L10n.of(context)!.newChat),
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
actions: [
- Padding(
- padding: const EdgeInsets.all(8.0),
- child: TextButton(
- onPressed: () => context.go('/rooms/newgroup'),
- child: Text(
- L10n.of(context)!.createGroup,
- style:
- TextStyle(color: Theme.of(context).colorScheme.secondary),
- ),
- ),
+ IconButton(
+ onPressed:
+ UrlLauncher(context, AppConfig.startChatTutorial).launchUrl,
+ icon: const Icon(Icons.info_outlined),
),
],
),
- body: Column(
- children: [
- Expanded(
- child: MaxWidthBody(
- withFrame: false,
- child: Container(
- margin: const EdgeInsets.all(_qrCodePadding),
- alignment: Alignment.center,
- padding: const EdgeInsets.all(_qrCodePadding * 2),
- child: Material(
- borderRadius: BorderRadius.circular(12),
- elevation: 10,
- color: Colors.white,
- shadowColor: Theme.of(context).appBarTheme.shadowColor,
- clipBehavior: Clip.hardEdge,
- child: Column(
- mainAxisSize: MainAxisSize.min,
- children: [
- //#Pangea - commenting this out because it's not super important and is throwing an error
- // QrImageView(
- // data:
- // 'https://matrix.to/#/${Matrix.of(context).client.userID}',
- // version: QrVersions.auto,
- // size: qrCodeSize,
- // ),
- // Pangea#
- TextButton.icon(
- style: TextButton.styleFrom(
- fixedSize:
- Size.fromWidth(qrCodeSize - (2 * _qrCodePadding)),
- foregroundColor: Colors.black,
+ body: MaxWidthBody(
+ withScrolling: false,
+ child: Column(
+ children: [
+ Padding(
+ padding: const EdgeInsets.symmetric(horizontal: 12.0),
+ child: TextField(
+ controller: controller.controller,
+ onChanged: controller.searchUsers,
+ decoration: InputDecoration(
+ hintText: 'Search for @users...',
+ prefixIcon: searchResponse == null
+ ? const Icon(Icons.search_outlined)
+ : FutureBuilder(
+ future: searchResponse,
+ builder: (context, snapshot) {
+ if (snapshot.connectionState !=
+ ConnectionState.done) {
+ return const Padding(
+ padding: EdgeInsets.all(10.0),
+ child: SizedBox.square(
+ dimension: 24,
+ child: CircularProgressIndicator.adaptive(
+ strokeWidth: 1,
+ ),
+ ),
+ );
+ }
+ return const Icon(Icons.search_outlined);
+ },
+ ),
+ suffixIcon: controller.controller.text.isEmpty
+ ? null
+ : IconButton(
+ icon: const Icon(Icons.clear_outlined),
+ onPressed: () {
+ controller.controller.clear();
+ controller.searchUsers();
+ },
+ ),
+ ),
+ ),
+ ),
+ Expanded(
+ child: AnimatedCrossFade(
+ duration: FluffyThemes.animationDuration,
+ crossFadeState: searchResponse == null
+ ? CrossFadeState.showFirst
+ : CrossFadeState.showSecond,
+ firstChild: ListView(
+ children: [
+ ListTile(
+ title: SelectableText.rich(
+ TextSpan(
+ children: [
+ TextSpan(
+ text: L10n.of(context)!.yourGlobalUserIdIs,
+ ),
+ TextSpan(
+ text: Matrix.of(context).client.userID,
+ style: const TextStyle(
+ fontWeight: FontWeight.w600,
+ ),
+ ),
+ ],
+ ),
+ style: TextStyle(
+ color:
+ Theme.of(context).colorScheme.onPrimaryContainer,
+ fontSize: 14,
),
- icon: Icon(Icons.adaptive.share_outlined),
- label: Text(L10n.of(context)!.shareInviteLink),
- onPressed: controller.inviteAction,
),
- const SizedBox(height: 8),
- if (PlatformInfos.isMobile) ...[
- OutlinedButton.icon(
- style: OutlinedButton.styleFrom(
- backgroundColor:
- Theme.of(context).colorScheme.primaryContainer,
- fixedSize: Size.fromWidth(
- qrCodeSize - (2 * _qrCodePadding),
+ trailing: IconButton(
+ icon: Icon(
+ Icons.copy_outlined,
+ size: 16,
+ color:
+ Theme.of(context).colorScheme.onPrimaryContainer,
+ ),
+ onPressed: controller.copyUserId,
+ ),
+ ),
+ if (PlatformInfos.isMobile)
+ ListTile(
+ leading: CircleAvatar(
+ backgroundColor:
+ Theme.of(context).colorScheme.primaryContainer,
+ foregroundColor:
+ Theme.of(context).colorScheme.onPrimaryContainer,
+ child: const Icon(Icons.qr_code_scanner_outlined),
+ ),
+ title: Text(L10n.of(context)!.scanQrCode),
+ onTap: controller.openScannerAction,
+ ),
+ ListTile(
+ leading: CircleAvatar(
+ backgroundColor:
+ Theme.of(context).colorScheme.secondaryContainer,
+ foregroundColor:
+ Theme.of(context).colorScheme.onSecondaryContainer,
+ child: Icon(Icons.adaptive.share_outlined),
+ ),
+ title: Text(L10n.of(context)!.shareInviteLink),
+ onTap: controller.inviteAction,
+ ),
+ ListTile(
+ leading: CircleAvatar(
+ backgroundColor:
+ Theme.of(context).colorScheme.tertiaryContainer,
+ foregroundColor:
+ Theme.of(context).colorScheme.onTertiaryContainer,
+ child: const Icon(Icons.group_add_outlined),
+ ),
+ title: Text(L10n.of(context)!.createGroup),
+ onTap: () => context.go('/rooms/newgroup'),
+ ),
+ const SizedBox(height: 24),
+ Center(
+ child: Material(
+ borderRadius: BorderRadius.circular(12),
+ elevation: 10,
+ color: Colors.white,
+ shadowColor: Theme.of(context).appBarTheme.shadowColor,
+ clipBehavior: Clip.hardEdge,
+ // #Pangea - commenting this out because it's not super important and is throwing an error
+ // child: QrImageView(
+ // data:
+ // 'https://matrix.to/#/${Matrix.of(context).client.userID}',
+ // version: QrVersions.auto,
+ // size: qrCodeSize,
+ // ),
+ // Pangea#
+ ),
+ ),
+ ],
+ ),
+ secondChild: FutureBuilder(
+ future: searchResponse,
+ builder: (context, snapshot) {
+ final result = snapshot.data;
+ final error = snapshot.error;
+ if (error != null) {
+ return Column(
+ mainAxisAlignment: MainAxisAlignment.center,
+ children: [
+ Text(
+ error.toLocalizedString(context),
+ textAlign: TextAlign.center,
+ style: TextStyle(
+ color: Theme.of(context).colorScheme.error,
),
),
- icon: const Icon(Icons.qr_code_scanner_outlined),
- label: Text(L10n.of(context)!.scanQrCode),
- onPressed: controller.openScannerAction,
- ),
- const SizedBox(height: 8),
- ],
- ],
- ),
+ const SizedBox(height: 12),
+ OutlinedButton.icon(
+ onPressed: controller.searchUsers,
+ icon: const Icon(Icons.refresh_outlined),
+ label: Text(L10n.of(context)!.tryAgain),
+ ),
+ ],
+ );
+ }
+ if (result == null) {
+ return const Center(
+ child: CircularProgressIndicator.adaptive(),
+ );
+ }
+ if (result.isEmpty) {
+ return Column(
+ mainAxisAlignment: MainAxisAlignment.center,
+ children: [
+ const Icon(Icons.search_outlined, size: 86),
+ Padding(
+ padding: const EdgeInsets.all(16.0),
+ child: Text(
+ L10n.of(context)!.noUsersFoundWithQuery(
+ controller.controller.text,
+ ),
+ style: TextStyle(
+ color: Theme.of(context).colorScheme.primary,
+ ),
+ textAlign: TextAlign.center,
+ ),
+ ),
+ ],
+ );
+ }
+ return ListView.builder(
+ itemCount: result.length,
+ itemBuilder: (context, i) {
+ final contact = result[i];
+ final displayname = contact.displayName ??
+ contact.userId.localpart ??
+ contact.userId;
+ return ListTile(
+ leading: Avatar(
+ name: displayname,
+ mxContent: contact.avatarUrl,
+ presenceUserId: contact.userId,
+ ),
+ title: Text(displayname),
+ subtitle: Text(contact.userId),
+ onTap: () => controller.openUserModal(contact),
+ );
+ },
+ );
+ },
),
),
),
- ),
- MaxWidthBody(
- child: Padding(
- padding: const EdgeInsets.all(12.0),
- child: Form(
- key: controller.formKey,
- child: TextFormField(
- controller: controller.controller,
- autocorrect: false,
- textInputAction: TextInputAction.go,
- focusNode: controller.textFieldFocus,
- onFieldSubmitted: controller.submitAction,
- validator: controller.validateForm,
- inputFormatters: controller.removeMatrixToFormatters,
- decoration: InputDecoration(
- contentPadding: const EdgeInsets.symmetric(
- horizontal: 12,
- vertical: 6,
- ),
- labelText: L10n.of(context)!.enterInviteLinkOrMatrixId,
- hintText: '@username',
- prefixText: NewPrivateChatController.prefixNoProtocol,
- suffixIcon: IconButton(
- icon: const Icon(Icons.send_outlined),
- onPressed: controller.submitAction,
- ),
- ),
- ),
- ),
- ),
- ),
- ],
+ ],
+ ),
),
);
}
diff --git a/lib/pages/settings_emotes/import_archive_dialog.dart b/lib/pages/settings_emotes/import_archive_dialog.dart
index fd25fc9c6..0ed5bb21f 100644
--- a/lib/pages/settings_emotes/import_archive_dialog.dart
+++ b/lib/pages/settings_emotes/import_archive_dialog.dart
@@ -33,6 +33,8 @@ class _ImportEmoteArchiveDialogState extends State {
bool _loading = false;
+ double _progress = 0;
+
@override
void initState() {
_importFileMap();
@@ -44,7 +46,11 @@ class _ImportEmoteArchiveDialogState extends State {
return AlertDialog(
title: Text(L10n.of(context)!.importEmojis),
content: _loading
- ? const Center(child: CircularProgressIndicator())
+ ? Center(
+ child: CircularProgressIndicator(
+ value: _progress,
+ ),
+ )
: SingleChildScrollView(
child: Wrap(
alignment: WrapAlignment.spaceEvenly,
@@ -97,6 +103,7 @@ class _ImportEmoteArchiveDialogState extends State {
Future _addEmotePack() async {
setState(() {
_loading = true;
+ _progress = 0;
});
final imports = _importMap;
final successfulUploads = {};
@@ -134,52 +141,56 @@ class _ImportEmoteArchiveDialogState extends State {
}
for (final entry in imports.entries) {
+ setState(() {
+ _progress += 1 / imports.length;
+ });
final file = entry.key;
final imageCode = entry.value;
- // try {
- var mxcFile = MatrixImageFile(
- bytes: file.content,
- name: file.name,
- );
try {
- mxcFile = (await mxcFile.generateThumbnail(
+ var mxcFile = MatrixImageFile(
+ bytes: file.content,
+ name: file.name,
+ );
+
+ final thumbnail = (await mxcFile.generateThumbnail(
nativeImplementations: ClientManager.nativeImplementations,
- ))!;
- } catch (e, s) {
- Logs().w('Unable to create thumbnail', e, s);
- }
- final uri = await Matrix.of(context).client.uploadContent(
- mxcFile.bytes,
- filename: mxcFile.name,
- contentType: mxcFile.mimeType,
- );
-
- final info = {
- ...mxcFile.info,
- };
-
- // normalize width / height to 256, required for stickers
- if (info['w'] is int && info['h'] is int) {
- final ratio = info['w'] / info['h'];
- if (info['w'] > info['h']) {
- info['w'] = 256;
- info['h'] = (256.0 / ratio).round();
+ ));
+ if (thumbnail == null) {
+ Logs().w('Unable to create thumbnail');
} else {
- info['h'] = 256;
- info['w'] = (ratio * 256.0).round();
+ mxcFile = thumbnail;
}
- }
- widget.controller.pack!.images[imageCode] =
- ImagePackImageContent.fromJson({
- 'url': uri.toString(),
- 'info': info,
- });
- successfulUploads.add(file.name);
- /*} catch (e) {
+ final uri = await Matrix.of(context).client.uploadContent(
+ mxcFile.bytes,
+ filename: mxcFile.name,
+ contentType: mxcFile.mimeType,
+ );
- Logs().d('Could not upload emote $imageCode');
- }*/
+ final info = {
+ ...mxcFile.info,
+ };
+
+ // normalize width / height to 256, required for stickers
+ if (info['w'] is int && info['h'] is int) {
+ final ratio = info['w'] / info['h'];
+ if (info['w'] > info['h']) {
+ info['w'] = 256;
+ info['h'] = (256.0 / ratio).round();
+ } else {
+ info['h'] = 256;
+ info['w'] = (ratio * 256.0).round();
+ }
+ }
+ widget.controller.pack!.images[imageCode] =
+ ImagePackImageContent.fromJson({
+ 'url': uri.toString(),
+ 'info': info,
+ });
+ successfulUploads.add(file.name);
+ } catch (e) {
+ Logs().d('Could not upload emote $imageCode');
+ }
}
await widget.controller.save(context);
@@ -188,6 +199,7 @@ class _ImportEmoteArchiveDialogState extends State {
);
_loading = false;
+ _progress = 0;
// in case we have unhandled / duplicated emotes left, don't pop
if (mounted) setState(() {});
diff --git a/lib/pages/settings_emotes/settings_emotes.dart b/lib/pages/settings_emotes/settings_emotes.dart
index 3498329a7..0ad77e68d 100644
--- a/lib/pages/settings_emotes/settings_emotes.dart
+++ b/lib/pages/settings_emotes/settings_emotes.dart
@@ -307,6 +307,8 @@ class EmotesSettingsController extends State {
await showDialog(
context: context,
+ // breaks [Matrix.of] calls otherwise
+ useRootNavigator: false,
builder: (context) => ImportEmoteArchiveDialog(
controller: this,
archive: archive,
diff --git a/lib/pages/user_bottom_sheet/user_bottom_sheet_view.dart b/lib/pages/user_bottom_sheet/user_bottom_sheet_view.dart
index 6d0c330e3..7f3d51497 100644
--- a/lib/pages/user_bottom_sheet/user_bottom_sheet_view.dart
+++ b/lib/pages/user_bottom_sheet/user_bottom_sheet_view.dart
@@ -1,5 +1,7 @@
+import 'package:fluffychat/utils/date_time_extension.dart';
import 'package:fluffychat/utils/fluffy_share.dart';
import 'package:fluffychat/widgets/avatar.dart';
+import 'package:fluffychat/widgets/presence_builder.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:matrix/matrix.dart';
@@ -29,7 +31,60 @@ class UserBottomSheetView extends StatelessWidget {
leading: CloseButton(
onPressed: Navigator.of(context, rootNavigator: false).pop,
),
- title: Text(displayname.trim().split(' ').first),
+ title: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Text(displayname),
+ PresenceBuilder(
+ userId: userId,
+ client: client,
+ builder: (context, presence) {
+ if (presence == null ||
+ (presence.presence == PresenceType.offline &&
+ presence.lastActiveTimestamp == null)) {
+ return const SizedBox.shrink();
+ }
+
+ final dotColor = presence.presence.isOnline
+ ? Colors.green
+ : presence.presence.isUnavailable
+ ? Colors.red
+ : Colors.grey;
+
+ final lastActiveTimestamp = presence.lastActiveTimestamp;
+
+ return Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Container(
+ width: 8,
+ height: 8,
+ margin: const EdgeInsets.only(right: 8),
+ decoration: BoxDecoration(
+ color: dotColor,
+ borderRadius: BorderRadius.circular(16),
+ ),
+ ),
+ if (presence.currentlyActive == true)
+ Text(
+ L10n.of(context)!.currentlyActive,
+ overflow: TextOverflow.ellipsis,
+ style: Theme.of(context).textTheme.bodySmall,
+ )
+ else if (lastActiveTimestamp != null)
+ Text(
+ L10n.of(context)!.lastActiveAgo(
+ lastActiveTimestamp.localizedTimeShort(context),
+ ),
+ overflow: TextOverflow.ellipsis,
+ style: Theme.of(context).textTheme.bodySmall,
+ ),
+ ],
+ );
+ },
+ ),
+ ],
+ ),
actions: [
if (userId != client.userID &&
!client.ignoredUsers.contains(userId))
diff --git a/lib/utils/url_launcher.dart b/lib/utils/url_launcher.dart
index 8aded8f5d..5be6c808a 100644
--- a/lib/utils/url_launcher.dart
+++ b/lib/utils/url_launcher.dart
@@ -6,7 +6,6 @@ import 'package:fluffychat/utils/adaptive_bottom_sheet.dart';
import 'package:fluffychat/widgets/matrix.dart';
import 'package:fluffychat/widgets/public_room_bottom_sheet.dart';
import 'package:flutter/material.dart';
-import 'package:flutter/services.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:future_loading_dialog/future_loading_dialog.dart';
import 'package:go_router/go_router.dart';
@@ -17,10 +16,16 @@ import 'package:url_launcher/url_launcher_string.dart';
import 'platform_infos.dart';
class UrlLauncher {
+ /// The url to open.
final String? url;
+
+ /// The visible name in the GUI. For example the name of a markdown link
+ /// which may differ from the actual url to open.
+ final String? name;
+
final BuildContext context;
- const UrlLauncher(this.context, this.url);
+ const UrlLauncher(this.context, this.url, [this.name]);
void launchUrl() async {
if (url!.toLowerCase().startsWith(AppConfig.deepLinkPrefix) ||
@@ -37,34 +42,19 @@ class UrlLauncher {
);
return;
}
- final consent = await showModalActionSheet<_LaunchUrlResponse>(
- context: context,
- title: url,
- style: AdaptiveStyle.material,
- actions: [
- SheetAction(
- key: _LaunchUrlResponse.copy,
- icon: Icons.copy_outlined,
- label: L10n.of(context)!.copy,
- ),
- SheetAction(
- key: _LaunchUrlResponse.launch,
- icon: Icons.launch_outlined,
- label: L10n.of(context)!.openLinkInBrowser,
- ),
- ],
- );
- if (consent == _LaunchUrlResponse.copy) {
- await Clipboard.setData(ClipboardData(text: uri.toString()));
- ScaffoldMessenger.of(context).showSnackBar(
- SnackBar(
- content: Text(L10n.of(context)!.copiedToClipboard),
- ),
- );
- return;
- }
- if (consent != _LaunchUrlResponse.launch) return;
+ if (name != null && url != name) {
+ // If there is a name which differs from the url, we need to make sure
+ // that the user can see the actual url before opening the browser.
+ final consent = await showOkCancelAlertDialog(
+ context: context,
+ title: L10n.of(context)!.openLinkInBrowser,
+ message: url,
+ okLabel: L10n.of(context)!.yes,
+ cancelLabel: L10n.of(context)!.cancel,
+ );
+ if (consent != OkCancelResult.ok) return;
+ }
if (!{'https', 'http'}.contains(uri.scheme)) {
// just launch non-https / non-http uris directly
@@ -240,8 +230,3 @@ class UrlLauncher {
}
}
}
-
-enum _LaunchUrlResponse {
- launch,
- copy,
-}
diff --git a/lib/widgets/avatar.dart b/lib/widgets/avatar.dart
index 433d60f60..b711d614f 100644
--- a/lib/widgets/avatar.dart
+++ b/lib/widgets/avatar.dart
@@ -11,6 +11,8 @@ class Avatar extends StatelessWidget {
static const double defaultSize = 44;
final Client? client;
final double fontSize;
+ final String? presenceUserId;
+ final Color? presenceBackgroundColor;
//#Pangea
final IconData? littleIcon;
// Pangea#
@@ -22,6 +24,8 @@ class Avatar extends StatelessWidget {
this.onTap,
this.client,
this.fontSize = 18,
+ this.presenceUserId,
+ this.presenceBackgroundColor,
//#Pangea
this.littleIcon,
// Pangea#
@@ -53,27 +57,10 @@ class Avatar extends StatelessWidget {
);
final borderRadius = BorderRadius.circular(size / 2);
// #Pangea
- // final container = ClipRRect(
- // borderRadius: borderRadius,
- // child: Container(
- // width: size,
- // height: size,
- // color: noPic
- // ? name?.lightColorAvatar
- // : Theme.of(context).secondaryHeaderColor,
- // child: noPic
- // ? textWidget
- // : MxcImage(
- // key: Key(mxContent.toString()),
- // uri: mxContent,
- // fit: BoxFit.cover,
- // width: size,
- // height: size,
- // placeholder: (_) => textWidget,
- // cacheKey: mxContent.toString(),
- // ),
- // ),
- // );
+ // final presenceUserId = this.presenceUserId;
+ // final color =
+ // noPic ? name?.lightColorAvatar : Theme.of(context).secondaryHeaderColor;
+ // Pangea#
final container = Stack(
children: [
ClipRRect(
@@ -97,6 +84,7 @@ class Avatar extends StatelessWidget {
),
),
),
+ // #Pangea
if (littleIcon != null)
Positioned(
bottom: 0,
@@ -117,9 +105,47 @@ class Avatar extends StatelessWidget {
),
),
),
+ // PresenceBuilder(
+ // client: client,
+ // userId: presenceUserId,
+ // builder: (context, presence) {
+ // if (presence == null ||
+ // (presence.presence == PresenceType.offline &&
+ // presence.lastActiveTimestamp == null)) {
+ // return const SizedBox.shrink();
+ // }
+ // final dotColor = presence.presence.isOnline
+ // ? Colors.green
+ // : presence.presence.isUnavailable
+ // ? Colors.red
+ // : Colors.grey;
+ // return Positioned(
+ // bottom: -4,
+ // right: -4,
+ // child: Container(
+ // width: 16,
+ // height: 16,
+ // decoration: BoxDecoration(
+ // color: presenceBackgroundColor ??
+ // Theme.of(context).colorScheme.background,
+ // borderRadius: BorderRadius.circular(32),
+ // ),
+ // alignment: Alignment.center,
+ // child: Container(
+ // width: 8,
+ // height: 8,
+ // decoration: BoxDecoration(
+ // color: dotColor,
+ // borderRadius: BorderRadius.circular(16),
+ // ),
+ // ),
+ // ),
+ // );
+ // },
+ // ),
+ // Pangea#
],
);
- // Pangea#
if (onTap == null) return container;
return InkWell(
onTap: onTap,
diff --git a/lib/widgets/matrix.dart b/lib/widgets/matrix.dart
index 35c541dd4..b9acf4828 100644
--- a/lib/widgets/matrix.dart
+++ b/lib/widgets/matrix.dart
@@ -448,7 +448,6 @@ class MatrixState extends State with WidgetsBindingObserver {
final foreground = state != AppLifecycleState.detached &&
state != AppLifecycleState.paused;
client.backgroundSync = foreground;
- client.syncPresence = foreground ? null : PresenceType.unavailable;
client.requestHistoryOnLimitedTimeline = !foreground;
}
diff --git a/lib/widgets/presence_builder.dart b/lib/widgets/presence_builder.dart
new file mode 100644
index 000000000..223fe0cc7
--- /dev/null
+++ b/lib/widgets/presence_builder.dart
@@ -0,0 +1,34 @@
+import 'package:flutter/material.dart';
+
+import 'package:matrix/matrix.dart';
+
+import 'package:fluffychat/widgets/matrix.dart';
+
+class PresenceBuilder extends StatelessWidget {
+ final Widget Function(BuildContext context, CachedPresence? presence) builder;
+ final String? userId;
+ final Client? client;
+
+ const PresenceBuilder({
+ required this.builder,
+ this.userId,
+ this.client,
+ super.key,
+ });
+
+ @override
+ Widget build(BuildContext context) {
+ final userId = this.userId;
+ if (userId == null) return builder(context, null);
+
+ final client = this.client ?? Matrix.of(context).client;
+ return StreamBuilder(
+ stream: client.onPresenceChanged.stream
+ .where((cachedPresence) => cachedPresence.userid == userId),
+ builder: (context, snapshot) => builder(
+ context,
+ snapshot.data ?? client.presences[userId],
+ ),
+ );
+ }
+}
diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift
index 80363dd23..f6c93f34f 100644
--- a/macos/Flutter/GeneratedPluginRegistrant.swift
+++ b/macos/Flutter/GeneratedPluginRegistrant.swift
@@ -5,6 +5,7 @@
import FlutterMacOS
import Foundation
+import appkit_ui_element_colors
import audio_session
import connectivity_plus
import desktop_drop
@@ -37,10 +38,12 @@ import shared_preferences_foundation
import sqflite
import url_launcher_macos
import video_compress
+import video_player_avfoundation
import wakelock_plus
import window_to_front
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
+ AppkitUiElementColorsPlugin.register(with: registry.registrar(forPlugin: "AppkitUiElementColorsPlugin"))
AudioSessionPlugin.register(with: registry.registrar(forPlugin: "AudioSessionPlugin"))
ConnectivityPlugin.register(with: registry.registrar(forPlugin: "ConnectivityPlugin"))
DesktopDropPlugin.register(with: registry.registrar(forPlugin: "DesktopDropPlugin"))
@@ -73,6 +76,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
VideoCompressPlugin.register(with: registry.registrar(forPlugin: "VideoCompressPlugin"))
+ FVPVideoPlayerPlugin.register(with: registry.registrar(forPlugin: "FVPVideoPlayerPlugin"))
WakelockPlusMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockPlusMacosPlugin"))
WindowToFrontPlugin.register(with: registry.registrar(forPlugin: "WindowToFrontPlugin"))
}
diff --git a/needed-translations.txt b/needed-translations.txt
index a66a4f00a..0aa15d865 100644
--- a/needed-translations.txt
+++ b/needed-translations.txt
@@ -749,599 +749,25 @@
"reportMessageBody",
"noTeachersFound",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"bn": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "activatedEndToEndEncryption",
- "addEmail",
- "confirmMatrixId",
- "supposedMxid",
"addGroupDescription",
"addNewFriend",
- "addToSpace",
- "admin",
- "alias",
- "all",
- "allChats",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "answeredTheCall",
- "anyoneCanJoin",
- "appLock",
- "archive",
- "areGuestsAllowedToJoin",
- "areYouSure",
- "areYouSureYouWantToLogout",
- "askSSSSSign",
- "askVerificationRequest",
- "autoplayImages",
- "badServerLoginTypesException",
- "sendTypingNotifications",
- "sendOnEnter",
- "badServerVersionsException",
- "banFromChat",
- "banned",
- "bannedUser",
- "blockDevice",
- "blocked",
- "botMessages",
- "bubbleSize",
- "cancel",
- "cantOpenUri",
- "changeDeviceName",
- "changedTheChatAvatar",
- "changedTheChatDescriptionTo",
- "changedTheChatNameTo",
- "changedTheChatPermissions",
- "changedTheDisplaynameTo",
- "changedTheGuestAccessRules",
- "changedTheGuestAccessRulesTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changedTheProfileAvatar",
- "changedTheRoomAliases",
- "changedTheRoomInvitationLink",
- "changePassword",
- "changeTheHomeserver",
- "changeTheme",
- "changeTheNameOfTheGroup",
- "changeWallpaper",
- "changeYourAvatar",
- "channelCorruptedDecryptError",
- "chat",
- "yourChatBackupHasBeenSetUp",
- "chatBackup",
- "chatBackupDescription",
- "chatDetails",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "chooseAStrongPassword",
- "chooseAUsername",
- "clearArchive",
- "close",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "compareEmojiMatch",
- "compareNumbersMatch",
- "configureChat",
- "confirm",
- "connect",
- "contactHasBeenInvitedToTheGroup",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copiedToClipboard",
- "copy",
- "copyToClipboard",
- "couldNotDecryptMessage",
- "countParticipants",
- "create",
- "createdTheChat",
- "createGroup",
- "createNewSpace",
"createNewGroup",
- "currentlyActive",
- "darkTheme",
- "dateAndTimeOfDay",
- "dateWithoutYear",
- "dateWithYear",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "delete",
- "deleteAccount",
- "deleteMessage",
- "deny",
- "device",
- "deviceId",
- "devices",
- "directChats",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "downloadFile",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editDisplayname",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fileName",
- "fluffychat",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "help",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "login",
- "logInTo",
- "loginWithOneClick",
- "logout",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openCamera",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "pin",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -2086,618 +1512,26 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"bo": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "about",
- "updateAvailable",
- "updateNow",
- "accept",
- "acceptedTheInvitation",
- "account",
"accountInformation",
- "activatedEndToEndEncryption",
- "addEmail",
- "confirmMatrixId",
- "supposedMxid",
"addGroupDescription",
"addNewFriend",
- "addToSpace",
- "admin",
- "alias",
- "all",
- "allChats",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "answeredTheCall",
- "anyoneCanJoin",
- "appLock",
- "archive",
- "areGuestsAllowedToJoin",
- "areYouSure",
- "areYouSureYouWantToLogout",
- "askSSSSSign",
- "askVerificationRequest",
- "autoplayImages",
- "badServerLoginTypesException",
- "sendTypingNotifications",
- "sendOnEnter",
- "badServerVersionsException",
- "banFromChat",
- "banned",
- "bannedUser",
- "blockDevice",
- "blocked",
- "botMessages",
- "bubbleSize",
- "cancel",
- "cantOpenUri",
- "changeDeviceName",
- "changedTheChatAvatar",
- "changedTheChatDescriptionTo",
- "changedTheChatNameTo",
- "changedTheChatPermissions",
- "changedTheDisplaynameTo",
- "changedTheGuestAccessRules",
- "changedTheGuestAccessRulesTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changedTheProfileAvatar",
- "changedTheRoomAliases",
- "changedTheRoomInvitationLink",
- "changePassword",
- "changeTheHomeserver",
- "changeTheme",
- "changeTheNameOfTheGroup",
- "changeWallpaper",
- "changeYourAvatar",
- "channelCorruptedDecryptError",
- "chat",
- "yourChatBackupHasBeenSetUp",
- "chatBackup",
- "chatBackupDescription",
- "chatDetails",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "chooseAStrongPassword",
- "chooseAUsername",
- "clearArchive",
- "close",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "compareEmojiMatch",
- "compareNumbersMatch",
- "configureChat",
- "confirm",
- "connect",
- "contactHasBeenInvitedToTheGroup",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copiedToClipboard",
- "copy",
- "copyToClipboard",
- "couldNotDecryptMessage",
- "countParticipants",
- "create",
- "createdTheChat",
- "createGroup",
- "createNewSpace",
"createNewGroup",
- "currentlyActive",
- "darkTheme",
- "dateAndTimeOfDay",
- "dateWithoutYear",
- "dateWithYear",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "delete",
- "deleteAccount",
- "deleteMessage",
- "deny",
- "device",
- "deviceId",
- "devices",
- "directChats",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "downloadFile",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editDisplayname",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fileName",
- "fluffychat",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "help",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "login",
- "logInTo",
- "loginWithOneClick",
- "logout",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openCamera",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "pin",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -3442,241 +2276,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"ca": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
- "badServerVersionsException",
"classes",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_unban",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteKeyboardNoRecents",
- "homeserver",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inoffensive",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loginWithOneClick",
- "messagesStyle",
- "noMatrixServer",
- "shareInviteLink",
- "offensive",
- "oopsPushError",
- "openVideoCamera",
- "oneClientLoggedOut",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "serverRequiresEmail",
- "participant",
- "pleaseChoose",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPin",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "register",
- "removeYourAvatar",
- "replaceRoomWithNewerVersion",
- "recoveryKey",
- "recoveryKeyLost",
- "separateChatTypes",
- "setChatDescription",
- "showDirectChatsInSpaces",
- "startFirstChat",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -4421,52 +3035,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"cs": [
- "savedEmotePack",
"accountInformation",
"addNewFriend",
"alreadyHaveAnAccount",
"classes",
- "emoteKeyboardNoRecents",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "hasKnocked",
- "callingAccount",
- "appearOnTopDetails",
- "noKeyForThisMessage",
- "enterSpace",
- "enterRoom",
- "hideUnimportantStateEvents",
- "noBackupWarning",
- "readUpToHere",
- "reportErrorDescription",
- "report",
- "invite",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -5211,22 +3794,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"de": [
@@ -5979,603 +4554,25 @@
"reportMessageBody",
"noTeachersFound",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"el": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "about",
- "updateAvailable",
- "updateNow",
- "accept",
- "acceptedTheInvitation",
- "account",
"accountInformation",
- "activatedEndToEndEncryption",
- "addEmail",
- "confirmMatrixId",
- "supposedMxid",
"addGroupDescription",
"addNewFriend",
- "addToSpace",
- "admin",
- "alias",
- "all",
- "allChats",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "answeredTheCall",
- "anyoneCanJoin",
- "appLock",
- "archive",
- "areGuestsAllowedToJoin",
- "areYouSure",
- "areYouSureYouWantToLogout",
- "askSSSSSign",
- "askVerificationRequest",
- "autoplayImages",
- "badServerLoginTypesException",
- "sendTypingNotifications",
- "sendOnEnter",
- "badServerVersionsException",
- "banFromChat",
- "banned",
- "bannedUser",
- "blockDevice",
- "blocked",
- "botMessages",
- "bubbleSize",
- "cancel",
- "cantOpenUri",
- "changeDeviceName",
- "changedTheChatAvatar",
- "changedTheChatDescriptionTo",
- "changedTheChatNameTo",
- "changedTheChatPermissions",
- "changedTheDisplaynameTo",
- "changedTheGuestAccessRules",
- "changedTheGuestAccessRulesTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changedTheProfileAvatar",
- "changedTheRoomAliases",
- "changedTheRoomInvitationLink",
- "changePassword",
- "changeTheHomeserver",
- "changeTheme",
- "changeTheNameOfTheGroup",
- "changeWallpaper",
- "changeYourAvatar",
- "channelCorruptedDecryptError",
- "chat",
- "yourChatBackupHasBeenSetUp",
- "chatBackup",
- "chatBackupDescription",
- "chatDetails",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "chooseAStrongPassword",
- "chooseAUsername",
- "clearArchive",
- "close",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "compareEmojiMatch",
- "compareNumbersMatch",
- "configureChat",
- "confirm",
- "connect",
- "contactHasBeenInvitedToTheGroup",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copiedToClipboard",
- "copy",
- "copyToClipboard",
- "couldNotDecryptMessage",
- "countParticipants",
- "create",
- "createdTheChat",
- "createGroup",
- "createNewSpace",
"createNewGroup",
- "currentlyActive",
- "darkTheme",
- "dateAndTimeOfDay",
- "dateWithoutYear",
- "dateWithYear",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "delete",
- "deleteAccount",
- "deleteMessage",
- "deny",
- "device",
- "deviceId",
- "devices",
- "directChats",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "downloadFile",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editDisplayname",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fileName",
- "fluffychat",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "help",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "login",
- "logInTo",
- "loginWithOneClick",
- "logout",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openCamera",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "pin",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -7320,242 +5317,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"eo": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
- "bubbleSize",
- "yourChatBackupHasBeenSetUp",
"classes",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "loginWithOneClick",
- "messagesStyle",
- "shareInviteLink",
- "scanQrCode",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "pleaseEnterRecoveryKey",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "recoveryKey",
- "recoveryKeyLost",
- "separateChatTypes",
- "setChatDescription",
- "showDirectChatsInSpaces",
- "startFirstChat",
- "unverified",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -8300,22 +6076,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"es": [
@@ -8327,62 +6095,18 @@
"exportEmotePack",
"savedEmotePack",
"sendTypingNotifications",
- "createGroup",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "messagesStyle",
- "shareInviteLink",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "setChatDescription",
- "hasKnocked",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"reportToTeacher",
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"et": [
@@ -9135,7 +6859,13 @@
"reportMessageBody",
"noTeachersFound",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"eu": [
@@ -9888,56 +7618,20 @@
"reportMessageBody",
"noTeachersFound",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"fa": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
"addNewFriend",
"alreadyHaveAnAccount",
- "sendTypingNotifications",
"classes",
- "createGroup",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "messagesStyle",
- "shareInviteLink",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "setChatDescription",
- "hasKnocked",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -10682,22 +8376,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"fi": [
@@ -11449,69 +9135,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"fr": [
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
"addNewFriend",
"alreadyHaveAnAccount",
- "sendTypingNotifications",
"classes",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "messagesStyle",
- "shareInviteLink",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "setChatDescription",
- "hasKnocked",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -12256,223 +9894,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"ga": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
"classes",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_discardsession",
- "commandHint_dm",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loginWithOneClick",
- "messagesStyle",
- "shareInviteLink",
- "oneClientLoggedOut",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "pleaseEnterRecoveryKey",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "recoveryKey",
- "recoveryKeyLost",
- "separateChatTypes",
- "setChatDescription",
- "showDirectChatsInSpaces",
- "startFirstChat",
- "unverified",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "experimentalVideoCalls",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -13217,22 +10653,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"gl": [
@@ -13984,332 +11412,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"he": [
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
"classes",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "enableEmotesGlobally",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "messagesStyle",
- "noEmotesFound",
- "shareInviteLink",
- "ok",
- "pleaseEnterRecoveryKey",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -15054,618 +12171,26 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"hi": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "about",
- "updateAvailable",
- "updateNow",
- "accept",
- "acceptedTheInvitation",
- "account",
"accountInformation",
- "activatedEndToEndEncryption",
- "addEmail",
- "confirmMatrixId",
- "supposedMxid",
"addGroupDescription",
"addNewFriend",
- "addToSpace",
- "admin",
- "alias",
- "all",
- "allChats",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "answeredTheCall",
- "anyoneCanJoin",
- "appLock",
- "archive",
- "areGuestsAllowedToJoin",
- "areYouSure",
- "areYouSureYouWantToLogout",
- "askSSSSSign",
- "askVerificationRequest",
- "autoplayImages",
- "badServerLoginTypesException",
- "sendTypingNotifications",
- "sendOnEnter",
- "badServerVersionsException",
- "banFromChat",
- "banned",
- "bannedUser",
- "blockDevice",
- "blocked",
- "botMessages",
- "bubbleSize",
- "cancel",
- "cantOpenUri",
- "changeDeviceName",
- "changedTheChatAvatar",
- "changedTheChatDescriptionTo",
- "changedTheChatNameTo",
- "changedTheChatPermissions",
- "changedTheDisplaynameTo",
- "changedTheGuestAccessRules",
- "changedTheGuestAccessRulesTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changedTheProfileAvatar",
- "changedTheRoomAliases",
- "changedTheRoomInvitationLink",
- "changePassword",
- "changeTheHomeserver",
- "changeTheme",
- "changeTheNameOfTheGroup",
- "changeWallpaper",
- "changeYourAvatar",
- "channelCorruptedDecryptError",
- "chat",
- "yourChatBackupHasBeenSetUp",
- "chatBackup",
- "chatBackupDescription",
- "chatDetails",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "chooseAStrongPassword",
- "chooseAUsername",
- "clearArchive",
- "close",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "compareEmojiMatch",
- "compareNumbersMatch",
- "configureChat",
- "confirm",
- "connect",
- "contactHasBeenInvitedToTheGroup",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copiedToClipboard",
- "copy",
- "copyToClipboard",
- "couldNotDecryptMessage",
- "countParticipants",
- "create",
- "createdTheChat",
- "createGroup",
- "createNewSpace",
"createNewGroup",
- "currentlyActive",
- "darkTheme",
- "dateAndTimeOfDay",
- "dateWithoutYear",
- "dateWithYear",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "delete",
- "deleteAccount",
- "deleteMessage",
- "deny",
- "device",
- "deviceId",
- "devices",
- "directChats",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "downloadFile",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editDisplayname",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fileName",
- "fluffychat",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "help",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "login",
- "logInTo",
- "loginWithOneClick",
- "logout",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openCamera",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "pin",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -16410,22 +12935,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"hr": [
@@ -16433,8 +12950,6 @@
"addNewFriend",
"alreadyHaveAnAccount",
"classes",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -17179,235 +13694,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"hu": [
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "hugContent",
- "sendTypingNotifications",
"classes",
- "commandHint_markasdm",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "hydrateTorLong",
- "messagesStyle",
- "shareInviteLink",
- "oneClientLoggedOut",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "serverRequiresEmail",
- "pleaseChooseAPasscode",
- "pleaseClickOnLink",
- "pleaseEnterRecoveryKey",
- "pleaseFollowInstructionsOnWeb",
- "pushRules",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "removeYourAvatar",
- "replaceRoomWithNewerVersion",
- "recoveryKey",
- "recoveryKeyLost",
- "sendAsText",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setPermissionsLevel",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "singlesignon",
- "spaceIsPublic",
- "spaceName",
- "startFirstChat",
- "status",
- "synchronizingPleaseWait",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "unverified",
- "verified",
- "whoCanPerformWhichAction",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -18152,22 +14453,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"id": [
@@ -18175,10 +14468,6 @@
"addNewFriend",
"alreadyHaveAnAccount",
"classes",
- "hasKnocked",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -18923,353 +15212,23 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"ie": [
- "passwordsDoNotMatch",
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
- "activatedEndToEndEncryption",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "answeredTheCall",
- "appLock",
- "areGuestsAllowedToJoin",
- "askSSSSSign",
- "sendTypingNotifications",
- "changedTheChatAvatar",
- "changedTheChatDescriptionTo",
- "changedTheChatNameTo",
- "changedTheChatPermissions",
- "changedTheDisplaynameTo",
- "changedTheGuestAccessRules",
- "changedTheGuestAccessRulesTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changedTheProfileAvatar",
- "changedTheRoomAliases",
- "changedTheRoomInvitationLink",
- "changeTheNameOfTheGroup",
- "channelCorruptedDecryptError",
- "yourChatBackupHasBeenSetUp",
- "chatBackupDescription",
- "chatHasBeenAddedToThisSpace",
"classes",
- "chooseAStrongPassword",
- "commandHint_markasdm",
- "commandHint_ban",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_react",
- "commandHint_unban",
- "commandMissing",
- "compareEmojiMatch",
- "compareNumbersMatch",
- "contactHasBeenInvitedToTheGroup",
- "contentHasBeenReported",
- "couldNotDecryptMessage",
- "createdTheChat",
- "createGroup",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "chatPermissions",
"editChatPermissions",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteWarnNeedToPick",
- "enableEmotesGlobally",
- "enableEncryptionWarning",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "errorObtainingLocation",
- "goToTheNewRoom",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
"groupDescriptionHasBeenChanged",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "hideRedactedEvents",
- "howOffensiveIsThisContent",
- "ignoreListDescription",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "inviteText",
- "joinedTheChat",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastSeenLongTimeAgo",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "logInTo",
- "loginWithOneClick",
- "makeSureTheIdentifierIsValid",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "needPantalaimonWarning",
- "newMessageInFluffyChat",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "noPasswordRecoveryDescription",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openVideoCamera",
- "oneClientLoggedOut",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "serverRequiresEmail",
- "passphraseOrKey",
- "passwordHasBeenChanged",
- "pickImage",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "rejectedTheInvitation",
- "removeAllOtherDevices",
- "removedBy",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "roomHasBeenUpgraded",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "sendAMessage",
- "sendAsText",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "sharedTheLocation",
- "showDirectChatsInSpaces",
- "singlesignon",
- "spaceIsPublic",
- "startedACall",
- "startFirstChat",
- "statusExampleMessage",
- "synchronizingPleaseWait",
- "theyDontMatch",
- "toggleFavorite",
- "toggleMuted",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unbannedUser",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "userSentUnknownEvent",
- "verifySuccess",
- "verifyTitle",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "removeFromSpace",
- "addToSpaceDescription",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "whoCanSeeMyStories",
- "thisUserHasNotPostedAnythingYet",
- "replyHasBeenSent",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "storyPrivacyWarning",
- "markAsRead",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "placeCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "foregroundServiceRunning",
- "screenSharingDetail",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -20014,251 +15973,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"it": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
- "sendOnEnter",
- "bubbleSize",
- "chatHasBeenAddedToThisSpace",
"classes",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_react",
- "commandHint_unban",
- "commandMissing",
- "createGroup",
- "createNewSpace",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "enterASpacepName",
- "homeserver",
- "errorObtainingLocation",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "locationPermissionDeniedNotice",
- "loginWithOneClick",
- "messagesStyle",
- "noMatrixServer",
- "shareInviteLink",
- "obtainingLocation",
- "openVideoCamera",
- "oneClientLoggedOut",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "pleaseEnterRecoveryKey",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "recoveryKey",
- "recoveryKeyLost",
- "separateChatTypes",
- "setChatDescription",
- "showDirectChatsInSpaces",
- "spaceIsPublic",
- "spaceName",
- "startFirstChat",
- "synchronizingPleaseWait",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -21003,103 +16732,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"ja": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_cuddle",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
"classes",
- "commandHint_kick",
- "commandHint_me",
- "commandHint_op",
- "commandHint_unban",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "messagesStyle",
- "shareInviteLink",
- "openInMaps",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "separateChatTypes",
- "setChatDescription",
- "whoCanSeeMyStories",
- "whatIsGoingOn",
- "dismiss",
- "indexedDbErrorLong",
- "widgetEtherpad",
- "hasKnocked",
- "saveKeyManuallyDescription",
- "callingAccountDetails",
- "appearOnTop",
- "noKeyForThisMessage",
- "newSpaceDescription",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -21844,170 +17491,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"ko": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_cuddle",
- "commandHint_hug",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
"classes",
- "commandHint_markasdm",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "messagesStyle",
- "shareInviteLink",
- "pleaseEnterRecoveryKey",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "recoveryKey",
- "recoveryKeyLost",
- "separateChatTypes",
- "setChatDescription",
- "showDirectChatsInSpaces",
- "startFirstChat",
- "pleaseEnterRecoveryKeyDescription",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -22752,104 +18250,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"lt": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
"classes",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "messagesStyle",
- "shareInviteLink",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "setChatDescription",
- "startFirstChat",
- "hasKnocked",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -23594,618 +19009,26 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"lv": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "about",
- "updateAvailable",
- "updateNow",
- "accept",
- "acceptedTheInvitation",
- "account",
"accountInformation",
- "activatedEndToEndEncryption",
- "addEmail",
- "confirmMatrixId",
- "supposedMxid",
"addGroupDescription",
"addNewFriend",
- "addToSpace",
- "admin",
- "alias",
- "all",
- "allChats",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "answeredTheCall",
- "anyoneCanJoin",
- "appLock",
- "archive",
- "areGuestsAllowedToJoin",
- "areYouSure",
- "areYouSureYouWantToLogout",
- "askSSSSSign",
- "askVerificationRequest",
- "autoplayImages",
- "badServerLoginTypesException",
- "sendTypingNotifications",
- "sendOnEnter",
- "badServerVersionsException",
- "banFromChat",
- "banned",
- "bannedUser",
- "blockDevice",
- "blocked",
- "botMessages",
- "bubbleSize",
- "cancel",
- "cantOpenUri",
- "changeDeviceName",
- "changedTheChatAvatar",
- "changedTheChatDescriptionTo",
- "changedTheChatNameTo",
- "changedTheChatPermissions",
- "changedTheDisplaynameTo",
- "changedTheGuestAccessRules",
- "changedTheGuestAccessRulesTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changedTheProfileAvatar",
- "changedTheRoomAliases",
- "changedTheRoomInvitationLink",
- "changePassword",
- "changeTheHomeserver",
- "changeTheme",
- "changeTheNameOfTheGroup",
- "changeWallpaper",
- "changeYourAvatar",
- "channelCorruptedDecryptError",
- "chat",
- "yourChatBackupHasBeenSetUp",
- "chatBackup",
- "chatBackupDescription",
- "chatDetails",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "chooseAStrongPassword",
- "chooseAUsername",
- "clearArchive",
- "close",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "compareEmojiMatch",
- "compareNumbersMatch",
- "configureChat",
- "confirm",
- "connect",
- "contactHasBeenInvitedToTheGroup",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copiedToClipboard",
- "copy",
- "copyToClipboard",
- "couldNotDecryptMessage",
- "countParticipants",
- "create",
- "createdTheChat",
- "createGroup",
- "createNewSpace",
"createNewGroup",
- "currentlyActive",
- "darkTheme",
- "dateAndTimeOfDay",
- "dateWithoutYear",
- "dateWithYear",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "delete",
- "deleteAccount",
- "deleteMessage",
- "deny",
- "device",
- "deviceId",
- "devices",
- "directChats",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "downloadFile",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editDisplayname",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fileName",
- "fluffychat",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "help",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "login",
- "logInTo",
- "loginWithOneClick",
- "logout",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openCamera",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "pin",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -24950,291 +19773,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"nb": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
- "bubbleSize",
- "yourChatBackupHasBeenSetUp",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "clearArchive",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "createGroup",
- "createNewSpace",
- "allRooms",
- "discover",
- "chatPermissions",
- "editRoomAliases",
- "emoteKeyboardNoRecents",
- "enterASpacepName",
- "homeserver",
- "errorObtainingLocation",
- "goToTheNewRoom",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "loginWithOneClick",
- "messagesStyle",
- "noEncryptionForPublicRooms",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "obtainingLocation",
- "oopsPushError",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "or",
- "people",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseEnter4Digits",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPin",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactMessage",
- "register",
- "removeYourAvatar",
- "roomVersion",
- "saveFile",
- "recoveryKey",
- "recoveryKeyLost",
- "sendAsText",
- "sendSticker",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setChatDescription",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "singlesignon",
- "spaceIsPublic",
- "spaceName",
- "startFirstChat",
- "synchronizingPleaseWait",
- "unverified",
- "verified",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "wipeChatBackup",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -25979,22 +20532,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"nl": [
@@ -26002,10 +20547,6 @@
"addNewFriend",
"alreadyHaveAnAccount",
"classes",
- "hasKnocked",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -26750,22 +21291,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"pl": [
@@ -26773,10 +21306,6 @@
"addNewFriend",
"alreadyHaveAnAccount",
"classes",
- "hasKnocked",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -27521,596 +22050,26 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"pt": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
- "accept",
- "acceptedTheInvitation",
"accountInformation",
- "activatedEndToEndEncryption",
- "addEmail",
- "confirmMatrixId",
- "supposedMxid",
"addGroupDescription",
"addNewFriend",
- "addToSpace",
- "alias",
- "all",
- "allChats",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "answeredTheCall",
- "anyoneCanJoin",
- "appLock",
- "archive",
- "areGuestsAllowedToJoin",
- "areYouSureYouWantToLogout",
- "askSSSSSign",
- "askVerificationRequest",
- "autoplayImages",
- "badServerLoginTypesException",
- "sendTypingNotifications",
- "sendOnEnter",
- "badServerVersionsException",
- "banFromChat",
- "banned",
- "bannedUser",
- "blockDevice",
- "blocked",
- "botMessages",
- "bubbleSize",
- "cantOpenUri",
- "changeDeviceName",
- "changedTheChatAvatar",
- "changedTheChatDescriptionTo",
- "changedTheChatNameTo",
- "changedTheChatPermissions",
- "changedTheDisplaynameTo",
- "changedTheGuestAccessRules",
- "changedTheGuestAccessRulesTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changedTheProfileAvatar",
- "changedTheRoomAliases",
- "changedTheRoomInvitationLink",
- "changePassword",
- "changeTheHomeserver",
- "changeTheme",
- "changeTheNameOfTheGroup",
- "changeWallpaper",
- "changeYourAvatar",
- "channelCorruptedDecryptError",
- "chat",
- "yourChatBackupHasBeenSetUp",
- "chatBackup",
- "chatBackupDescription",
- "chatDetails",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "chooseAStrongPassword",
- "chooseAUsername",
- "clearArchive",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "compareEmojiMatch",
- "compareNumbersMatch",
- "configureChat",
- "confirm",
- "connect",
- "contactHasBeenInvitedToTheGroup",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copy",
- "copyToClipboard",
- "couldNotDecryptMessage",
- "countParticipants",
- "create",
- "createdTheChat",
- "createGroup",
- "createNewSpace",
"createNewGroup",
- "currentlyActive",
- "darkTheme",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "deleteAccount",
- "deleteMessage",
- "deny",
- "device",
- "deviceId",
- "devices",
- "directChats",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "downloadFile",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editDisplayname",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fileName",
- "fluffychat",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "logInTo",
- "loginWithOneClick",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "pin",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "publicRooms",
- "pushRules",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -28855,22 +22814,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"pt_BR": [
@@ -28878,62 +22829,6 @@
"addNewFriend",
"alreadyHaveAnAccount",
"classes",
- "createGroup",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "messagesStyle",
- "shareInviteLink",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "setChatDescription",
- "hasKnocked",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -29678,290 +23573,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"pt_PT": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
"classes",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "fromJoining",
- "fromTheInvitation",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "messagesStyle",
- "shareInviteLink",
- "scanQrCode",
- "openVideoCamera",
- "pleaseEnterRecoveryKey",
- "pushRules",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUserAndCountOthers",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -30706,71 +24332,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"ro": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
"addNewFriend",
"alreadyHaveAnAccount",
- "sendTypingNotifications",
"classes",
- "createGroup",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "messagesStyle",
- "shareInviteLink",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "setChatDescription",
- "hasKnocked",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -31515,22 +25091,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"ru": [
@@ -31538,10 +25106,6 @@
"addNewFriend",
"alreadyHaveAnAccount",
"classes",
- "hasKnocked",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -32286,359 +25850,22 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"sk": [
- "notAnImage",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "autoplayImages",
- "sendTypingNotifications",
- "blocked",
- "botMessages",
- "bubbleSize",
- "changeYourAvatar",
- "chatBackupDescription",
- "chatHasBeenAddedToThisSpace",
"classes",
- "clearArchive",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "configureChat",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copyToClipboard",
- "createGroup",
- "createNewSpace",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "deleteAccount",
- "deviceId",
- "directChats",
- "allRooms",
- "discover",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "enableEmotesGlobally",
- "enableEncryption",
- "encrypted",
- "endedTheCall",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fontSize",
- "goToTheNewRoom",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groups",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "inoffensive",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "inviteForMe",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "loginWithOneClick",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "newChat",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEncryptionForPublicRooms",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "noPasswordRecoveryDescription",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "online",
- "oopsPushError",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "or",
- "participant",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "pin",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPin",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "pushRules",
- "reason",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactMessage",
- "register",
- "removeYourAvatar",
- "replaceRoomWithNewerVersion",
- "saveFile",
- "recoveryKey",
- "recoveryKeyLost",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "singlesignon",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "synchronizingPleaseWait",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "unavailable",
- "unpin",
- "unverified",
- "verified",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -33383,507 +26610,24 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"sl": [
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
- "bubbleSize",
"classes",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "createGroup",
- "delete",
- "deleteAccount",
- "deleteMessage",
- "deny",
- "device",
- "deviceId",
- "devices",
- "directChats",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "downloadFile",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editDisplayname",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fileName",
- "fluffychat",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "help",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "login",
- "logInTo",
- "loginWithOneClick",
- "logout",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openCamera",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "pin",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -34628,264 +27372,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"sr": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
- "addToSpace",
- "allChats",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "autoplayImages",
- "sendTypingNotifications",
- "sendOnEnter",
- "bubbleSize",
- "cantOpenUri",
- "yourChatBackupHasBeenSetUp",
- "chatHasBeenAddedToThisSpace",
"classes",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_myroomavatar",
- "commandInvalid",
- "commandMissing",
- "createGroup",
- "createNewSpace",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "enterASpacepName",
- "homeserver",
- "errorObtainingLocation",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "loginWithOneClick",
- "messagesStyle",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "obtainingLocation",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "pleaseEnterRecoveryKey",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "saveFile",
- "recoveryKey",
- "recoveryKeyLost",
- "sendAsText",
- "sendSticker",
- "separateChatTypes",
- "setChatDescription",
- "shareLocation",
- "showDirectChatsInSpaces",
- "spaceIsPublic",
- "spaceName",
- "startFirstChat",
- "synchronizingPleaseWait",
- "unverified",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -35630,80 +28131,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"sv": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
"accountInformation",
"addNewFriend",
"alreadyHaveAnAccount",
- "sendTypingNotifications",
"classes",
- "createGroup",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "messagesStyle",
- "shareInviteLink",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "setChatDescription",
- "hasKnocked",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -36448,615 +28890,26 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"ta": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
- "account",
"accountInformation",
- "activatedEndToEndEncryption",
- "addEmail",
- "confirmMatrixId",
- "supposedMxid",
"addGroupDescription",
"addNewFriend",
- "addToSpace",
- "admin",
- "alias",
- "all",
- "allChats",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "answeredTheCall",
- "anyoneCanJoin",
- "appLock",
- "archive",
- "areGuestsAllowedToJoin",
- "areYouSure",
- "areYouSureYouWantToLogout",
- "askSSSSSign",
- "askVerificationRequest",
- "autoplayImages",
- "badServerLoginTypesException",
- "sendTypingNotifications",
- "sendOnEnter",
- "badServerVersionsException",
- "banFromChat",
- "banned",
- "bannedUser",
- "blockDevice",
- "blocked",
- "botMessages",
- "bubbleSize",
- "cancel",
- "cantOpenUri",
- "changeDeviceName",
- "changedTheChatAvatar",
- "changedTheChatDescriptionTo",
- "changedTheChatNameTo",
- "changedTheChatPermissions",
- "changedTheDisplaynameTo",
- "changedTheGuestAccessRules",
- "changedTheGuestAccessRulesTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changedTheProfileAvatar",
- "changedTheRoomAliases",
- "changedTheRoomInvitationLink",
- "changePassword",
- "changeTheHomeserver",
- "changeTheme",
- "changeTheNameOfTheGroup",
- "changeWallpaper",
- "changeYourAvatar",
- "channelCorruptedDecryptError",
- "chat",
- "yourChatBackupHasBeenSetUp",
- "chatBackup",
- "chatBackupDescription",
- "chatDetails",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "chooseAStrongPassword",
- "chooseAUsername",
- "clearArchive",
- "close",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "compareEmojiMatch",
- "compareNumbersMatch",
- "configureChat",
- "confirm",
- "connect",
- "contactHasBeenInvitedToTheGroup",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copiedToClipboard",
- "copy",
- "copyToClipboard",
- "couldNotDecryptMessage",
- "countParticipants",
- "create",
- "createdTheChat",
- "createGroup",
- "createNewSpace",
"createNewGroup",
- "currentlyActive",
- "darkTheme",
- "dateAndTimeOfDay",
- "dateWithoutYear",
- "dateWithYear",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "delete",
- "deleteAccount",
- "deleteMessage",
- "deny",
- "device",
- "deviceId",
- "devices",
- "directChats",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "downloadFile",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editDisplayname",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fileName",
- "fluffychat",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "help",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "login",
- "logInTo",
- "loginWithOneClick",
- "logout",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openCamera",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "pin",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -37801,22 +29654,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"th": [
@@ -37824,539 +29669,11 @@
"addGroupDescription",
"addNewFriend",
"alreadyHaveAnAccount",
- "badServerVersionsException",
- "banFromChat",
- "banned",
- "bannedUser",
- "blockDevice",
- "blocked",
- "botMessages",
- "bubbleSize",
- "cancel",
- "cantOpenUri",
- "changeDeviceName",
- "changedTheChatAvatar",
- "changedTheChatDescriptionTo",
- "changedTheChatNameTo",
- "changedTheChatPermissions",
- "changedTheDisplaynameTo",
- "changedTheGuestAccessRules",
- "changedTheGuestAccessRulesTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changedTheProfileAvatar",
- "changedTheRoomAliases",
- "changedTheRoomInvitationLink",
- "changePassword",
- "changeTheHomeserver",
- "changeTheme",
- "changeTheNameOfTheGroup",
- "changeWallpaper",
- "changeYourAvatar",
- "channelCorruptedDecryptError",
- "yourChatBackupHasBeenSetUp",
- "chatBackup",
- "chatBackupDescription",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "chooseAStrongPassword",
- "chooseAUsername",
- "clearArchive",
- "close",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "compareEmojiMatch",
- "compareNumbersMatch",
- "configureChat",
- "confirm",
- "connect",
- "contactHasBeenInvitedToTheGroup",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copiedToClipboard",
- "copyToClipboard",
- "couldNotDecryptMessage",
- "countParticipants",
- "create",
- "createdTheChat",
- "createGroup",
- "createNewSpace",
"createNewGroup",
- "currentlyActive",
- "darkTheme",
- "dateAndTimeOfDay",
- "dateWithoutYear",
- "dateWithYear",
- "deactivateAccountWarning",
- "defaultPermissionLevel",
- "deleteAccount",
- "deleteMessage",
- "deny",
- "device",
- "deviceId",
- "devices",
- "directChats",
- "allRooms",
- "discover",
- "displaynameHasBeenChanged",
- "downloadFile",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editDisplayname",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteSettings",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "everythingReady",
- "extremeOffensive",
- "fileName",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "login",
- "logInTo",
- "loginWithOneClick",
- "logout",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "next",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noEncryptionForPublicRooms",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openCamera",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "pleaseFollowInstructionsOnWeb",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "showPassword",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "transferFromAnotherDevice",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -39101,22 +30418,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"tr": [
@@ -39124,10 +30433,6 @@
"addNewFriend",
"alreadyHaveAnAccount",
"classes",
- "hasKnocked",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -39872,22 +31177,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"uk": [
@@ -40640,524 +31937,23 @@
"reportMessageBody",
"noTeachersFound",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"vi": [
- "passwordsDoNotMatch",
- "pleaseEnterValidEmail",
- "repeatPassword",
- "pleaseChooseAtLeastChars",
- "notAnImage",
- "remove",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
- "addToSpace",
- "all",
- "allChats",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "appLock",
- "askSSSSSign",
- "autoplayImages",
- "sendTypingNotifications",
- "sendOnEnter",
- "botMessages",
- "bubbleSize",
- "cantOpenUri",
- "changedTheDisplaynameTo",
- "changedTheHistoryVisibility",
- "changedTheHistoryVisibilityTo",
- "changedTheJoinRules",
- "changedTheJoinRulesTo",
- "changeTheme",
- "changeYourAvatar",
- "channelCorruptedDecryptError",
- "yourChatBackupHasBeenSetUp",
- "chatHasBeenAddedToThisSpace",
- "chats",
"classes",
- "clearArchive",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_ban",
- "commandHint_clearcache",
- "commandHint_create",
- "commandHint_discardsession",
- "commandHint_dm",
- "commandHint_html",
- "commandHint_invite",
- "commandHint_join",
- "commandHint_kick",
- "commandHint_leave",
- "commandHint_me",
- "commandHint_myroomavatar",
- "commandHint_myroomnick",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandHint_unban",
- "commandInvalid",
- "commandMissing",
- "configureChat",
- "containsDisplayName",
- "containsUserName",
- "contentHasBeenReported",
- "copiedToClipboard",
- "copyToClipboard",
- "createGroup",
- "createNewSpace",
- "darkTheme",
- "defaultPermissionLevel",
- "directChats",
- "allRooms",
- "discover",
- "edit",
- "editBlockedServers",
- "chatPermissions",
"editChatPermissions",
- "editRoomAliases",
- "editRoomAvatar",
- "emoteExists",
- "emoteInvalid",
- "emoteKeyboardNoRecents",
- "emotePacks",
- "emoteShortcode",
- "emoteWarnNeedToPick",
- "emptyChat",
- "enableEmotesGlobally",
- "enableEncryption",
- "enableEncryptionWarning",
- "encrypted",
- "encryption",
- "encryptionNotEnabled",
- "endedTheCall",
- "enterAGroupName",
- "enterAnEmailAddress",
- "enterASpacepName",
- "homeserver",
- "enterYourHomeserver",
- "errorObtainingLocation",
- "extremeOffensive",
- "fileName",
- "fluffychat",
- "fontSize",
- "forward",
- "fromJoining",
- "fromTheInvitation",
- "goToTheNewRoom",
- "group",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "groupIsPublic",
"groupDescription",
"groupDescriptionHasBeenChanged",
- "groups",
- "groupWith",
- "guestsAreForbidden",
- "guestsCanJoin",
- "hasWithdrawnTheInvitationFor",
- "help",
- "hideRedactedEvents",
- "hideUnknownEvents",
- "howOffensiveIsThisContent",
- "id",
- "identity",
- "ignore",
- "ignoredUsers",
- "ignoreListDescription",
- "ignoreUsername",
- "iHaveClickedOnLink",
- "incorrectPassphraseOrKey",
- "inoffensive",
- "inviteContact",
- "inviteContactToGroupQuestion",
- "inviteContactToGroup",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "invited",
- "redactMessageDescription",
- "optionalRedactReason",
- "invitedUser",
- "invitedUsersOnly",
- "inviteForMe",
- "inviteText",
- "isTyping",
- "joinedTheChat",
- "joinRoom",
- "kicked",
- "kickedAndBanned",
- "kickFromChat",
- "lastActiveAgo",
- "lastSeenLongTimeAgo",
- "leave",
- "leftTheChat",
- "license",
- "lightTheme",
- "loadCountMoreParticipants",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "loadingPleaseWait",
- "loadMore",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "login",
- "logInTo",
- "loginWithOneClick",
- "logout",
- "makeSureTheIdentifierIsValid",
- "memberChanges",
- "mention",
- "messages",
- "messagesStyle",
- "messageWillBeRemovedWarning",
- "moderator",
- "muteChat",
- "needPantalaimonWarning",
- "newChat",
- "newMessageInFluffyChat",
- "newVerificationRequest",
- "no",
- "noConnectionToTheServer",
- "noEmotesFound",
- "noGoogleServicesWarning",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "none",
- "noPasswordRecoveryDescription",
- "noPermission",
- "noRoomsFound",
- "notifications",
- "notificationsEnabledForThisAccount",
- "numUsersTyping",
- "obtainingLocation",
- "offensive",
- "offline",
- "ok",
- "online",
- "onlineKeyBackupEnabled",
- "oopsPushError",
- "oopsSomethingWentWrong",
- "openAppToReadMessages",
- "openCamera",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "optionalGroupName",
- "or",
- "participant",
- "passphraseOrKey",
- "password",
- "passwordForgotten",
- "passwordHasBeenChanged",
- "passwordRecovery",
- "people",
- "pickImage",
- "pin",
- "play",
- "pleaseChoose",
- "pleaseChooseAPasscode",
- "pleaseChooseAUsername",
- "pleaseClickOnLink",
- "pleaseEnter4Digits",
- "pleaseEnterAMatrixIdentifier",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPassword",
- "pleaseEnterYourPin",
- "pleaseEnterYourUsername",
- "privacy",
- "publicRooms",
- "pushRules",
- "reason",
- "recording",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "redactedAnEvent",
- "redactMessage",
- "register",
- "reject",
- "rejectedTheInvitation",
- "rejoin",
- "removeAllOtherDevices",
- "removedBy",
- "removeDevice",
- "unbanFromChat",
- "removeYourAvatar",
- "renderRichContent",
- "replaceRoomWithNewerVersion",
- "reply",
- "reportMessage",
- "requestPermission",
- "roomHasBeenUpgraded",
- "roomVersion",
- "saveFile",
- "search",
- "security",
- "recoveryKey",
- "recoveryKeyLost",
- "seenByUser",
- "seenByUserAndCountOthers",
- "seenByUserAndUser",
- "send",
- "sendAMessage",
- "sendAsText",
- "sendAudio",
- "sendFile",
- "sendImage",
- "sendMessages",
- "sendOriginal",
- "sendSticker",
- "sendVideo",
- "sentAFile",
- "sentAnAudio",
- "sentAPicture",
- "sentASticker",
- "sentAVideo",
- "sentCallInformations",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setCustomEmotes",
- "setChatDescription",
- "setInvitationLink",
- "setPermissionsLevel",
- "setStatus",
- "settings",
- "share",
- "sharedTheLocation",
- "shareLocation",
- "showDirectChatsInSpaces",
- "signUp",
- "singlesignon",
- "skip",
- "sourceCode",
- "spaceIsPublic",
- "spaceName",
- "startedACall",
- "startFirstChat",
- "status",
- "statusExampleMessage",
- "submit",
- "synchronizingPleaseWait",
- "systemTheme",
- "theyDontMatch",
- "theyMatch",
- "title",
- "toggleFavorite",
- "toggleMuted",
- "toggleUnread",
- "tooManyRequestsWarning",
- "tryToSendAgain",
- "unavailable",
- "unbannedUser",
- "unblockDevice",
- "unknownDevice",
- "unknownEncryptionAlgorithm",
- "unknownEvent",
- "unmuteChat",
- "unpin",
- "unreadChats",
- "userAndOthersAreTyping",
- "userAndUserAreTyping",
- "userIsTyping",
- "userLeftTheChat",
- "username",
- "userSentUnknownEvent",
- "unverified",
- "verify",
- "verifyStart",
- "verifySuccess",
- "verifyTitle",
- "videoCall",
- "visibilityOfTheChatHistory",
- "visibleForAllParticipants",
- "visibleForEveryone",
- "voiceMessage",
- "waitingPartnerAcceptRequest",
- "waitingPartnerEmoji",
- "waitingPartnerNumbers",
- "wallpaper",
- "warning",
- "weSentYouAnEmail",
- "whoCanPerformWhichAction",
- "whoIsAllowedToJoinThisGroup",
- "whyDoYouWantToReportThis",
- "wipeChatBackup",
- "withTheseAddressesRecoveryDescription",
- "writeAMessage",
- "yes",
- "you",
- "youAreInvitedToThisChat",
- "youAreNoLongerParticipatingInThisChat",
- "youCannotInviteYourself",
- "youHaveBeenBannedFromThisChat",
- "yourPublicKey",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -41902,22 +32698,14 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"zh": [
@@ -41925,8 +32713,6 @@
"addNewFriend",
"alreadyHaveAnAccount",
"classes",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -42671,262 +33457,21 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
],
"zh_Hant": [
- "notAnImage",
- "importNow",
- "importEmojis",
- "importFromZipFile",
- "importZipFile",
- "exportEmotePack",
- "replace",
- "savedEmotePack",
- "updateAvailable",
- "updateNow",
"accountInformation",
- "confirmMatrixId",
- "supposedMxid",
"addNewFriend",
"alreadyHaveAnAccount",
- "commandHint_googly",
- "commandHint_cuddle",
- "commandHint_hug",
- "googlyEyesContent",
- "cuddleContent",
- "hugContent",
- "sendTypingNotifications",
- "bubbleSize",
"classes",
- "commandHint_markasdm",
- "commandHint_markasgroup",
- "commandHint_html",
- "commandHint_me",
- "commandHint_op",
- "commandHint_plain",
- "commandHint_react",
- "commandHint_send",
- "commandInvalid",
- "commandMissing",
- "createGroup",
- "createNewSpace",
- "allRooms",
- "discover",
- "chatPermissions",
- "emoteKeyboardNoRecents",
- "enterASpacepName",
- "homeserver",
- "errorObtainingLocation",
- "chatDescription",
- "chatDescriptionHasBeenChanged",
- "inviteContactToGroupQuestion",
- "noChatDescriptionYet",
- "anyoneCanKnock",
- "noOneCanJoin",
- "tryAgain",
- "invalidServerName",
- "redactMessageDescription",
- "optionalRedactReason",
- "dehydrate",
- "dehydrateWarning",
- "dehydrateTor",
- "dehydrateTorLong",
- "hydrateTor",
- "hydrateTorLong",
- "hydrate",
- "locationDisabledNotice",
- "locationPermissionDeniedNotice",
- "loginWithOneClick",
- "messagesStyle",
- "noMatrixServer",
- "shareInviteLink",
- "scanQrCode",
- "obtainingLocation",
- "oopsPushError",
- "openVideoCamera",
- "oneClientLoggedOut",
- "addAccount",
- "editBundlesForAccount",
- "addToBundle",
- "removeFromBundle",
- "bundleName",
- "enableMultiAccounts",
- "openInMaps",
- "link",
- "serverRequiresEmail",
- "or",
- "pleaseChoose",
- "pleaseEnterRecoveryKey",
- "pleaseEnterYourPin",
- "redactedBy",
- "directChat",
- "redactedByBecause",
- "register",
- "removeYourAvatar",
- "saveFile",
- "recoveryKey",
- "recoveryKeyLost",
- "sendAsText",
- "sendSticker",
- "separateChatTypes",
- "setAsCanonicalAlias",
- "setChatDescription",
- "shareLocation",
- "showDirectChatsInSpaces",
- "singlesignon",
- "spaceIsPublic",
- "spaceName",
- "startFirstChat",
- "synchronizingPleaseWait",
- "unverified",
- "messageInfo",
- "time",
- "messageType",
- "sender",
- "openGallery",
- "removeFromSpace",
- "addToSpaceDescription",
- "start",
- "pleaseEnterRecoveryKeyDescription",
- "addToStory",
- "publish",
- "whoCanSeeMyStories",
- "unsubscribeStories",
- "thisUserHasNotPostedAnythingYet",
- "yourStory",
- "replyHasBeenSent",
- "videoWithSize",
- "storyFrom",
- "whoCanSeeMyStoriesDesc",
- "whatIsGoingOn",
- "addDescription",
- "storyPrivacyWarning",
- "iUnderstand",
- "openChat",
- "markAsRead",
- "reportUser",
- "dismiss",
- "matrixWidgets",
- "reactedWith",
- "pinMessage",
- "confirmEventUnpin",
- "emojis",
- "placeCall",
- "voiceCall",
- "unsupportedAndroidVersion",
- "unsupportedAndroidVersionLong",
- "videoCallsBetaWarning",
- "experimentalVideoCalls",
- "emailOrUsername",
- "indexedDbErrorTitle",
- "indexedDbErrorLong",
- "switchToAccount",
- "nextAccount",
- "previousAccount",
- "editWidgets",
- "addWidget",
- "widgetVideo",
- "widgetEtherpad",
- "widgetJitsi",
- "widgetCustom",
- "widgetName",
- "widgetUrlError",
- "widgetNameError",
- "errorAddingWidget",
- "youRejectedTheInvitation",
- "youJoinedTheChat",
- "youAcceptedTheInvitation",
- "youBannedUser",
- "youHaveWithdrawnTheInvitationFor",
- "youInvitedBy",
- "youInvitedUser",
- "youKicked",
- "youKickedAndBanned",
- "youUnbannedUser",
- "hasKnocked",
- "noEmailWarning",
- "stories",
- "users",
- "unlockOldMessages",
- "storeInSecureStorageDescription",
- "saveKeyManuallyDescription",
- "storeInAndroidKeystore",
- "storeInAppleKeyChain",
- "storeSecurlyOnThisDevice",
- "countFiles",
- "user",
- "custom",
- "foregroundServiceRunning",
- "screenSharingTitle",
- "screenSharingDetail",
- "callingPermissions",
- "callingAccount",
- "callingAccountDetails",
- "appearOnTop",
- "appearOnTopDetails",
- "otherCallingPermissions",
- "whyIsThisMessageEncrypted",
- "noKeyForThisMessage",
- "newGroup",
- "newSpace",
- "enterSpace",
- "enterRoom",
- "allSpaces",
- "numChats",
- "hideUnimportantStateEvents",
- "doNotShowAgain",
- "wasDirectChatDisplayName",
- "newSpaceDescription",
- "encryptThisChat",
- "endToEndEncryption",
- "disableEncryptionWarning",
- "sorryThatsNotPossible",
- "deviceKeys",
- "letsStart",
- "enterInviteLinkOrMatrixId",
- "reopenChat",
- "noBackupWarning",
- "noOtherDevicesFound",
- "fileIsTooBigForServer",
- "fileHasBeenSavedAt",
- "jumpToLastReadMessage",
- "readUpToHere",
- "jump",
- "openLinkInBrowser",
- "reportErrorDescription",
- "report",
- "signInWithPassword",
- "continueWith",
- "pleaseTryAgainLaterOrChooseDifferentServer",
- "signInWith",
- "profileNotFound",
- "setTheme",
- "setColorTheme",
- "invite",
- "requests",
- "inviteGroupChat",
- "invitePrivateChat",
- "invalidInput",
- "wrongPinEntered",
- "pleaseEnterANumber",
- "archiveRoomDescription",
- "roomUpgradeDescription",
"allCorrect",
"newWayAllGood",
"othersAreBetter",
@@ -43671,21 +34216,13 @@
"reportMessageTitle",
"reportMessageBody",
"noTeachersFound",
- "pushNotificationsNotAvailable",
- "learnMore",
- "banUserDescription",
- "unbanUserDescription",
- "kickUserDescription",
- "makeAdminDescription",
- "removeDevicesDescription",
- "todoLists",
- "newTodo",
- "noTodosYet",
- "editTodo",
- "pleaseAddATitle",
- "todoListChangedError",
- "todosUnencrypted",
"noAddToSpacePermissions",
- "alreadyInSpace"
+ "alreadyInSpace",
+ "yourGlobalUserIdIs",
+ "noUsersFoundWithQuery",
+ "searchChatsRooms",
+ "groupName",
+ "createGroupAndInviteUsers",
+ "groupCanBeFoundViaSearch"
]
}
diff --git a/pubspec.lock b/pubspec.lock
index c242ca0aa..cd036d373 100644
--- a/pubspec.lock
+++ b/pubspec.lock
@@ -13,18 +13,18 @@ packages:
dependency: transitive
description:
name: _flutterfire_internals
- sha256: "7bcb5c5d62b3907fb4a269c0f0843df46760d38e12829a715f2ff1fb492f19ef"
+ sha256: dd68ecea9f1e3556d385521bd21c7bafd6311a8c1e11abe2595ca27974f468ee
url: "https://pub.dev"
source: hosted
- version: "1.3.10"
+ version: "1.3.13"
adaptive_dialog:
dependency: "direct main"
description:
name: adaptive_dialog
- sha256: "2861f072027046912caaaec9a688e50e10b712ab11ea18d266ef83c391e5f4d6"
+ sha256: "910debe8766eff4b378ed5164bb470debb87c53a3bdf6adee03c79f64fbf7348"
url: "https://pub.dev"
source: hosted
- version: "1.9.0+2"
+ version: "1.10.1"
analyzer:
dependency: transitive
description:
@@ -45,26 +45,34 @@ packages:
dependency: "direct main"
description:
name: animations
- sha256: fe8a6bdca435f718bb1dc8a11661b2c22504c6da40ef934cee8327ed77934164
+ sha256: ef57563eed3620bd5d75ad96189846aca1e033c0c45fc9a7d26e80ab02b88a70
url: "https://pub.dev"
source: hosted
- version: "2.0.7"
+ version: "2.0.8"
ansicolor:
dependency: transitive
description:
name: ansicolor
- sha256: "607f8fa9786f392043f169898923e6c59b4518242b68b8862eb8a8b7d9c30b4a"
+ sha256: "8bf17a8ff6ea17499e40a2d2542c2f481cd7615760c6d34065cb22bfd22e6880"
url: "https://pub.dev"
source: hosted
- version: "2.0.1"
+ version: "2.0.2"
+ appkit_ui_element_colors:
+ dependency: transitive
+ description:
+ name: appkit_ui_element_colors
+ sha256: c3e50f900aae314d339de489535736238627071457c4a4a2dbbb1545b4f04f22
+ url: "https://pub.dev"
+ source: hosted
+ version: "1.0.0"
archive:
dependency: "direct main"
description:
name: archive
- sha256: e0902a06f0e00414e4e3438a084580161279f137aeb862274710f29ec10cf01e
+ sha256: "7b875fd4a20b165a3084bd2d210439b22ebc653f21cea4842729c0c30c82596b"
url: "https://pub.dev"
source: hosted
- version: "3.3.9"
+ version: "3.4.9"
args:
dependency: transitive
description:
@@ -85,18 +93,18 @@ packages:
dependency: transitive
description:
name: audio_session
- sha256: "8a2bc5e30520e18f3fb0e366793d78057fb64cd5287862c76af0c8771f2a52ad"
+ sha256: "768eadc8174b366b8b1b0b75e0518eea2bbd463d47a7938c54a2a0e6aa06946d"
url: "https://pub.dev"
source: hosted
- version: "0.1.16"
+ version: "0.1.17"
badges:
dependency: "direct main"
description:
name: badges
- sha256: "6e7f3ec561ec08f47f912cfe349d4a1707afdc8dda271e17b046aa6d42c89e77"
+ sha256: a7b6bbd60dce418df0db3058b53f9d083c22cdb5132a052145dc267494df0b84
url: "https://pub.dev"
source: hosted
- version: "3.1.1"
+ version: "3.1.2"
base58check:
dependency: transitive
description:
@@ -121,6 +129,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "2.1.1"
+ build_config:
+ dependency: transitive
+ description:
+ name: build_config
+ sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1
+ url: "https://pub.dev"
+ source: hosted
+ version: "1.1.1"
callkeep:
dependency: "direct main"
description:
@@ -153,14 +169,22 @@ packages:
url: "https://pub.dev"
source: hosted
version: "1.3.1"
+ checked_yaml:
+ dependency: transitive
+ description:
+ name: checked_yaml
+ sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff
+ url: "https://pub.dev"
+ source: hosted
+ version: "2.0.3"
chewie:
dependency: "direct main"
description:
name: chewie
- sha256: "60701da1f22ed20cd2d40e856fd1f2249dacf5b629d9fa50676443a18a4857b8"
+ sha256: ccfce3350ae9fd419cd336cdf3380f77a08e45171e1e3cb3d499d204de5e7ea8
url: "https://pub.dev"
source: hosted
- version: "1.7.0"
+ version: "1.7.1"
cli_util:
dependency: transitive
description:
@@ -181,10 +205,10 @@ packages:
dependency: "direct main"
description:
name: collection
- sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687
+ sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a
url: "https://pub.dev"
source: hosted
- version: "1.17.2"
+ version: "1.18.0"
connectivity_plus:
dependency: "direct main"
description:
@@ -221,18 +245,18 @@ packages:
dependency: "direct main"
description:
name: country_picker
- sha256: e440350c2f6397955499d5a647cc90599ba3048651c6858370483f55c346b525
+ sha256: "931454ceb75c7e1230ac5620bfe601a5a293b4436d8de8bf7fea776a05a9568c"
url: "https://pub.dev"
source: hosted
- version: "2.0.21"
+ version: "2.0.22"
cross_file:
dependency: transitive
description:
name: cross_file
- sha256: "0b0036e8cccbfbe0555fd83c1d31a6f30b77a96b598b35a5d36dd41f718695e9"
+ sha256: "445db18de832dba8d851e287aff8ccf169bed30d2e94243cb54c7d2f1ed2142c"
url: "https://pub.dev"
source: hosted
- version: "0.3.3+4"
+ version: "0.3.3+6"
crypto:
dependency: transitive
description:
@@ -261,10 +285,10 @@ packages:
dependency: "direct main"
description:
name: cupertino_icons
- sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be
+ sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d
url: "https://pub.dev"
source: hosted
- version: "1.0.5"
+ version: "1.0.6"
dart_code_metrics:
dependency: "direct dev"
description:
@@ -293,10 +317,10 @@ packages:
dependency: transitive
description:
name: dart_webrtc
- sha256: dfe42714abe3eb83eefec407c9da7f8e341a899aa1b8ac2484af298cdfeb74a3
+ sha256: "5897a3bdd6c7fded07e80e250260ca4c9cd61f9080911aa308b516e1206745a9"
url: "https://pub.dev"
source: hosted
- version: "1.1.2"
+ version: "1.1.3"
dbus:
dependency: transitive
description:
@@ -305,14 +329,22 @@ packages:
url: "https://pub.dev"
source: hosted
version: "0.7.8"
+ dependency_validator:
+ dependency: transitive
+ description:
+ name: dependency_validator
+ sha256: f727a5627aa405965fab4aef4f468e50a9b632ba0737fd2f98c932fec6d712b9
+ url: "https://pub.dev"
+ source: hosted
+ version: "3.2.3"
desktop_drop:
dependency: "direct main"
description:
name: desktop_drop
- sha256: "4ca4d960f4b11c032e9adfd2a0a8ac615bc3fddb4cbe73dcf840dd8077582186"
+ sha256: d55a010fe46c8e8fcff4ea4b451a9ff84a162217bdb3b2a0aa1479776205e15d
url: "https://pub.dev"
source: hosted
- version: "0.4.1"
+ version: "0.4.4"
desktop_lifecycle:
dependency: "direct main"
description:
@@ -333,10 +365,10 @@ packages:
dependency: "direct main"
description:
name: device_info_plus
- sha256: "86add5ef97215562d2e090535b0a16f197902b10c369c558a100e74ea06e8659"
+ sha256: "7035152271ff67b072a211152846e9f1259cf1be41e34cd3e0b5463d2d6b8419"
url: "https://pub.dev"
source: hosted
- version: "9.0.3"
+ version: "9.1.0"
device_info_plus_platform_interface:
dependency: transitive
description:
@@ -349,18 +381,18 @@ packages:
dependency: "direct main"
description:
name: dynamic_color
- sha256: de4798a7069121aee12d5895315680258415de9b00e717723a1bd73d58f0126d
+ sha256: "8b8bd1d798bd393e11eddeaa8ae95b12ff028bf7d5998fc5d003488cd5f4ce2f"
url: "https://pub.dev"
source: hosted
- version: "1.6.6"
+ version: "1.6.8"
emoji_picker_flutter:
dependency: "direct main"
description:
name: emoji_picker_flutter
- sha256: "1ca31245cc1f7ab5304c68ccda8039f52b9f2372aa4d10803117160fad3faf12"
+ sha256: "009c51efc763d5a6ba05a5628b8b2184c327cd117d66ea9c3e7edf2ff269c423"
url: "https://pub.dev"
source: hosted
- version: "1.6.1"
+ version: "1.6.3"
emoji_proposal:
dependency: "direct main"
description:
@@ -428,74 +460,74 @@ packages:
dependency: "direct main"
description:
name: file_picker
- sha256: be325344c1f3070354a1d84a231a1ba75ea85d413774ec4bdf444c023342e030
+ sha256: "4e42aacde3b993c5947467ab640882c56947d9d27342a5b6f2895b23956954a6"
url: "https://pub.dev"
source: hosted
- version: "5.5.0"
+ version: "6.1.1"
file_selector_linux:
dependency: transitive
description:
name: file_selector_linux
- sha256: "770eb1ab057b5ae4326d1c24cc57710758b9a46026349d021d6311bd27580046"
+ sha256: "045d372bf19b02aeb69cacf8b4009555fb5f6f0b7ad8016e5f46dd1387ddd492"
url: "https://pub.dev"
source: hosted
- version: "0.9.2"
+ version: "0.9.2+1"
file_selector_macos:
dependency: transitive
description:
name: file_selector_macos
- sha256: "4ada532862917bf16e3adb3891fe3a5917a58bae03293e497082203a80909412"
+ sha256: b15c3da8bd4908b9918111fa486903f5808e388b8d1c559949f584725a6594d6
url: "https://pub.dev"
source: hosted
- version: "0.9.3+1"
+ version: "0.9.3+3"
file_selector_platform_interface:
dependency: transitive
description:
name: file_selector_platform_interface
- sha256: "412705a646a0ae90f33f37acfae6a0f7cbc02222d6cd34e479421c3e74d3853c"
+ sha256: "0aa47a725c346825a2bd396343ce63ac00bda6eff2fbc43eabe99737dede8262"
url: "https://pub.dev"
source: hosted
- version: "2.6.0"
+ version: "2.6.1"
file_selector_windows:
dependency: transitive
description:
name: file_selector_windows
- sha256: "1372760c6b389842b77156203308940558a2817360154084368608413835fc26"
+ sha256: d3547240c20cabf205c7c7f01a50ecdbc413755814d6677f3cb366f04abcead0
url: "https://pub.dev"
source: hosted
- version: "0.9.3"
+ version: "0.9.3+1"
firebase_analytics:
dependency: "direct main"
description:
name: firebase_analytics
- sha256: fd94117b8160022a57af063dcd856fae2d9a29b6e3bbfcb078e77b87ccecbd3f
+ sha256: de3d73b5c5618bf31004308b017b4067b7d9156b96e97b62d59ae5eab71081ec
url: "https://pub.dev"
source: hosted
- version: "10.6.2"
+ version: "10.7.1"
firebase_analytics_platform_interface:
dependency: transitive
description:
name: firebase_analytics_platform_interface
- sha256: "42bb0ffc4087dbbfdc7e89514c1b86e55fbbdebd42fdb59efda05f8dd2606a62"
+ sha256: ffc59c0b00a572cd1fbf915a1d50cb4ccdc61e429614aa6ae9a598ee5723b96a
url: "https://pub.dev"
source: hosted
- version: "3.7.4"
+ version: "3.8.1"
firebase_analytics_web:
dependency: transitive
description:
name: firebase_analytics_web
- sha256: ad82db058df608974900ee90afac88fa1cc1d2079bfb62f780d1ad7df6505161
+ sha256: "0e725a7dcdeb0a59e44d93d1d45dfec94efe54329ac9d6aa145e24d31429100c"
url: "https://pub.dev"
source: hosted
- version: "0.5.5+4"
+ version: "0.5.5+8"
firebase_core:
dependency: "direct main"
description:
name: firebase_core
- sha256: "37299e4907391d7fac8c7ea059bb3292768cc07b72b6c6c777675cc58da2ef4d"
+ sha256: "471b46ea6a9af503184d4de691566887daedd312aec5baac5baa42d819f56446"
url: "https://pub.dev"
source: hosted
- version: "2.20.0"
+ version: "2.23.0"
firebase_core_platform_interface:
dependency: transitive
description:
@@ -516,26 +548,26 @@ packages:
dependency: "direct main"
description:
name: firebase_messaging
- sha256: d7b6f9c394f8575598fa94e67220cdd2097a0bc28ce20a3ef2db2da94ede5b47
+ sha256: f4576000e749c906d44649feadb2449ada39eab9777650319bdd6fa69a3044f5
url: "https://pub.dev"
source: hosted
- version: "14.7.2"
+ version: "14.7.5"
firebase_messaging_platform_interface:
dependency: transitive
description:
name: firebase_messaging_platform_interface
- sha256: "825356880eb94bf16ea7ef6a71384d2c32cc88143b54ecffed8b3987f7178854"
+ sha256: dcf065ecb9518ddc671477f9b8592274df7ccf74c6aaa15f02fc92b1f2b9c8a8
url: "https://pub.dev"
source: hosted
- version: "4.5.11"
+ version: "4.5.14"
firebase_messaging_web:
dependency: transitive
description:
name: firebase_messaging_web
- sha256: "9c82e55c4b470970c77a99c90733adff6be7d5a67251007727b2a98d4f04e0cd"
+ sha256: "11b7920273367ce2cb272d29153bb7aaae93577eba1eba423c7af61d7f2a3eb2"
url: "https://pub.dev"
source: hosted
- version: "3.5.11"
+ version: "3.5.14"
fl_chart:
dependency: "direct main"
description:
@@ -568,10 +600,11 @@ packages:
flutter_blurhash:
dependency: "direct main"
description:
- name: flutter_blurhash
- sha256: "05001537bd3fac7644fa6558b09ec8c0a3f2eba78c0765f88912882b1331a5c6"
- url: "https://pub.dev"
- source: hosted
+ path: "."
+ ref: eb9565f9d5731d4729bd7605510cec0f9e172e5f
+ resolved-ref: eb9565f9d5731d4729bd7605510cec0f9e172e5f
+ url: "https://github.com/Craftplacer/flutter_blurhash.git"
+ source: git
version: "0.7.0"
flutter_cache_manager:
dependency: "direct main"
@@ -678,10 +711,10 @@ packages:
dependency: transitive
description:
name: flutter_layout_grid
- sha256: "3c03d28f884d816d6f483bdd64dd79663abfb00eea7cb27ffe98380e8357af95"
+ sha256: "3529b7aa7ed2cb9861a0bbaa5c14d4be2beaf5a070ce0176077159f80c5de094"
url: "https://pub.dev"
source: hosted
- version: "2.0.4"
+ version: "2.0.5"
flutter_linkify:
dependency: "direct main"
description:
@@ -694,10 +727,10 @@ packages:
dependency: "direct dev"
description:
name: flutter_lints
- sha256: ad76540d21c066228ee3f9d1dad64a9f7e46530e8bb7c85011a88bc1fd874bc5
+ sha256: e2a421b7e59244faef694ba7b30562e489c2b489866e505074eb005cd7060db7
url: "https://pub.dev"
source: hosted
- version: "3.0.0"
+ version: "3.0.1"
flutter_local_notifications:
dependency: "direct main"
description:
@@ -738,27 +771,28 @@ packages:
flutter_math_fork:
dependency: "direct main"
description:
- name: flutter_math_fork
- sha256: a143a3a89131b578043ecbdb5e759c1033a1b3e9174f5cd1b979d93f4a7fb41c
- url: "https://pub.dev"
- source: hosted
+ path: "."
+ ref: "3442b36a436880ce1c023e25c868d6f4004c4c24"
+ resolved-ref: "3442b36a436880ce1c023e25c868d6f4004c4c24"
+ url: "https://github.com/The-Redhat/flutter_math_fork.git"
+ source: git
version: "0.7.1"
flutter_native_splash:
dependency: "direct dev"
description:
name: flutter_native_splash
- sha256: ecff62b3b893f2f665de7e4ad3de89f738941fcfcaaba8ee601e749efafa4698
+ sha256: d93394f22f73e810bda59e11ebe83329c5511d6460b6b7509c4e1f3c92d6d625
url: "https://pub.dev"
source: hosted
- version: "2.3.2"
+ version: "2.3.5"
flutter_olm:
dependency: "direct main"
description:
name: flutter_olm
- sha256: fef0c9476d02c0df25ef0a66680bc23ac529a36b4911505910bcd8711b449c81
+ sha256: "69aaac45d854e74d17d04dac8a0ca3f548266d271a0f0fa7600e006e81432417"
url: "https://pub.dev"
source: hosted
- version: "1.2.0"
+ version: "1.3.2"
flutter_openssl_crypto:
dependency: "direct main"
description:
@@ -771,10 +805,10 @@ packages:
dependency: transitive
description:
name: flutter_plugin_android_lifecycle
- sha256: "950e77c2bbe1692bc0874fc7fb491b96a4dc340457f4ea1641443d0a6c1ea360"
+ sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da
url: "https://pub.dev"
source: hosted
- version: "2.0.15"
+ version: "2.0.17"
flutter_ringtone_player:
dependency: "direct main"
description:
@@ -787,12 +821,12 @@ packages:
dependency: "direct main"
description:
name: flutter_secure_storage
- sha256: "22dbf16f23a4bcf9d35e51be1c84ad5bb6f627750565edd70dab70f3ff5fff8f"
+ sha256: ffdbb60130e4665d2af814a0267c481bcf522c41ae2e43caf69fa0146876d685
url: "https://pub.dev"
source: hosted
- version: "8.1.0"
+ version: "9.0.0"
flutter_secure_storage_linux:
- dependency: transitive
+ dependency: "direct overridden"
description:
name: flutter_secure_storage_linux
sha256: "0912ae29a572230ad52d8a4697e5518d7f0f429052fd51df7e5a7952c7efe2a3"
@@ -803,42 +837,42 @@ packages:
dependency: transitive
description:
name: flutter_secure_storage_macos
- sha256: "083add01847fc1c80a07a08e1ed6927e9acd9618a35e330239d4422cd2a58c50"
+ sha256: bd33935b4b628abd0b86c8ca20655c5b36275c3a3f5194769a7b3f37c905369c
url: "https://pub.dev"
source: hosted
- version: "3.0.0"
+ version: "3.0.1"
flutter_secure_storage_platform_interface:
dependency: transitive
description:
name: flutter_secure_storage_platform_interface
- sha256: b3773190e385a3c8a382007893d678ae95462b3c2279e987b55d140d3b0cb81b
+ sha256: "0d4d3a5dd4db28c96ae414d7ba3b8422fd735a8255642774803b2532c9a61d7e"
url: "https://pub.dev"
source: hosted
- version: "1.0.1"
+ version: "1.0.2"
flutter_secure_storage_web:
dependency: transitive
description:
name: flutter_secure_storage_web
- sha256: "42938e70d4b872e856e678c423cc0e9065d7d294f45bc41fc1981a4eb4beaffe"
+ sha256: "30f84f102df9dcdaa2241866a958c2ec976902ebdaa8883fbfe525f1f2f3cf20"
url: "https://pub.dev"
source: hosted
- version: "1.1.1"
+ version: "1.1.2"
flutter_secure_storage_windows:
dependency: transitive
description:
name: flutter_secure_storage_windows
- sha256: "38f9501c7cb6f38961ef0e1eacacee2b2d4715c63cc83fe56449c4d3d0b47255"
+ sha256: "5809c66f9dd3b4b93b0a6e2e8561539405322ee767ac2f64d084e2ab5429d108"
url: "https://pub.dev"
source: hosted
- version: "2.1.1"
+ version: "3.0.0"
flutter_svg:
dependency: "direct main"
description:
name: flutter_svg
- sha256: "8c5d68a82add3ca76d792f058b186a0599414f279f00ece4830b9b231b570338"
+ sha256: d39e7f95621fc84376bc0f7d504f05c3a41488c562f4a8ad410569127507402c
url: "https://pub.dev"
source: hosted
- version: "2.0.7"
+ version: "2.0.9"
flutter_test:
dependency: "direct dev"
description: flutter
@@ -848,10 +882,10 @@ packages:
dependency: "direct main"
description:
name: flutter_typeahead
- sha256: a3539f7a90246b152f569029dedcf0b842532d3f2a440701b520e0bf2acbcf42
+ sha256: b9942bd5b7611a6ec3f0730c477146cffa4cd4b051077983ba67ddfc9e7ee818
url: "https://pub.dev"
source: hosted
- version: "4.6.2"
+ version: "4.8.0"
flutter_web_auth_2:
dependency: "direct main"
description:
@@ -877,10 +911,10 @@ packages:
dependency: "direct main"
description:
name: flutter_webrtc
- sha256: "770c6f8babfdc4907539dc57bf9e98b89132eaa4486bac774c537dd25c2d5362"
+ sha256: "8522e9f347aed9f03ec591d05fc286a698c1b11a1a6d3e994e92727d24c6f352"
url: "https://pub.dev"
source: hosted
- version: "0.9.40"
+ version: "0.9.46"
freezed_annotation:
dependency: transitive
description:
@@ -946,18 +980,18 @@ packages:
dependency: transitive
description:
name: get
- sha256: "2ba20a47c8f1f233bed775ba2dd0d3ac97b4cf32fc17731b3dfc672b06b0e92a"
+ sha256: e4e7335ede17452b391ed3b2ede016545706c01a02292a6c97619705e7d2a85e
url: "https://pub.dev"
source: hosted
- version: "4.6.5"
+ version: "4.6.6"
get_it:
dependency: transitive
description:
name: get_it
- sha256: "529de303c739fca98cd7ece5fca500d8ff89649f1bb4b4e94fb20954abcd7468"
+ sha256: f79870884de16d689cf9a7d15eedf31ed61d750e813c538a6efb92660fea83c3
url: "https://pub.dev"
source: hosted
- version: "7.6.0"
+ version: "7.6.4"
get_storage:
dependency: "direct main"
description:
@@ -978,10 +1012,18 @@ packages:
dependency: "direct main"
description:
name: go_router
- sha256: e156bc1b2088eb5ece9351bccd48c3e1719a4858eacbd44e59162e98a68205d1
+ sha256: c247a4f76071c3b97bb5ae8912968870d5565644801c5e09f3bc961b4d874895
url: "https://pub.dev"
source: hosted
- version: "12.0.1"
+ version: "12.1.1"
+ gradient_borders:
+ dependency: transitive
+ description:
+ name: gradient_borders
+ sha256: "69eeaff519d145a4c6c213ada1abae386bcc8981a4970d923e478ce7ba19e309"
+ url: "https://pub.dev"
+ source: hosted
+ version: "1.0.0"
highlighter:
dependency: transitive
description:
@@ -1042,74 +1084,74 @@ packages:
dependency: transitive
description:
name: image
- sha256: a72242c9a0ffb65d03de1b7113bc4e189686fc07c7147b8b41811d0dd0e0d9bf
+ sha256: "028f61960d56f26414eb616b48b04eb37d700cbe477b7fb09bf1d7ce57fd9271"
url: "https://pub.dev"
source: hosted
- version: "4.0.17"
+ version: "4.1.3"
image_picker:
dependency: "direct main"
description:
name: image_picker
- sha256: "841837258e0b42c80946c43443054fc726f5e8aa84a97f363eb9ef0d45b33c14"
+ sha256: "7d7f2768df2a8b0a3cefa5ef4f84636121987d403130e70b17ef7e2cf650ba84"
url: "https://pub.dev"
source: hosted
- version: "1.0.2"
+ version: "1.0.4"
image_picker_android:
dependency: transitive
description:
name: image_picker_android
- sha256: "8179b54039b50eee561676232304f487602e2950ffb3e8995ed9034d6505ca34"
+ sha256: d6a6e78821086b0b737009b09363018309bbc6de3fd88cc5c26bc2bb44a4957f
url: "https://pub.dev"
source: hosted
- version: "0.8.7+4"
+ version: "0.8.8+2"
image_picker_for_web:
dependency: transitive
description:
name: image_picker_for_web
- sha256: "8b6c160cdbe572199103a091c783685b236110e4a0fd7a4947f32ff5b7da8765"
+ sha256: "50bc9ae6a77eea3a8b11af5eb6c661eeb858fdd2f734c2a4fd17086922347ef7"
url: "https://pub.dev"
source: hosted
- version: "3.0.0"
+ version: "3.0.1"
image_picker_ios:
dependency: transitive
description:
name: image_picker_ios
- sha256: b3e2f21feb28b24dd73a35d7ad6e83f568337c70afab5eabac876e23803f264b
+ sha256: "76ec722aeea419d03aa915c2c96bf5b47214b053899088c9abb4086ceecf97a7"
url: "https://pub.dev"
source: hosted
- version: "0.8.8"
+ version: "0.8.8+4"
image_picker_linux:
dependency: transitive
description:
name: image_picker_linux
- sha256: "02cbc21fe1706b97942b575966e5fbbeaac535e76deef70d3a242e4afb857831"
+ sha256: "4ed1d9bb36f7cd60aa6e6cd479779cc56a4cb4e4de8f49d487b1aaad831300fa"
url: "https://pub.dev"
source: hosted
- version: "0.2.1"
+ version: "0.2.1+1"
image_picker_macos:
dependency: transitive
description:
name: image_picker_macos
- sha256: cee2aa86c56780c13af2c77b5f2f72973464db204569e1ba2dd744459a065af4
+ sha256: "3f5ad1e8112a9a6111c46d0b57a7be2286a9a07fc6e1976fdf5be2bd31d4ff62"
url: "https://pub.dev"
source: hosted
- version: "0.2.1"
+ version: "0.2.1+1"
image_picker_platform_interface:
dependency: transitive
description:
name: image_picker_platform_interface
- sha256: c1134543ae2187e85299996d21c526b2f403854994026d575ae4cf30d7bb2a32
+ sha256: ed9b00e63977c93b0d2d2b343685bed9c324534ba5abafbb3dfbd6a780b1b514
url: "https://pub.dev"
source: hosted
- version: "2.9.0"
+ version: "2.9.1"
image_picker_windows:
dependency: transitive
description:
name: image_picker_windows
- sha256: c3066601ea42113922232c7b7b3330a2d86f029f685bba99d82c30e799914952
+ sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb"
url: "https://pub.dev"
source: hosted
- version: "0.2.1"
+ version: "0.2.1+1"
import_sorter:
dependency: "direct dev"
description:
@@ -1130,10 +1172,10 @@ packages:
dependency: transitive
description:
name: in_app_purchase_android
- sha256: "3eeff5e51306e1916dda31eb5647b52da8e71ba81ffd9e4d840ee89986d4bf22"
+ sha256: c4b84caa4e2c7ffebda444c5033fd8423cc3a45a6e1066929bbbcd4daf665db5
url: "https://pub.dev"
source: hosted
- version: "0.3.0+14"
+ version: "0.3.0+15"
in_app_purchase_platform_interface:
dependency: transitive
description:
@@ -1146,10 +1188,10 @@ packages:
dependency: transitive
description:
name: in_app_purchase_storekit
- sha256: "88afd256c7605d431f0ce29d0161f9554851f90ecb92ceb9e18196c4e7858d52"
+ sha256: "29526f5ce85bd908b4cacdadb2e8ef299bccbb516b90d2881805343f868502ab"
url: "https://pub.dev"
source: hosted
- version: "0.3.6+7"
+ version: "0.3.7"
integration_test:
dependency: "direct dev"
description: flutter
@@ -1171,6 +1213,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "0.18.1"
+ io:
+ dependency: transitive
+ description:
+ name: io
+ sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e"
+ url: "https://pub.dev"
+ source: hosted
+ version: "1.0.4"
jiffy:
dependency: transitive
description:
@@ -1199,26 +1249,26 @@ packages:
dependency: "direct main"
description:
name: just_audio
- sha256: "890cd0fc41a1a4530c171e375a2a3fb6a09d84e9d508c5195f40bcff54330327"
+ sha256: b607cd1a43bac03d85c3aaee00448ff4a589ef2a77104e3d409889ff079bf823
url: "https://pub.dev"
source: hosted
- version: "0.9.34"
+ version: "0.9.36"
just_audio_platform_interface:
dependency: transitive
description:
name: just_audio_platform_interface
- sha256: d8409da198bbc59426cd45d4c92fca522a2ec269b576ce29459d6d6fcaeb44df
+ sha256: c3dee0014248c97c91fe6299edb73dc4d6c6930a2f4f713579cd692d9e47f4a1
url: "https://pub.dev"
source: hosted
- version: "4.2.1"
+ version: "4.2.2"
just_audio_web:
dependency: transitive
description:
name: just_audio_web
- sha256: ff62f733f437b25a0ff590f0e295fa5441dcb465f1edbdb33b3dea264705bc13
+ sha256: "134356b0fe3d898293102b33b5fd618831ffdc72bb7a1b726140abdf22772b70"
url: "https://pub.dev"
source: hosted
- version: "0.4.8"
+ version: "0.4.9"
jwt_decode:
dependency: "direct main"
description:
@@ -1296,18 +1346,18 @@ packages:
dependency: transitive
description:
name: macos_ui
- sha256: b739149b812c47e5ff10a00c9fdf7315f22ac5cd1fdbd447a6b7ffee31472717
+ sha256: cc499122655c61728185561e9006af4b239f9526f98d7b2cbf42124e9044a0ff
url: "https://pub.dev"
source: hosted
- version: "2.0.0"
+ version: "2.0.2"
macos_window_utils:
dependency: transitive
description:
name: macos_window_utils
- sha256: "43a90473f8786f00f07203e6819dab67e032f8896dafa4a6f85fbc71fba32c0b"
+ sha256: b3dfd47bbc605f0e315af684b50370a8f84932267aaa542098063fa384d593bd
url: "https://pub.dev"
source: hosted
- version: "1.2.0"
+ version: "1.4.0"
markdown:
dependency: transitive
description:
@@ -1336,18 +1386,18 @@ packages:
dependency: "direct main"
description:
name: matrix
- sha256: "1e4bef4923fa1e33124843aa59932739e69a5507178f18313ec1067c046156f3"
+ sha256: b01a8a7141a586853a4f9b2e98b3c9912ff74bbceadc16b2bf3630bf055a830a
url: "https://pub.dev"
source: hosted
- version: "0.22.6"
+ version: "0.22.7"
matrix_api_lite:
dependency: transitive
description:
name: matrix_api_lite
- sha256: e5304b33b16d60863533836717be808845bf94cd0e3a339ef146d9321e6b59b7
+ sha256: "62bdd1dffb956e956863ba21e52109157502342b749e4728f4105f0c6d73a254"
url: "https://pub.dev"
source: hosted
- version: "1.7.1"
+ version: "1.7.2"
matrix_homeserver_recommendations:
dependency: "direct main"
description:
@@ -1360,10 +1410,10 @@ packages:
dependency: transitive
description:
name: meta
- sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
+ sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e
url: "https://pub.dev"
source: hosted
- version: "1.9.1"
+ version: "1.10.0"
mgrs_dart:
dependency: transitive
description:
@@ -1384,18 +1434,18 @@ packages:
dependency: "direct dev"
description:
name: msix
- sha256: "76c87b8207323803169626a55afd78bbb8413c984df349a76598b9fbf9224677"
+ sha256: "957d04eee260e4bd15bec1fdb988dfc73718285e201cf89d97ef01ef38e66d4c"
url: "https://pub.dev"
source: hosted
- version: "3.16.1"
+ version: "3.16.6"
native_imaging:
dependency: "direct main"
description:
name: native_imaging
- sha256: "9f96eafb6d84ec934262caf36b60e236d1c4507ed6555a1effc117d463ef5932"
+ sha256: "182ccd8e0815a8a2158500ef66c828c030f6b9e05783e41e22f33bbcfd46a3d5"
url: "https://pub.dev"
source: hosted
- version: "0.1.0"
+ version: "0.1.1"
nested:
dependency: transitive
description:
@@ -1488,50 +1538,50 @@ packages:
dependency: "direct main"
description:
name: path_provider
- sha256: "909b84830485dbcd0308edf6f7368bc8fd76afa26a270420f34cabea2a6467a0"
+ sha256: a1aa8aaa2542a6bc57e381f132af822420216c80d4781f7aa085ca3229208aaa
url: "https://pub.dev"
source: hosted
- version: "2.1.0"
+ version: "2.1.1"
path_provider_android:
dependency: transitive
description:
name: path_provider_android
- sha256: "5d44fc3314d969b84816b569070d7ace0f1dea04bd94a83f74c4829615d22ad8"
+ sha256: e595b98692943b4881b219f0a9e3945118d3c16bd7e2813f98ec6e532d905f72
url: "https://pub.dev"
source: hosted
- version: "2.1.0"
+ version: "2.2.1"
path_provider_foundation:
dependency: transitive
description:
name: path_provider_foundation
- sha256: "1b744d3d774e5a879bb76d6cd1ecee2ba2c6960c03b1020cd35212f6aa267ac5"
+ sha256: "19314d595120f82aca0ba62787d58dde2cc6b5df7d2f0daf72489e38d1b57f2d"
url: "https://pub.dev"
source: hosted
- version: "2.3.0"
+ version: "2.3.1"
path_provider_linux:
dependency: transitive
description:
name: path_provider_linux
- sha256: ba2b77f0c52a33db09fc8caf85b12df691bf28d983e84cf87ff6d693cfa007b3
+ sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
url: "https://pub.dev"
source: hosted
- version: "2.2.0"
+ version: "2.2.1"
path_provider_platform_interface:
dependency: transitive
description:
name: path_provider_platform_interface
- sha256: bced5679c7df11190e1ddc35f3222c858f328fff85c3942e46e7f5589bf9eb84
+ sha256: "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c"
url: "https://pub.dev"
source: hosted
- version: "2.1.0"
+ version: "2.1.1"
path_provider_windows:
dependency: transitive
description:
name: path_provider_windows
- sha256: ee0e0d164516b90ae1f970bdf29f726f1aa730d7cfc449ecc74c495378b705da
+ sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170"
url: "https://pub.dev"
source: hosted
- version: "2.2.0"
+ version: "2.2.1"
permission_handler:
dependency: "direct main"
description:
@@ -1584,34 +1634,34 @@ packages:
dependency: transitive
description:
name: platform
- sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76"
+ sha256: ae68c7bfcd7383af3629daafb32fb4e8681c7154428da4febcff06200585f102
url: "https://pub.dev"
source: hosted
- version: "3.1.0"
+ version: "3.1.2"
platform_detect:
dependency: transitive
description:
name: platform_detect
- sha256: "14afcb6ffcd93745e39a288db53d1d6522ea25d71f7993c13a367a86c437b54d"
+ sha256: "08f4ee79c0e1c4858d37e06b22352a3ebdef5466b613749a3adb03e703d4f5b0"
url: "https://pub.dev"
source: hosted
- version: "2.0.7"
+ version: "2.0.11"
plugin_platform_interface:
dependency: transitive
description:
name: plugin_platform_interface
- sha256: "43798d895c929056255600343db8f049921cbec94d31ec87f1dc5c16c01935dd"
+ sha256: da3fdfeccc4d4ff2da8f8c556704c08f912542c5fb3cf2233ed75372384a034d
url: "https://pub.dev"
source: hosted
- version: "2.1.5"
+ version: "2.1.6"
pointer_interceptor:
dependency: transitive
description:
name: pointer_interceptor
- sha256: "6aa680b30d96dccef496933d00208ad25f07e047f644dc98ce03ec6141633a9a"
+ sha256: adf7a637f97c077041d36801b43be08559fd4322d2127b3f20bb7be1b9eebc22
url: "https://pub.dev"
source: hosted
- version: "0.9.3+4"
+ version: "0.9.3+7"
pointycastle:
dependency: transitive
description:
@@ -1648,10 +1698,10 @@ packages:
dependency: "direct main"
description:
name: provider
- sha256: cdbe7530b12ecd9eb455bdaa2fcb8d4dad22e80b8afb4798b41479d5ce26847f
+ sha256: "9a96a0a19b594dbc5bf0f1f27d2bc67d5f95957359b461cd9feb44ed6ae75096"
url: "https://pub.dev"
source: hosted
- version: "6.0.5"
+ version: "6.1.1"
pub_semver:
dependency: transitive
description:
@@ -1668,6 +1718,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "0.3.0"
+ pubspec_parse:
+ dependency: transitive
+ description:
+ name: pubspec_parse
+ sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367
+ url: "https://pub.dev"
+ source: hosted
+ version: "1.2.3"
punycode:
dependency: "direct main"
description:
@@ -1784,10 +1842,10 @@ packages:
dependency: transitive
description:
name: remove_emoji
- sha256: d75024ae134328c38871c0fe73ada15ebeb635fca8903d039f5090a3e902c2b2
+ sha256: ed9e8463e8c9ca05b86fcddd4c0dbd2c2605a50d267f4ffa05496607924809e3
url: "https://pub.dev"
source: hosted
- version: "0.0.9"
+ version: "0.0.10"
rxdart:
dependency: transitive
description:
@@ -1824,90 +1882,90 @@ packages:
dependency: transitive
description:
name: sentry
- sha256: "80cc1b38c7219c8072c8a79f124838bd668e0bc840e8a98c0fbf9f55a432997d"
+ sha256: e7ded42974bac5f69e4ca4ddc57d30499dd79381838f24b7e8fd9aa4139e7b79
url: "https://pub.dev"
source: hosted
- version: "7.11.0"
+ version: "7.13.2"
sentry_flutter:
dependency: "direct main"
description:
name: sentry_flutter
- sha256: "01dffb216873d1d31436bc50585fb222d4e7d8bcefcf84ccc8f145dac546c1d5"
+ sha256: d6f55ec7a1f681784165021f749007712a72ff57eadf91e963331b6ae326f089
url: "https://pub.dev"
source: hosted
- version: "7.11.0"
+ version: "7.13.2"
share_plus:
dependency: "direct main"
description:
name: share_plus
- sha256: "6cec740fa0943a826951223e76218df002804adb588235a8910dc3d6b0654e11"
+ sha256: f74fc3f1cbd99f39760182e176802f693fa0ec9625c045561cfad54681ea93dd
url: "https://pub.dev"
source: hosted
- version: "7.1.0"
+ version: "7.2.1"
share_plus_platform_interface:
dependency: transitive
description:
name: share_plus_platform_interface
- sha256: "357412af4178d8e11d14f41723f80f12caea54cf0d5cd29af9dcdab85d58aea7"
+ sha256: df08bc3a07d01f5ea47b45d03ffcba1fa9cd5370fb44b3f38c70e42cced0f956
url: "https://pub.dev"
source: hosted
- version: "3.3.0"
+ version: "3.3.1"
shared_preferences:
dependency: "direct main"
description:
name: shared_preferences
- sha256: "0344316c947ffeb3a529eac929e1978fcd37c26be4e8468628bac399365a3ca1"
+ sha256: "81429e4481e1ccfb51ede496e916348668fd0921627779233bd24cc3ff6abd02"
url: "https://pub.dev"
source: hosted
- version: "2.2.0"
+ version: "2.2.2"
shared_preferences_android:
dependency: transitive
description:
name: shared_preferences_android
- sha256: fe8401ec5b6dcd739a0fe9588802069e608c3fdbfd3c3c93e546cf2f90438076
+ sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06"
url: "https://pub.dev"
source: hosted
- version: "2.2.0"
+ version: "2.2.1"
shared_preferences_foundation:
dependency: transitive
description:
name: shared_preferences_foundation
- sha256: d29753996d8eb8f7619a1f13df6ce65e34bc107bef6330739ed76f18b22310ef
+ sha256: "7bf53a9f2d007329ee6f3df7268fd498f8373602f943c975598bbb34649b62a7"
url: "https://pub.dev"
source: hosted
- version: "2.3.3"
+ version: "2.3.4"
shared_preferences_linux:
dependency: transitive
description:
name: shared_preferences_linux
- sha256: "71d6806d1449b0a9d4e85e0c7a917771e672a3d5dc61149cc9fac871115018e1"
+ sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa"
url: "https://pub.dev"
source: hosted
- version: "2.3.0"
+ version: "2.3.2"
shared_preferences_platform_interface:
dependency: transitive
description:
name: shared_preferences_platform_interface
- sha256: "23b052f17a25b90ff2b61aad4cc962154da76fb62848a9ce088efe30d7c50ab1"
+ sha256: d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a
url: "https://pub.dev"
source: hosted
- version: "2.3.0"
+ version: "2.3.1"
shared_preferences_web:
dependency: transitive
description:
name: shared_preferences_web
- sha256: "7347b194fb0bbeb4058e6a4e87ee70350b6b2b90f8ac5f8bd5b3a01548f6d33a"
+ sha256: d762709c2bbe80626ecc819143013cc820fa49ca5e363620ee20a8b15a3e3daf
url: "https://pub.dev"
source: hosted
- version: "2.2.0"
+ version: "2.2.1"
shared_preferences_windows:
dependency: transitive
description:
name: shared_preferences_windows
- sha256: f95e6a43162bce43c9c3405f3eb6f39e5b5d11f65fab19196cf8225e2777624d
+ sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59"
url: "https://pub.dev"
source: hosted
- version: "2.3.0"
+ version: "2.3.2"
sky_engine:
dependency: transitive
description: flutter
@@ -1941,26 +1999,26 @@ packages:
dependency: transitive
description:
name: sqflite_common
- sha256: "1b92f368f44b0dee2425bb861cfa17b6f6cf3961f762ff6f941d20b33355660a"
+ sha256: bb4738f15b23352822f4c42a531677e5c6f522e079461fd240ead29d8d8a54a6
url: "https://pub.dev"
source: hosted
- version: "2.5.0"
+ version: "2.5.0+2"
stack_trace:
dependency: transitive
description:
name: stack_trace
- sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
+ sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b"
url: "https://pub.dev"
source: hosted
- version: "1.11.0"
+ version: "1.11.1"
stream_channel:
dependency: transitive
description:
name: stream_channel
- sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
+ sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7
url: "https://pub.dev"
source: hosted
- version: "2.1.1"
+ version: "2.1.2"
string_scanner:
dependency: transitive
description:
@@ -2029,10 +2087,10 @@ packages:
dependency: transitive
description:
name: test_api
- sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8"
+ sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b"
url: "https://pub.dev"
source: hosted
- version: "0.6.0"
+ version: "0.6.1"
timezone:
dependency: transitive
description:
@@ -2117,34 +2175,34 @@ packages:
dependency: "direct main"
description:
name: unifiedpush
- sha256: "083863337eae48a3d5e30b41964c7c025a6e0e77c3f9c74340d5ff7bfa4e8c85"
+ sha256: ef7f3ae6139d27169604e3844379ef7929af573a2be21d9e82187f44ab7b9a32
url: "https://pub.dev"
source: hosted
- version: "5.0.0"
+ version: "5.0.1"
unifiedpush_android:
dependency: transitive
description:
name: unifiedpush_android
- sha256: "559124eb1d6bcc5d8f422c8b9a942e52cc704858e6f0afad4c449feef654f1a3"
+ sha256: "19fcdd2671c46bd074efbb80c43cedd0bcddd1fc0cfd3e2f74aec03fb0659d58"
url: "https://pub.dev"
source: hosted
- version: "2.1.2"
+ version: "2.2.0"
unifiedpush_platform_interface:
dependency: transitive
description:
name: unifiedpush_platform_interface
- sha256: b973137572f84b67656b18032f5047d327cffc5ab77ec4230d2459b1144ccf84
+ sha256: "7782b18a15d22bb184fa766ef1e0c675eef862055ff815453df7041dfd026146"
url: "https://pub.dev"
source: hosted
- version: "2.0.0"
+ version: "2.0.1"
universal_html:
dependency: "direct main"
description:
name: universal_html
- sha256: a5cc5a84188e5d3e58f3ed77fe3dd4575dc1f68aa7c89e51b5b4105b9aab3b9d
+ sha256: "56536254004e24d9d8cfdb7dbbf09b74cf8df96729f38a2f5c238163e3d58971"
url: "https://pub.dev"
source: hosted
- version: "2.2.3"
+ version: "2.2.4"
universal_io:
dependency: transitive
description:
@@ -2165,66 +2223,66 @@ packages:
dependency: "direct main"
description:
name: url_launcher
- sha256: "781bd58a1eb16069412365c98597726cd8810ae27435f04b3b4d3a470bacd61e"
+ sha256: b1c9e98774adf8820c96fbc7ae3601231d324a7d5ebd8babe27b6dfac91357ba
url: "https://pub.dev"
source: hosted
- version: "6.1.12"
+ version: "6.2.1"
url_launcher_android:
dependency: transitive
description:
name: url_launcher_android
- sha256: "3dd2388cc0c42912eee04434531a26a82512b9cb1827e0214430c9bcbddfe025"
+ sha256: "31222ffb0063171b526d3e569079cf1f8b294075ba323443fdc690842bfd4def"
url: "https://pub.dev"
source: hosted
- version: "6.0.38"
+ version: "6.2.0"
url_launcher_ios:
dependency: transitive
description:
name: url_launcher_ios
- sha256: "9af7ea73259886b92199f9e42c116072f05ff9bea2dcb339ab935dfc957392c2"
+ sha256: "4ac97281cf60e2e8c5cc703b2b28528f9b50c8f7cebc71df6bdf0845f647268a"
url: "https://pub.dev"
source: hosted
- version: "6.1.4"
+ version: "6.2.0"
url_launcher_linux:
dependency: transitive
description:
name: url_launcher_linux
- sha256: "207f4ddda99b95b4d4868320a352d374b0b7e05eefad95a4a26f57da413443f5"
+ sha256: "9f2d390e096fdbe1e6e6256f97851e51afc2d9c423d3432f1d6a02a8a9a8b9fd"
url: "https://pub.dev"
source: hosted
- version: "3.0.5"
+ version: "3.1.0"
url_launcher_macos:
dependency: transitive
description:
name: url_launcher_macos
- sha256: "1c4fdc0bfea61a70792ce97157e5cc17260f61abbe4f39354513f39ec6fd73b1"
+ sha256: b7244901ea3cf489c5335bdacda07264a6e960b1c1b1a9f91e4bc371d9e68234
url: "https://pub.dev"
source: hosted
- version: "3.0.6"
+ version: "3.1.0"
url_launcher_platform_interface:
dependency: transitive
description:
name: url_launcher_platform_interface
- sha256: bfdfa402f1f3298637d71ca8ecfe840b4696698213d5346e9d12d4ab647ee2ea
+ sha256: "980e8d9af422f477be6948bdfb68df8433be71f5743a188968b0c1b887807e50"
url: "https://pub.dev"
source: hosted
- version: "2.1.3"
+ version: "2.2.0"
url_launcher_web:
dependency: transitive
description:
name: url_launcher_web
- sha256: cc26720eefe98c1b71d85f9dc7ef0cada5132617046369d9dc296b3ecaa5cbb4
+ sha256: "7fd2f55fe86cea2897b963e864dc01a7eb0719ecc65fcef4c1cc3d686d718bb2"
url: "https://pub.dev"
source: hosted
- version: "2.0.18"
+ version: "2.2.0"
url_launcher_windows:
dependency: transitive
description:
name: url_launcher_windows
- sha256: "7967065dd2b5fccc18c653b97958fdf839c5478c28e767c61ee879f4e7882422"
+ sha256: "7754a1ad30ee896b265f8d14078b0513a4dba28d358eabb9d5f339886f4a1adc"
url: "https://pub.dev"
source: hosted
- version: "3.0.7"
+ version: "3.1.0"
uuid:
dependency: transitive
description:
@@ -2237,26 +2295,26 @@ packages:
dependency: transitive
description:
name: vector_graphics
- sha256: "670f6e07aca990b4a2bcdc08a784193c4ccdd1932620244c3a86bb72a0eac67f"
+ sha256: "0f0c746dd2d6254a0057218ff980fc7f5670fd0fcf5e4db38a490d31eed4ad43"
url: "https://pub.dev"
source: hosted
- version: "1.1.7"
+ version: "1.1.9+1"
vector_graphics_codec:
dependency: transitive
description:
name: vector_graphics_codec
- sha256: "7451721781d967db9933b63f5733b1c4533022c0ba373a01bdd79d1a5457f69f"
+ sha256: "0edf6d630d1bfd5589114138ed8fada3234deacc37966bec033d3047c29248b7"
url: "https://pub.dev"
source: hosted
- version: "1.1.7"
+ version: "1.1.9+1"
vector_graphics_compiler:
dependency: transitive
description:
name: vector_graphics_compiler
- sha256: "80a13c613c8bde758b1464a1755a7b3a8f2b6cec61fbf0f5a53c94c30f03ba2e"
+ sha256: d24333727332d9bd20990f1483af4e09abdb9b1fc7c3db940b56ab5c42790c26
url: "https://pub.dev"
source: hosted
- version: "1.1.7"
+ version: "1.1.9+1"
vector_math:
dependency: transitive
description:
@@ -2269,10 +2327,10 @@ packages:
dependency: "direct main"
description:
name: vibration
- sha256: d81f665bcb201f586c295a21f3fe8f1cb6dc32c81a213a99e9c714ec8e811ce5
+ sha256: "63d4f6b03e38d106599da18e786d5edcd02354433a4ed478fccbbcfc347193ab"
url: "https://pub.dev"
source: hosted
- version: "1.8.1"
+ version: "1.8.3"
video_compress:
dependency: "direct main"
description:
@@ -2285,42 +2343,42 @@ packages:
dependency: "direct main"
description:
name: video_player
- sha256: "3fd106c74da32f336dc7feb65021da9b0207cb3124392935f1552834f7cce822"
+ sha256: e16f0a83601a78d165dabc17e4dac50997604eb9e4cc76e10fa219046b70cef3
url: "https://pub.dev"
source: hosted
- version: "2.7.0"
+ version: "2.8.1"
video_player_android:
dependency: transitive
description:
name: video_player_android
- sha256: f338a5a396c845f4632959511cad3542cdf3167e1b2a1a948ef07f7123c03608
+ sha256: "3fe89ab07fdbce786e7eb25b58532d6eaf189ceddc091cb66cba712f8d9e8e55"
url: "https://pub.dev"
source: hosted
- version: "2.4.9"
+ version: "2.4.10"
video_player_avfoundation:
dependency: transitive
description:
name: video_player_avfoundation
- sha256: f5f5b7fe8c865be8a57fe80c2dca130772e1db775b7af4e5c5aa1905069cfc6c
+ sha256: fe73d636f82286a3739f5e644f95f09442cacdc436ebbe5436521dc915f3ecac
url: "https://pub.dev"
source: hosted
- version: "2.4.9"
+ version: "2.5.1"
video_player_platform_interface:
dependency: transitive
description:
name: video_player_platform_interface
- sha256: "1ca9acd7a0fb15fb1a990cb554e6f004465c6f37c99d2285766f08a4b2802988"
+ sha256: be72301bf2c0150ab35a8c34d66e5a99de525f6de1e8d27c0672b836fe48f73a
url: "https://pub.dev"
source: hosted
- version: "6.2.0"
+ version: "6.2.1"
video_player_web:
dependency: transitive
description:
name: video_player_web
- sha256: "44ce41424d104dfb7cf6982cc6b84af2b007a24d126406025bf40de5d481c74c"
+ sha256: ab7a462b07d9ca80bed579e30fb3bce372468f1b78642e0911b10600f2c5cb5b
url: "https://pub.dev"
source: hosted
- version: "2.0.16"
+ version: "2.1.2"
visibility_detector:
dependency: transitive
description:
@@ -2333,10 +2391,10 @@ packages:
dependency: transitive
description:
name: vm_service
- sha256: c620a6f783fa22436da68e42db7ebbf18b8c44b9a46ab911f666ff09ffd9153f
+ sha256: c538be99af830f478718b51630ec1b6bee5e74e52c8a802d328d9e71d35d2583
url: "https://pub.dev"
source: hosted
- version: "11.7.1"
+ version: "11.10.0"
wakelock_platform_interface:
dependency: transitive
description:
@@ -2382,10 +2440,10 @@ packages:
dependency: transitive
description:
name: web
- sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10
+ sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152
url: "https://pub.dev"
source: hosted
- version: "0.1.4-beta"
+ version: "0.3.0"
webdriver:
dependency: transitive
description:
@@ -2398,26 +2456,26 @@ packages:
dependency: "direct main"
description:
name: webrtc_interface
- sha256: faec2b578f7cd588766843a8c59d4a0137c44de10b83341ce7bec05e104614d7
+ sha256: "2efbd3e4e5ebeb2914253bcc51dafd3053c4b87b43f3076c74835a9deecbae3a"
url: "https://pub.dev"
source: hosted
- version: "1.1.1"
+ version: "1.1.2"
win32:
dependency: transitive
description:
name: win32
- sha256: f2add6fa510d3ae152903412227bda57d0d5a8da61d2c39c1fb022c9429a41c0
+ sha256: "7c99c0e1e2fa190b48d25c81ca5e42036d5cac81430ef249027d97b0935c553f"
url: "https://pub.dev"
source: hosted
- version: "5.0.6"
+ version: "5.1.0"
win32_registry:
dependency: transitive
description:
name: win32_registry
- sha256: e4506d60b7244251bc59df15656a3093501c37fb5af02105a944d73eb95be4c9
+ sha256: "41fd8a189940d8696b1b810efb9abcf60827b6cbfab90b0c43e8439e3a39d85a"
url: "https://pub.dev"
source: hosted
- version: "1.1.1"
+ version: "1.1.2"
window_to_front:
dependency: transitive
description:
@@ -2438,10 +2496,10 @@ packages:
dependency: transitive
description:
name: xdg_directories
- sha256: f0c26453a2d47aa4c2570c6a033246a3fc62da2fe23c7ffdd0a7495086dc0247
+ sha256: "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2"
url: "https://pub.dev"
source: hosted
- version: "1.0.2"
+ version: "1.0.3"
xml:
dependency: transitive
description:
@@ -2459,5 +2517,5 @@ packages:
source: hosted
version: "3.1.2"
sdks:
- dart: ">=3.1.0-185.0.dev <4.0.0"
- flutter: ">=3.10.0"
+ dart: ">=3.2.0-194.0.dev <4.0.0"
+ flutter: ">=3.13.0"
diff --git a/pubspec.yaml b/pubspec.yaml
index 6310936d5..d8e3055e0 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -7,29 +7,29 @@ environment:
sdk: ">=3.0.0 <4.0.0"
dependencies:
- adaptive_dialog: ^1.9.0+2
- animations: ^2.0.7
- archive: ^3.3.9
+ adaptive_dialog: ^1.10.0
+ animations: ^2.0.8
+ archive: ^3.4.9
async: ^2.11.0
- badges: ^3.1.1
- blurhash_dart: ^1.1.0
+ badges: ^3.1.2
+ blurhash_dart: ^1.2.1
callkeep: ^0.3.2
- chewie: ^1.3.6
- collection: ^1.16.0
+ chewie: ^1.7.1
+ collection: ^1.17.2
connectivity_plus: ^3.0.2
country_picker: ^2.0.20
csv: ^5.0.2
cupertino_icons: any
- desktop_drop: ^0.4.0
+ desktop_drop: ^0.4.4
desktop_lifecycle: ^0.1.0
desktop_notifications: ^0.6.3
- device_info_plus: ^9.0.2
- dynamic_color: ^1.6.0
- emoji_picker_flutter: ^1.5.1
+ device_info_plus: ^9.1.0
+ dynamic_color: ^1.6.8
+ emoji_picker_flutter: ^1.6.3
emoji_proposal: ^0.0.1
emojis: ^0.9.9
#fcm_shared_isolate: ^0.1.0
- file_picker: ^5.3.0
+ file_picker: ^6.1.1
fl_chart: ^0.61.0
firebase_analytics: ^10.2.1
firebase_core: ^2.10.0
@@ -56,15 +56,15 @@ dependencies:
flutter_olm: ^1.2.0
flutter_openssl_crypto: ^0.1.0
flutter_ringtone_player: ^3.1.1
- flutter_secure_storage: ^8.0.0
+ flutter_secure_storage: ^9.0.0
flutter_svg: ^2.0.0+1
- flutter_typeahead: ^4.3.2
+ flutter_typeahead: ^4.8.0
flutter_web_auth_2: ^3.0.3
- flutter_webrtc: ^0.9.37
+ flutter_webrtc: ^0.9.46
future_loading_dialog: ^0.3.0
geolocator: ^7.6.2
get_storage: ^2.1.1
- go_router: ^12.0.1
+ go_router: ^12.1.1
hive: ^2.2.3
hive_flutter: ^1.1.0
http: ^0.13.4
@@ -92,22 +92,22 @@ dependencies:
qr_code_scanner: ^1.0.0
qr_flutter: ^4.0.0
receive_sharing_intent: ^1.4.5
- record: ^4.4.4 # Upgrade to 5 currently breaks playing on iOS
+ record: 4.4.4 # Upgrade to 5 currently breaks playing on iOS
scroll_to_index: ^3.0.1
sentry_flutter: ^7.4.0
- share_plus: ^7.0.0
+ share_plus: ^7.2.1
shared_preferences: ^2.2.0 # Pinned because https://github.com/flutter/flutter/issues/118401
slugify: ^2.0.0
swipe_to_action: ^0.2.0
syncfusion_flutter_xlsio: ^22.2.9
tor_detector_web: ^1.1.0
uni_links: ^0.5.1
- unifiedpush: ^5.0.0
- universal_html: ^2.0.8
- url_launcher: ^6.0.20
- vibration: ^1.7.4-nullsafety.0
+ unifiedpush: ^5.0.1
+ universal_html: ^2.2.4
+ url_launcher: ^6.2.1
+ vibration: ^1.8.3
video_compress: ^3.1.1
- video_player: ^2.2.18
+ video_player: ^2.8.1
wakelock_plus: ^1.1.3
webrtc_interface: ^1.0.13
@@ -179,6 +179,18 @@ msix_config:
install_certificate: false
dependency_overrides:
+ # https://github.com/fluttercommunity/flutter_blurhash/pull/58
+ flutter_blurhash:
+ git:
+ url: https://github.com/Craftplacer/flutter_blurhash.git
+ ref: eb9565f9d5731d4729bd7605510cec0f9e172e5f
+ # https://github.com/simpleclub-extended/flutter_math_fork/pull/87
+ flutter_math_fork:
+ git:
+ url: https://github.com/The-Redhat/flutter_math_fork.git
+ ref: 3442b36a436880ce1c023e25c868d6f4004c4c24
+ # Until https://github.com/mogol/flutter_secure_storage/issues/616 is fixed
+ flutter_secure_storage_linux: 1.1.3
geolocator_android:
hosted:
name: geolocator_android
diff --git a/scripts/enable-android-google-services.patch b/scripts/enable-android-google-services.patch
index 10800f419..95dfaa1ff 100644
--- a/scripts/enable-android-google-services.patch
+++ b/scripts/enable-android-google-services.patch
@@ -2,7 +2,7 @@ diff --git a/android/app/build.gradle b/android/app/build.gradle
index 001fbd72..339b35af 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
-@@ -68,6 +68,10 @@ android {
+@@ -70,6 +70,10 @@
}
release {
signingConfig signingConfigs.release
@@ -12,7 +12,7 @@ index 001fbd72..339b35af 100644
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
- }
+ // https://stackoverflow.com/a/77494454/8222484
@@ -78,8 +82,11 @@ flutter {
dependencies {
@@ -149,11 +149,11 @@ index 6999d0b8..b2c9144f 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -26,7 +26,7 @@ dependencies:
- emoji_picker_flutter: ^1.5.1
+ emoji_picker_flutter: ^1.6.3
emoji_proposal: ^0.0.1
emojis: ^0.9.9
- #fcm_shared_isolate: ^0.1.0
+ fcm_shared_isolate: ^0.1.0
- file_picker: ^6.0.0
+ file_picker: ^6.1.1
flutter:
sdk: flutter
diff --git a/scripts/release-ios-testflight.sh b/scripts/release-ios-testflight.sh
index a30d3e5a4..e3f1a109a 100644
--- a/scripts/release-ios-testflight.sh
+++ b/scripts/release-ios-testflight.sh
@@ -1,5 +1,7 @@
#!/bin/sh -ve
git apply ./scripts/enable-android-google-services.patch
+rm -rf fonts/NotoEmoji
+yq -i 'del( .flutter.fonts[] | select(.family == "NotoEmoji") )' pubspec.yaml
flutter clean
flutter pub get
cd ios