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