Merge branch 'main' into dependabot/pub/record-6.2.0
This commit is contained in:
commit
72fd969358
319 changed files with 24036 additions and 40569 deletions
3
.github/ISSUE_TEMPLATE/test_report.md
vendored
3
.github/ISSUE_TEMPLATE/test_report.md
vendored
|
|
@ -39,3 +39,6 @@ labels: test
|
||||||
10. Drag&Drop to send a file into a chat still works:
|
10. Drag&Drop to send a file into a chat still works:
|
||||||
- [ ] Web
|
- [ ] Web
|
||||||
- [ ] Linux
|
- [ ] Linux
|
||||||
|
11. Deeplinks are still working? https://matrix.to/#/@krille:janian.de
|
||||||
|
- [ ] Android
|
||||||
|
- [ ] iOS
|
||||||
29
.github/workflows/check_duplicates.yaml
vendored
29
.github/workflows/check_duplicates.yaml
vendored
|
|
@ -1,29 +0,0 @@
|
||||||
name: Check duplicates
|
|
||||||
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types: [opened]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
check_duplicates:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
title: ${{ github.event.issue.title }}
|
|
||||||
author: ${{ github.event.issue.user.login }}
|
|
||||||
number: ${{ github.event.issue.number }}
|
|
||||||
GH_TOKEN: ${{ github.token }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v6
|
|
||||||
- name: Check duplicates
|
|
||||||
run: |
|
|
||||||
title=$(printf %q "${{ env.title }}")
|
|
||||||
issues=$(gh issue list --search '${{ title }}' --json number,title,url)
|
|
||||||
number=${{ env.number }}
|
|
||||||
issues_filtered=$(echo "$issues" | jq --arg num "$number" 'map(select(.number != ($num | tonumber)))')
|
|
||||||
if [ "$(echo "$issues_filtered" | jq length)" -eq 0 ]; then
|
|
||||||
echo "No duplicates found."
|
|
||||||
else
|
|
||||||
issues_markdown=$(echo "$issues_filtered" | jq -r '.[] | "- [" + .title + "](" + .url + ")"')
|
|
||||||
formatted_body=$(echo -e "@${{ env.author }}\nPossible duplication of:\n$issues_markdown")
|
|
||||||
gh issue comment ${{ github.event.issue.number }} --body "$formatted_body"
|
|
||||||
fi
|
|
||||||
165
.github/workflows/integrate.yaml
vendored
165
.github/workflows/integrate.yaml
vendored
|
|
@ -9,53 +9,80 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
|
- uses: webiny/action-conventional-commits@v1.3.1
|
||||||
- run: ./scripts/generate-locale-config.sh
|
- run: ./scripts/generate-locale-config.sh
|
||||||
- run: git diff --exit-code
|
- run: git diff --exit-code
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version-file: .tool_versions.yaml
|
||||||
cache: true
|
cache: true
|
||||||
|
- name: Check for unused translations
|
||||||
|
run: flutter pub run translations_cleaner list-unused-terms -a
|
||||||
- run: flutter pub get
|
- run: flutter pub get
|
||||||
- run: flutter gen-l10n
|
- name: Check if pubspec.lock is up to date
|
||||||
|
run: git diff --exit-code pubspec.lock
|
||||||
- name: Check formatting
|
- name: Check formatting
|
||||||
run: dart format lib/ test/ --set-exit-if-changed
|
run: dart format lib/ test/ --set-exit-if-changed
|
||||||
- name: Check import formatting
|
|
||||||
run: dart run import_sorter:main --no-comments --exit-if-changed
|
|
||||||
- name: Check license compliance
|
- name: Check license compliance
|
||||||
run: dart run license_checker check-licenses -c licenses.yaml --problematic
|
run: dart run license_checker check-licenses -c licenses.yaml --problematic
|
||||||
- run: flutter analyze
|
- run: flutter analyze
|
||||||
|
- name: Search unused dependencies
|
||||||
|
run: |
|
||||||
|
dart pub global activate dependency_validator
|
||||||
|
dart pub global run dependency_validator
|
||||||
|
- run: dart run dart_code_linter:metrics analyze lib --reporter=github
|
||||||
|
- run: dart run dart_code_linter:metrics check-unused-code lib
|
||||||
|
- run: dart run dart_code_linter:metrics check-unused-files lib
|
||||||
|
- run: dart run dart_code_linter:metrics check-unused-l10n lib
|
||||||
|
- name: Check for commented-out Dart code with semicolons
|
||||||
|
run: |
|
||||||
|
if grep -R --include="*.dart" -nE '^[[:space:]]*//[^/<].*;[[:space:]]*$' lib/; then
|
||||||
|
echo ""
|
||||||
|
echo "❌ Found commented-out Dart code ending with semicolon."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
- name: Add Firebase Messaging
|
- name: Add Firebase Messaging
|
||||||
run: ./scripts/add-firebase-messaging.sh
|
run: ./scripts/add-firebase-messaging.sh
|
||||||
- run: flutter analyze
|
- run: flutter analyze
|
||||||
- run: flutter test
|
- run: flutter test
|
||||||
|
|
||||||
build_debug_apk:
|
build_debug_apk:
|
||||||
|
needs: [ code_tests ]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
- uses: ./.github/actions/free_up_space
|
||||||
- uses: actions/setup-java@v5
|
|
||||||
with:
|
|
||||||
java-version: ${{ env.JAVA_VERSION }}
|
|
||||||
distribution: "zulu"
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version-file: .tool_versions.yaml
|
||||||
cache: true
|
cache: true
|
||||||
- uses: ./.github/actions/free_up_space
|
|
||||||
- uses: moonrepo/setup-rust@v1
|
- uses: moonrepo/setup-rust@v1
|
||||||
- run: flutter pub get
|
with:
|
||||||
- run: flutter build apk --debug --target-platform android-arm64
|
cache: true
|
||||||
|
- name: Cache Gradle
|
||||||
|
uses: actions/cache@v5
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.gradle/caches
|
||||||
|
~/.gradle/wrapper
|
||||||
|
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
||||||
|
restore-keys: gradle-${{ runner.os }}-
|
||||||
|
- run: ./scripts/add-firebase-messaging.sh
|
||||||
|
- run: flutter build apk --debug --target-platform android-x64
|
||||||
|
- name: Upload Debug APK
|
||||||
|
uses: actions/upload-artifact@v7
|
||||||
|
with:
|
||||||
|
name: debug-apk-x64
|
||||||
|
path: build/app/outputs/flutter-apk/app-debug.apk
|
||||||
|
|
||||||
build_debug_web:
|
build_debug_web:
|
||||||
|
needs: [ code_tests ]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version-file: .tool_versions.yaml
|
||||||
cache: true
|
cache: true
|
||||||
- uses: moonrepo/setup-rust@v1
|
- uses: moonrepo/setup-rust@v1
|
||||||
- run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
- run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
||||||
|
|
@ -63,17 +90,23 @@ jobs:
|
||||||
- name: Prepare web
|
- name: Prepare web
|
||||||
run: ./scripts/prepare-web.sh
|
run: ./scripts/prepare-web.sh
|
||||||
- run: flutter build web
|
- run: flutter build web
|
||||||
|
- name: Upload Web Build
|
||||||
|
uses: actions/upload-artifact@v7
|
||||||
|
with:
|
||||||
|
name: Web Build
|
||||||
|
path: build/web
|
||||||
|
|
||||||
build_debug_linux:
|
build_debug_linux:
|
||||||
|
needs: [ code_tests ]
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: [ x64, arm64 ]
|
arch: [ x64, arm64 ]
|
||||||
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest'}}
|
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest'}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get update && sudo apt-get install git wget curl clang cmake ninja-build pkg-config libgtk-3-dev libblkid-dev liblzma-dev libjsoncpp-dev cmake-data libsecret-1-dev libsecret-1-0 librhash0 libssl-dev libwebkit2gtk-4.1-dev -y
|
run: sudo apt-get update && sudo apt-get install git wget curl clang cmake ninja-build pkg-config libgtk-3-dev libblkid-dev liblzma-dev libjsoncpp-dev cmake-data libsecret-1-dev libsecret-1-0 librhash0 libssl-dev libwebkit2gtk-4.1-dev -y
|
||||||
|
- run: echo "FLUTTER_VERSION=$(yq '.environment.flutter' < .tool_versions.yaml)" >> $GITHUB_ENV
|
||||||
- name: Install Flutter
|
- name: Install Flutter
|
||||||
run: |
|
run: |
|
||||||
git clone --branch ${{ env.FLUTTER_VERSION }} https://github.com/flutter/flutter.git
|
git clone --branch ${{ env.FLUTTER_VERSION }} https://github.com/flutter/flutter.git
|
||||||
|
|
@ -83,21 +116,107 @@ jobs:
|
||||||
- run: ./flutter/bin/flutter build linux --target-platform linux-${{ matrix.arch }}
|
- run: ./flutter/bin/flutter build linux --target-platform linux-${{ matrix.arch }}
|
||||||
|
|
||||||
build_debug_ios:
|
build_debug_ios:
|
||||||
|
needs: [ code_tests ]
|
||||||
runs-on: macos-15
|
runs-on: macos-15
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version-file: .tool_versions.yaml
|
||||||
cache: true
|
cache: true
|
||||||
- name: Use Xcode 16.4
|
- name: Use Xcode 16.4
|
||||||
run: sudo xcode-select --switch /Applications/Xcode_16.4.app
|
run: sudo xcode-select --switch /Applications/Xcode_16.4.app
|
||||||
- run: brew install sqlcipher
|
- run: brew install sqlcipher
|
||||||
- uses: moonrepo/setup-rust@v1
|
- uses: moonrepo/setup-rust@v1
|
||||||
- name: Add Firebase Messaging
|
- run: ./scripts/add-firebase-messaging.sh
|
||||||
run: |
|
|
||||||
flutter pub add fcm_shared_isolate:0.1.0
|
|
||||||
sed -i '' 's,//<GOOGLE_SERVICES>,,g' lib/utils/background_push.dart
|
|
||||||
- run: flutter pub get
|
- run: flutter pub get
|
||||||
- run: flutter build ios --no-codesign
|
- run: flutter build ios --no-codesign
|
||||||
|
|
||||||
|
integration_test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 60
|
||||||
|
needs: [ code_tests ]
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
api-level: [34]
|
||||||
|
env:
|
||||||
|
ANDROID_USER_HOME: /home/runner/.android
|
||||||
|
ANDROID_EMULATOR_HOME: /home/runner/.android
|
||||||
|
ANDROID_AVD_HOME: /home/runner/.android/avd
|
||||||
|
AVD_CONFIG_PATH: "~/.android/avd/test.avd/config.ini"
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
- uses: ./.github/actions/free_up_space
|
||||||
|
# https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/
|
||||||
|
- name: Enable KVM group perms
|
||||||
|
run: |
|
||||||
|
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
|
||||||
|
sudo udevadm control --reload-rules
|
||||||
|
sudo udevadm trigger --name-match=kvm
|
||||||
|
- name: AVD cache
|
||||||
|
uses: actions/cache@v5
|
||||||
|
id: avd-cache
|
||||||
|
with:
|
||||||
|
path: ~/.android/*
|
||||||
|
key: avd-${{ matrix.api-level }}-integration_docker
|
||||||
|
- name: create AVD and generate snapshot for caching
|
||||||
|
if: steps.avd-cache.outputs.cache-hit != 'true'
|
||||||
|
uses: reactivecircus/android-emulator-runner@d94c3fbe4fe6a29e4a5ba47c12fb47677c73656b
|
||||||
|
with:
|
||||||
|
api-level: ${{ matrix.api-level }}
|
||||||
|
target: google_apis
|
||||||
|
arch: x86_64
|
||||||
|
cores: 16
|
||||||
|
ndk: 28.2.13676358
|
||||||
|
force-avd-creation: false
|
||||||
|
disk-size: 4096M
|
||||||
|
ram-size: 4096M
|
||||||
|
sdcard-path-or-size: 4096M
|
||||||
|
emulator-options: -no-window -wipe-data -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
|
||||||
|
script: |
|
||||||
|
cat ${{ env.AVD_CONFIG_PATH }}
|
||||||
|
|
||||||
|
sed -i.bak 's/hw.lcd.density = .*/hw.lcd.density=420/' ${{ env.AVD_CONFIG_PATH }}
|
||||||
|
sed -i.bak 's/hw.lcd.height = .*/hw.lcd.height=1920/' ${{ env.AVD_CONFIG_PATH }}
|
||||||
|
sed -i.bak 's/hw.lcd.width = .*/hw.lcd.width=1080/' ${{ env.AVD_CONFIG_PATH }}
|
||||||
|
|
||||||
|
if ! grep -q "hw.lcd.density" ${{ env.AVD_CONFIG_PATH }} && echo "hw.lcd.density = 420" >> ${{ env.AVD_CONFIG_PATH }}; then :; fi
|
||||||
|
if ! grep -q "hw.lcd.height" ${{ env.AVD_CONFIG_PATH }} && echo "hw.lcd.height = 1920" >> ${{ env.AVD_CONFIG_PATH }}; then :; fi
|
||||||
|
if ! grep -q "hw.lcd.width" ${{ env.AVD_CONFIG_PATH }} && echo "hw.lcd.width = 1080" >> ${{ env.AVD_CONFIG_PATH }}; then :; fi
|
||||||
|
|
||||||
|
echo "Emulator settings (${{ env.AVD_CONFIG_PATH }})"
|
||||||
|
cat ${{ env.AVD_CONFIG_PATH }}
|
||||||
|
echo "Generated AVD snapshot for caching."
|
||||||
|
- uses: subosito/flutter-action@v2
|
||||||
|
with:
|
||||||
|
flutter-version-file: .tool_versions.yaml
|
||||||
|
cache: true
|
||||||
|
- uses: moonrepo/setup-rust@v1
|
||||||
|
with:
|
||||||
|
cache: true
|
||||||
|
- name: Cache Gradle
|
||||||
|
uses: actions/cache@v5
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.gradle/caches
|
||||||
|
~/.gradle/wrapper
|
||||||
|
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
||||||
|
restore-keys: gradle-${{ runner.os }}-
|
||||||
|
- run: ./scripts/add-firebase-messaging.sh
|
||||||
|
- name: Prepare Homeserver
|
||||||
|
run: ./scripts/prepare_integration_test.sh
|
||||||
|
- name: Integration tests
|
||||||
|
id: integration_tests
|
||||||
|
uses: reactivecircus/android-emulator-runner@v2
|
||||||
|
with:
|
||||||
|
api-level: ${{ matrix.api-level }}
|
||||||
|
target: google_apis
|
||||||
|
arch: x86_64
|
||||||
|
cores: 16
|
||||||
|
ndk: 28.2.13676358
|
||||||
|
force-avd-creation: false
|
||||||
|
disk-size: 4096M
|
||||||
|
ram-size: 4096M
|
||||||
|
sdcard-path-or-size: 4096M
|
||||||
|
emulator-options: -no-snapshot-save -no-window -wipe-data -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
|
||||||
|
script: flutter test integration_test/mobile_test.dart
|
||||||
10
.github/workflows/main_deploy.yaml
vendored
10
.github/workflows/main_deploy.yaml
vendored
|
|
@ -15,10 +15,9 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version-file: .tool_versions.yaml
|
||||||
- uses: moonrepo/setup-rust@v1
|
- uses: moonrepo/setup-rust@v1
|
||||||
- run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
- run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
||||||
- name: Prepare web
|
- name: Prepare web
|
||||||
|
|
@ -40,14 +39,9 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- uses: actions/setup-java@v5
|
|
||||||
with:
|
|
||||||
java-version: ${{ env.JAVA_VERSION }}
|
|
||||||
distribution: 'zulu'
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version-file: .tool_versions.yaml
|
||||||
cache: true
|
cache: true
|
||||||
- name: Set up Ruby
|
- name: Set up Ruby
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
|
|
|
||||||
60
.github/workflows/matrix_notify.yaml
vendored
Normal file
60
.github/workflows/matrix_notify.yaml
vendored
Normal file
|
|
@ -0,0 +1,60 @@
|
||||||
|
name: Matrix Notification
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened]
|
||||||
|
pull_request_target:
|
||||||
|
types: [opened]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
notify:
|
||||||
|
if: ${{ (github.event_name == 'issues' && github.event.issue.user.login != 'krille-chan') || (github.event_name == 'pull_request_target' && github.event.pull_request.user.login != 'krille-chan') }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Send notification to Matrix room
|
||||||
|
env:
|
||||||
|
HOMESERVER: ${{ secrets.MATRIX_HOMESERVER }}
|
||||||
|
ACCESS_TOKEN: ${{ secrets.MATRIX_ACCESS_TOKEN }}
|
||||||
|
ROOM_ID: ${{ secrets.MATRIX_ROOM_ID }}
|
||||||
|
EVENT_NAME: ${{ github.event_name }}
|
||||||
|
ISSUE_TITLE: ${{ github.event.issue.title }}
|
||||||
|
ISSUE_URL: ${{ github.event.issue.html_url }}
|
||||||
|
ISSUE_LABELS: ${{ join(github.event.issue.labels.*.name, ', ') }}
|
||||||
|
ISSUE_AUTHOR: ${{ github.event.issue.user.login }}
|
||||||
|
PR_TITLE: ${{ github.event.pull_request.title }}
|
||||||
|
PR_URL: ${{ github.event.pull_request.html_url }}
|
||||||
|
PR_LABELS: ${{ join(github.event.pull_request.labels.*.name, ', ') }}
|
||||||
|
PR_AUTHOR: ${{ github.event.pull_request.user.login }}
|
||||||
|
run: |
|
||||||
|
if [ "${EVENT_NAME}" = "issues" ]; then
|
||||||
|
EMOJI="📝"
|
||||||
|
PREFIX="New Issue"
|
||||||
|
TITLE="${ISSUE_TITLE}"
|
||||||
|
URL="${ISSUE_URL}"
|
||||||
|
LABELS="${ISSUE_LABELS}"
|
||||||
|
AUTHOR="${ISSUE_AUTHOR}"
|
||||||
|
else
|
||||||
|
EMOJI="🔀"
|
||||||
|
PREFIX="New Pull Request"
|
||||||
|
TITLE="${PR_TITLE}"
|
||||||
|
URL="${PR_URL}"
|
||||||
|
LABELS="${PR_LABELS}"
|
||||||
|
AUTHOR="${PR_AUTHOR}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
AUTHOR_URL="https://github.com/${AUTHOR}"
|
||||||
|
PLAIN="${EMOJI} ${PREFIX} by ${AUTHOR}: ${TITLE} - ${URL}"
|
||||||
|
HTML="<h3>${EMOJI} ${PREFIX}</h3>"
|
||||||
|
HTML="${HTML}<b><a href='${URL}'>${TITLE}</a></b><br/>"
|
||||||
|
HTML="${HTML}👤 <a href='${AUTHOR_URL}'>${AUTHOR}</a>"
|
||||||
|
if [ -n "${LABELS}" ]; then
|
||||||
|
HTML="${HTML}<br/>🏷️ ${LABELS}"
|
||||||
|
fi
|
||||||
|
TXN_ID=$(date +%s%N)
|
||||||
|
|
||||||
|
curl -s -o /dev/null -w "%{http_code}" -X PUT \
|
||||||
|
"${HOMESERVER}/_matrix/client/v3/rooms/${ROOM_ID}/send/m.room.message/${TXN_ID}" \
|
||||||
|
-H "Authorization: Bearer ${ACCESS_TOKEN}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "$(jq -n --arg body "$PLAIN" --arg html "$HTML" \
|
||||||
|
'{"msgtype":"m.notice","body":$body,"format":"org.matrix.custom.html","formatted_body":$html}')"
|
||||||
53
.github/workflows/release.yaml
vendored
53
.github/workflows/release.yaml
vendored
|
|
@ -18,13 +18,10 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version-file: .tool_versions.yaml
|
||||||
cache: true
|
cache: true
|
||||||
- name: Install dependencies
|
|
||||||
run: sudo apt-get update && sudo apt-get install nodejs -y
|
|
||||||
- uses: moonrepo/setup-rust@v1
|
- uses: moonrepo/setup-rust@v1
|
||||||
- run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
- run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
||||||
- run: flutter pub get
|
- run: flutter pub get
|
||||||
|
|
@ -36,7 +33,7 @@ jobs:
|
||||||
- name: Create archive
|
- name: Create archive
|
||||||
run: tar -czf fluffychat-web.tar.gz build/web/
|
run: tar -czf fluffychat-web.tar.gz build/web/
|
||||||
- name: Upload Web Build
|
- name: Upload Web Build
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: Web Build
|
name: Web Build
|
||||||
path: fluffychat-web.tar.gz
|
path: fluffychat-web.tar.gz
|
||||||
|
|
@ -49,17 +46,25 @@ jobs:
|
||||||
asset_path: fluffychat-web.tar.gz
|
asset_path: fluffychat-web.tar.gz
|
||||||
asset_name: fluffychat-web.tar.gz
|
asset_name: fluffychat-web.tar.gz
|
||||||
asset_content_type: application/gzip
|
asset_content_type: application/gzip
|
||||||
- name: Install and build tailwindcss
|
- name: Clone fluffychat website
|
||||||
working-directory: docs
|
run: |
|
||||||
|
git clone https://github.com/krille-chan/fluffychat-website.git
|
||||||
|
cat CHANGELOG.md >> fluffychat-website/src/changelog.md
|
||||||
|
cat PRIVACY.md >> fluffychat-website/src/privacy.md
|
||||||
|
- name: Build website
|
||||||
|
working-directory: fluffychat-website
|
||||||
run: |
|
run: |
|
||||||
npm install tailwindcss @tailwindcss/cli
|
npm install tailwindcss @tailwindcss/cli
|
||||||
npx tailwindcss -o ./tailwind.css
|
npx tailwindcss -i ./src/styles.css -o ./src/assets/tailwind.css --minify
|
||||||
- name: Build Website
|
npx @11ty/eleventy
|
||||||
|
mv public ../
|
||||||
|
- name: Copy FluffyChat web into it
|
||||||
run: |
|
run: |
|
||||||
mv docs public
|
mkdir public/web
|
||||||
mv repo public || true
|
mkdir public/nightly
|
||||||
mv build/web/ public/web
|
cp -r build/web/* public/web/
|
||||||
cp public/web -r public/nightly
|
cp -r build/web/* public/nightly/
|
||||||
|
echo "fluffychat.im" >> public/CNAME
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
if: startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(github.ref, 'refs/tags/v')
|
||||||
uses: peaceiris/actions-gh-pages@v4
|
uses: peaceiris/actions-gh-pages@v4
|
||||||
|
|
@ -73,14 +78,9 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- uses: actions/setup-java@v5
|
|
||||||
with:
|
|
||||||
java-version: ${{ env.JAVA_VERSION }}
|
|
||||||
distribution: 'zulu'
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version-file: .tool_versions.yaml
|
||||||
cache: true
|
cache: true
|
||||||
- name: Add Firebase Messaging
|
- name: Add Firebase Messaging
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -113,9 +113,9 @@ jobs:
|
||||||
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest'}}
|
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest'}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get update && sudo apt-get install curl clang cmake ninja-build pkg-config libgtk-3-dev libblkid-dev liblzma-dev libjsoncpp-dev cmake-data libsecret-1-dev libsecret-1-0 librhash0 libssl-dev libwebkit2gtk-4.1-dev -y
|
run: sudo apt-get update && sudo apt-get install curl clang cmake ninja-build pkg-config libgtk-3-dev libblkid-dev liblzma-dev libjsoncpp-dev cmake-data libsecret-1-dev libsecret-1-0 librhash0 libssl-dev libwebkit2gtk-4.1-dev -y
|
||||||
|
- run: echo "FLUTTER_VERSION=$(yq '.environment.flutter' < .tool_versions.yaml)" >> $GITHUB_ENV
|
||||||
- name: Install Flutter
|
- name: Install Flutter
|
||||||
run: |
|
run: |
|
||||||
git clone --branch ${{ env.FLUTTER_VERSION }} https://github.com/flutter/flutter.git
|
git clone --branch ${{ env.FLUTTER_VERSION }} https://github.com/flutter/flutter.git
|
||||||
|
|
@ -139,14 +139,9 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
|
||||||
- uses: actions/setup-java@v5
|
|
||||||
with:
|
|
||||||
java-version: ${{ env.JAVA_VERSION }}
|
|
||||||
distribution: 'zulu'
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version-file: .tool_versions.yaml
|
||||||
cache: true
|
cache: true
|
||||||
- name: Set up Ruby
|
- name: Set up Ruby
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
|
|
@ -197,18 +192,18 @@ jobs:
|
||||||
- name: Check out Git repository
|
- name: Check out Git repository
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
- name: Log in to the Container registry
|
- name: Log in to the Container registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v4
|
||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Extract metadata (tags, labels) for Docker
|
- name: Extract metadata (tags, labels) for Docker
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v6
|
||||||
with:
|
with:
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
- name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v7
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
|
|
|
||||||
21
.github/workflows/stale.yaml
vendored
Normal file
21
.github/workflows/stale.yaml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
name: 'Close stale issues and PRs'
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '30 1 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
stale:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/stale@v10
|
||||||
|
with:
|
||||||
|
stale-issue-message: 'This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
|
||||||
|
stale-pr-message: 'This PR is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
|
||||||
|
close-issue-message: 'This issue was closed because it has been stalled for 30 days with no activity.'
|
||||||
|
close-pr-message: 'This PR was closed because it has been stalled for 30 days with no activity.'
|
||||||
|
days-before-issue-stale: 365
|
||||||
|
days-before-pr-stale: 365
|
||||||
|
days-before-issue-close: 30
|
||||||
|
days-before-pr-close: 30
|
||||||
|
exempt-all-assignees: true
|
||||||
|
operations-per-run: 1000
|
||||||
2
.github/workflows/versions.env
vendored
2
.github/workflows/versions.env
vendored
|
|
@ -1,2 +0,0 @@
|
||||||
FLUTTER_VERSION=3.38.8
|
|
||||||
JAVA_VERSION=17
|
|
||||||
2
.tool_versions.yaml
Normal file
2
.tool_versions.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
environment:
|
||||||
|
flutter: 3.41.5 # Keep in sync with snap/snapcraft.yaml
|
||||||
7
.vscode/settings.json
vendored
Normal file
7
.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"[dart]": {
|
||||||
|
"editor.codeActionsOnSave": [
|
||||||
|
"source.organizeImports"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
162
CHANGELOG.md
162
CHANGELOG.md
|
|
@ -1,3 +1,165 @@
|
||||||
|
## v2.5.1
|
||||||
|
Update to latest version of fcm_shared_isolate to fix push on iOS.
|
||||||
|
|
||||||
|
## v2.5.0
|
||||||
|
FluffyChat 2.5.0 introduces a new homeserver picker for onboarding, better image compression performance and several smaller new features, design adjustments and bug fixes.
|
||||||
|
|
||||||
|
- feat: Add mute notification action (Christian Kußowski)
|
||||||
|
- feat: Add presetHomeserver config to enforce a homeserver for web (Christian Kußowski)
|
||||||
|
- feat: Display particle animation on login page (Christian Kußowski)
|
||||||
|
- feat: Display read receipts for every event (Christian Kußowski)
|
||||||
|
- feat: Enable audio recording on web (Christian Kußowski)
|
||||||
|
- feat: Implement low priority for rooms (Christian Kußowski)
|
||||||
|
- feat: Implement matrix native oidc (Christian Kußowski)
|
||||||
|
- feat: Implement new sign in flow (Christian Kußowski)
|
||||||
|
- feat: OIDC Login on same page (Christian Kußowski)
|
||||||
|
- feat: Reenable native imaging for all platforms (Christian Kußowski)
|
||||||
|
- feat: Remember last successful logged in homeserver (Christian Kußowski)
|
||||||
|
- Add lld to install custom dependency for Linux in README (Stephen)
|
||||||
|
- build: Add llvm-18 to packages for snap (krille-chan)
|
||||||
|
- build: Add maestro based integration tests (Christian Kußowski)
|
||||||
|
- chore(translations): Added translation using Weblate (Albanian) (Besnik Bleta)
|
||||||
|
- chore(translations): Added translation using Weblate (Kabyle) (Amadɣas)
|
||||||
|
- chore(translations): Translated using Weblate (Basque) (xabirequejo)
|
||||||
|
- chore(translations): Translated using Weblate (Catalan) (fadelkon)
|
||||||
|
- chore(translations): Translated using Weblate (Chinese (Simplified Han script)) (大王叫我来巡山)
|
||||||
|
- chore(translations): Translated using Weblate (Croatian) (Milo Ivir)
|
||||||
|
- chore(translations): Translated using Weblate (Czech) (Matyáš Caras)
|
||||||
|
- chore(translations): Translated using Weblate (Danish) (Øjvind Fritjof Arnfred)
|
||||||
|
- chore(translations): Translated using Weblate (Dutch) (Jelv)
|
||||||
|
- chore(translations): Translated using Weblate (English) (Christian)
|
||||||
|
- chore(translations): Translated using Weblate (English) (SpikyBee)
|
||||||
|
- chore(translations): Translated using Weblate (Estonian) (Priit Jõerüüt)
|
||||||
|
- chore(translations): Translated using Weblate (Galician) (josé m.)
|
||||||
|
- chore(translations): Translated using Weblate (Georgian) (Dimitri Tabatadze)
|
||||||
|
- chore(translations): Translated using Weblate (Georgian) (Temuri Doghonadze)
|
||||||
|
- chore(translations): Translated using Weblate (German) (Christian)
|
||||||
|
- chore(translations): Translated using Weblate (German) (Ettore Atalan)
|
||||||
|
- chore(translations): Translated using Weblate (German) (nautilusx)
|
||||||
|
- chore(translations): Translated using Weblate (Hindi) (Vishal Singh)
|
||||||
|
- chore(translations): Translated using Weblate (Indonesian) (Arif Budiman)
|
||||||
|
- chore(translations): Translated using Weblate (Irish) (Aindriú Mac Giolla Eoin)
|
||||||
|
- chore(translations): Translated using Weblate (Japanese) (NPL)
|
||||||
|
- chore(translations): Translated using Weblate (Japanese) (Sayaka Halton)
|
||||||
|
- chore(translations): Translated using Weblate (Kabyle) (Amadɣas)
|
||||||
|
- chore(translations): Translated using Weblate (Kabyle) (ButterflyOfFire)
|
||||||
|
- chore(translations): Translated using Weblate (Kabyle) (Christian)
|
||||||
|
- chore(translations): Translated using Weblate (Latvian) (Edgars Andersons)
|
||||||
|
- chore(translations): Translated using Weblate (Norwegian Bokmål) (Frank Paul Silye)
|
||||||
|
- chore(translations): Translated using Weblate (Norwegian Bokmål) (sunniva)
|
||||||
|
- chore(translations): Translated using Weblate (Persian) (saok91)
|
||||||
|
- chore(translations): Translated using Weblate (Polish) (gredzikk)
|
||||||
|
- chore(translations): Translated using Weblate (Portuguese (Brazil)) (Logaritmica)
|
||||||
|
- chore(translations): Translated using Weblate (Russian) (-)
|
||||||
|
- chore(translations): Translated using Weblate (Russian) (Artem Pereverzev)
|
||||||
|
- chore(translations): Translated using Weblate (Russian) (mikinol)
|
||||||
|
- chore(translations): Translated using Weblate (Spanish) (Kimby)
|
||||||
|
- chore(translations): Translated using Weblate (Spanish) (SpikyBee)
|
||||||
|
- chore(translations): Translated using Weblate (Swedish) (Malva Jakobsson)
|
||||||
|
- chore(translations): Translated using Weblate (Swedish) (spinningpaprika)
|
||||||
|
- chore(translations): Translated using Weblate (Tamil) (தமிழ்நேரம்)
|
||||||
|
- chore(translations): Translated using Weblate (Ukrainian) (Andriy Kushnir)
|
||||||
|
- chore(translations): Translated using Weblate (Ukrainian) (Ihor Hordiichuk)
|
||||||
|
- chore(translations): Translated using Weblate (Uzbek) (BeMeritus)
|
||||||
|
- chore: Add config search textfield (Christian Kußowski)
|
||||||
|
- chore: Add matrix notify workflow (Christian Kußowski)
|
||||||
|
- chore: Add recommended homeservers (Christian Kußowski)
|
||||||
|
- chore: Add reset button for config viewer (Christian Kußowski)
|
||||||
|
- chore: Add support button everywhere (Christian Kußowski)
|
||||||
|
- chore: Added deeplinks to test protocol (Christian Kußowski)
|
||||||
|
- chore: Adjust avatar size and chat list item design (krille-chan)
|
||||||
|
- chore: Adjust chat input row design (Christian Kußowski)
|
||||||
|
- chore: Adjust design (Christian Kußowski)
|
||||||
|
- chore: Adjust design of navrail (Christian Kußowski)
|
||||||
|
- chore: Adjust design of space avatars and more (Christian Kußowski)
|
||||||
|
- chore: Adjust design of user viewer and popup buttons (Christian Kußowski)
|
||||||
|
- chore: Adjust join space child UX (Christian Kußowski)
|
||||||
|
- chore: Adjust paddings (krille-chan)
|
||||||
|
- chore: Adjust power level UX (Christian Kußowski)
|
||||||
|
- chore: Adjust search field design (Christian Kußowski)
|
||||||
|
- chore: Adjust status header design (Christian Kußowski)
|
||||||
|
- chore: Adjust styles and animations (Christian Kußowski)
|
||||||
|
- chore: Adjust support button design (Christian Kußowski)
|
||||||
|
- chore: Always show filter for messages (Christian Kußowski)
|
||||||
|
- chore: Avoid unnecessary lambdas (Christian Kußowski)
|
||||||
|
- chore: Better context menu for space children (Christian Kußowski)
|
||||||
|
- chore: bump ios version (ShootingStarDragons)
|
||||||
|
- chore: Check conventional commits in CI (krille-chan)
|
||||||
|
- chore: Check if pubspec.lock is up to date in CI (Christian Kußowski)
|
||||||
|
- chore: Check of unused localizations (Christian Kußowski)
|
||||||
|
- chore: Clean up pages build (Christian Kußowski)
|
||||||
|
- chore: Display spaces filter chip when spaces present even without children (Christian Kußowski)
|
||||||
|
- chore: Execute dart code linter in CI (Christian Kußowski)
|
||||||
|
- chore: Exempt assignees from stale (Christian Kußowski)
|
||||||
|
- chore: Fix oidc login on web (Christian Kußowski)
|
||||||
|
- chore: Give issues and PRs more time for stale (Christian Kußowski)
|
||||||
|
- chore: Hide homepage button if not preset (Christian Kußowski)
|
||||||
|
- chore: Hide status list by default (Christian Kußowski)
|
||||||
|
- chore: Implement pick SSO provider from dialog and add tchncs.de (Christian Kußowski)
|
||||||
|
- chore: Introduce tool versions file (Christian Kußowski)
|
||||||
|
- chore: Login with localhost (Christian Kußowski)
|
||||||
|
- chore: Make banner light red (Christian Kußowski)
|
||||||
|
- chore: Make key fingerprints in chat encryption page selectable (Christian Kußowski)
|
||||||
|
- chore: make sendTimelineEventTimeout configurable (Christian Kußowski)
|
||||||
|
- chore: Make unread bubble full round (Christian Kußowski)
|
||||||
|
- chore: Move file cache to subdirectory (Christian Kußowski)
|
||||||
|
- chore: Move show image viewer one step up (Christian Kußowski)
|
||||||
|
- chore: Move website back to fluffychat.im (Christian Kußowski)
|
||||||
|
- chore: Only show confirm dialog once (Christian Kußowski)
|
||||||
|
- chore: Put oidc behind a feature flag until fixed (Christian Kußowski)
|
||||||
|
- chore: Remove converser from recommended homeservers as it doesn't have open registration (Christian Kußowski)
|
||||||
|
- chore: Remove frei.chat from homeserver list (Christian Kußowski)
|
||||||
|
- chore: Remove web notification custom sound (Christian Kußowski)
|
||||||
|
- chore: Replace duplicate check for stale bot (Christian Kußowski)
|
||||||
|
- chore: Retry sign in tap in tests (Christian Kußowski)
|
||||||
|
- chore: Run matrix notification in pull request target (Christian Kußowski)
|
||||||
|
- chore: Sanitize hash param for oidc (Christian Kußowski)
|
||||||
|
- chore: Set erase flag true on account deactivation (krille-chan)
|
||||||
|
- chore: Set operations per run to 1000 (krille-chan)
|
||||||
|
- chore: Skip matrix notify for events from myself (Christian Kußowski)
|
||||||
|
- chore: Update locale config (Christian Kußowski)
|
||||||
|
- chore: Update matrix ID localization (Christian Kußowski)
|
||||||
|
- chore: Update recommended homeservers (Christian Kußowski)
|
||||||
|
- chore: Update redirect android scheme (Christian Kußowski)
|
||||||
|
- chore: Use fixed version of fcm shared isolate (Christian Kußowski)
|
||||||
|
- fix: Add app id to TileLayer user agent (Vespe-r)
|
||||||
|
- fix: Add missing @@locale (Krille-chan)
|
||||||
|
- fix: Audioplayer on web buggy (Christian Kußowski)
|
||||||
|
- fix: build failed on archlinux (ShootingStarDragons)
|
||||||
|
- fix: Do not cancel notification on reply (Christian Kußowski)
|
||||||
|
- fix: Do not display formatted body if body is just filename (Christian Kußowski)
|
||||||
|
- fix: Do not route to backup on soft logout (Christian Kußowski)
|
||||||
|
- fix: Edit space child button opens space details page and not space child details page (Christian Kußowski)
|
||||||
|
- fix: Fix formatting of messages with newlines (Philip Fritzsche)
|
||||||
|
- fix: get correct aspect ratio from VideoPlayerController (Matias)
|
||||||
|
- fix: Join room by alias even if not found (Christian Kußowski)
|
||||||
|
- fix: Open deep links (Christian Kußowski)
|
||||||
|
- fix: Receipt row not auto updating (Christian Kußowski)
|
||||||
|
- fix: Receipts disappear after reaction (Christian Kußowski)
|
||||||
|
- fix: Reply voice message displays a broken html body (Christian Kußowski)
|
||||||
|
- fix: Send reply to voice messages (Christian Kußowski)
|
||||||
|
- fix: Set mimetype for video player on web (Christian Kußowski)
|
||||||
|
- fix: Use correct own person for android notification replies (Christian Kußowski)
|
||||||
|
- fix: Wrong placeholder in kab (Christian Kußowski)
|
||||||
|
- refactor: Add Flutter lints (Christian Kußowski)
|
||||||
|
- refactor: Add more linter rules (Christian Kußowski)
|
||||||
|
- refactor: Add more stricter lints (Christian Kußowski)
|
||||||
|
- refactor: Avoid redundant async (Christian Kußowski)
|
||||||
|
- refactor: Avoid unnecessary bool comparison (Christian Kußowski)
|
||||||
|
- refactor: Better UX for create space children (Christian Kußowski)
|
||||||
|
- refactor: Disable custom image resizer for macOS and windows (Christian Kußowski)
|
||||||
|
- refactor: Do show message bubble even for big emotes (Christian Kußowski)
|
||||||
|
- refactor: Enable avoid-returning-widgets lint (Christian Kußowski)
|
||||||
|
- refactor: Enable more strict lints (Christian Kußowski)
|
||||||
|
- refactor: Enable rule avoid dynamic (Christian Kußowski)
|
||||||
|
- refactor: Make file events more fail safe for failed to send (Christian Kußowski)
|
||||||
|
- refactor: Remove animation dependency (Christian Kußowski)
|
||||||
|
- refactor: Remove unused localizations (Christian Kußowski)
|
||||||
|
- refactor: Remove unused translations (Christian Kußowski)
|
||||||
|
- refactor: Use getCryptoIdentityState to check backup state (krille-chan)
|
||||||
|
- refactor: Use more robust and performant way to detect single emoji messages (Christian Kußowski)
|
||||||
|
- refactor: Use native uri data from bytes instead of html (Christian Kußowski)
|
||||||
|
|
||||||
## v2.4.0
|
## v2.4.0
|
||||||
FluffyChat 2.4.0 adds a new improved GUI for managing stickers with tutorials how to
|
FluffyChat 2.4.0 adds a new improved GUI for managing stickers with tutorials how to
|
||||||
easily add your own sticker packs.
|
easily add your own sticker packs.
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,8 @@ To improve the process please make sure that you read the following guidelines c
|
||||||
4. Every Pull Request should change only one thing. For bigger changes it is often better to split them up in multiple Pull Requests.
|
4. Every Pull Request should change only one thing. For bigger changes it is often better to split them up in multiple Pull Requests.
|
||||||
5. [Sign your commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits).
|
5. [Sign your commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits).
|
||||||
6. Format the commit message as [Conventional Commits](https://www.conventionalcommits.org).
|
6. Format the commit message as [Conventional Commits](https://www.conventionalcommits.org).
|
||||||
7. Format (`flutter format lib`) and sort impots (`dart run import_sorter:main --no-comments`) in all code files.
|
7. For bigger or complex changes (more than a couple of code lines) write an issue or refer to an existing issue and ask for approval from the maintainers (@krille-chan) **before** starting to implement it. This way you reduce the risk that your Pull Request get's declined.
|
||||||
8. For bigger or complex changes (more than a couple of code lines) write an issue or refer to an existing issue and ask for approval from the maintainers (@krille-chan) **before** starting to implement it. This way you reduce the risk that your Pull Request get's declined.
|
8. Prefer simple and easy to maintain solutions over complexity and fancy ones.
|
||||||
9. Prefer simple and easy to maintain solutions over complexity and fancy ones.
|
|
||||||
|
|
||||||
# Code Style
|
# Code Style
|
||||||
|
|
||||||
|
|
|
||||||
16
README.md
16
README.md
|
|
@ -96,7 +96,7 @@ flutter build web --release
|
||||||
#### Install custom dependencies (Linux)
|
#### Install custom dependencies (Linux)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo apt install libjsoncpp1 libsecret-1-dev libsecret-1-0 librhash0 libwebkit2gtk-4.0-dev
|
sudo apt install libjsoncpp1 libsecret-1-dev libsecret-1-0 librhash0 libwebkit2gtk-4.0-dev lld
|
||||||
```
|
```
|
||||||
|
|
||||||
* Build with one of these:
|
* Build with one of these:
|
||||||
|
|
@ -106,6 +106,20 @@ flutter build windows --release
|
||||||
flutter build macos --release
|
flutter build macos --release
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## How to run integration tests
|
||||||
|
|
||||||
|
You need to have docker installed locally! Run the preparation script before every test run:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
./scripts/prepare_integration_test.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Then run all tests with:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
flutter test integration_test/mobile_test.dart
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
# Special thanks
|
# Special thanks
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ include: package:flutter_lints/flutter.yaml
|
||||||
|
|
||||||
linter:
|
linter:
|
||||||
rules:
|
rules:
|
||||||
- camel_case_types
|
- directives_ordering
|
||||||
- avoid_print
|
- avoid_print
|
||||||
- constant_identifier_names
|
- constant_identifier_names
|
||||||
- prefer_final_locals
|
- prefer_final_locals
|
||||||
|
|
@ -10,10 +10,67 @@ linter:
|
||||||
- sort_pub_dependencies
|
- sort_pub_dependencies
|
||||||
- require_trailing_commas
|
- require_trailing_commas
|
||||||
- omit_local_variable_types
|
- omit_local_variable_types
|
||||||
|
- cancel_subscriptions
|
||||||
|
- always_declare_return_types
|
||||||
|
- avoid_void_async
|
||||||
|
- no_adjacent_strings_in_list
|
||||||
|
- test_types_in_equals
|
||||||
|
- throw_in_finally
|
||||||
|
- unnecessary_statements
|
||||||
|
- avoid_bool_literals_in_conditional_expressions
|
||||||
|
- prefer_single_quotes
|
||||||
|
- prefer_const_declarations
|
||||||
|
- unnecessary_lambdas
|
||||||
|
- combinators_ordering
|
||||||
|
- noop_primitive_operations
|
||||||
|
- unnecessary_null_checks
|
||||||
|
- unnecessary_null_in_if_null_operators
|
||||||
|
- unnecessary_to_list_in_spreads
|
||||||
|
- use_is_even_rather_than_modulo
|
||||||
|
- use_super_parameters
|
||||||
|
# Flutter specific:
|
||||||
|
- use_colored_box
|
||||||
|
|
||||||
analyzer:
|
analyzer:
|
||||||
|
plugins:
|
||||||
|
- dart_code_linter
|
||||||
errors:
|
errors:
|
||||||
todo: ignore
|
todo: ignore
|
||||||
use_build_context_synchronously: ignore
|
|
||||||
exclude:
|
exclude:
|
||||||
- lib/l10n/*.dart
|
- lib/l10n/*.dart
|
||||||
|
|
||||||
|
dart_code_linter:
|
||||||
|
rules:
|
||||||
|
# Dart specific:
|
||||||
|
- avoid-dynamic
|
||||||
|
- avoid-redundant-async
|
||||||
|
- avoid-unnecessary-type-assertions
|
||||||
|
- avoid-unnecessary-type-casts
|
||||||
|
- avoid-unrelated-type-assertions
|
||||||
|
- no-equal-then-else
|
||||||
|
- prefer-first
|
||||||
|
- prefer-last
|
||||||
|
- prefer-immediate-return
|
||||||
|
- prefer-enums-by-name
|
||||||
|
- avoid-unnecessary-conditionals
|
||||||
|
# TODO:
|
||||||
|
# - member-ordering
|
||||||
|
# - avoid-global-state
|
||||||
|
# - prefer-match-file-name
|
||||||
|
# - avoid-banned-imports:
|
||||||
|
# entries:
|
||||||
|
# - paths: ['some/folder/.*\.dart', 'another/folder/.*\.dart']
|
||||||
|
# deny: ['package:flutter/material.dart']
|
||||||
|
# message: 'Do not import Flutter Material Design library, we should not depend on it!'
|
||||||
|
# - no-magic-number:
|
||||||
|
# allowed: [-1, 0, 1,2,4,6,8,12,16,32,40,56,64]
|
||||||
|
# allow-only-once: true
|
||||||
|
# Flutter specific:
|
||||||
|
- prefer-media-query-direct-access
|
||||||
|
- avoid-wrapping-in-padding
|
||||||
|
- prefer-correct-edge-insets-constructor
|
||||||
|
- avoid-returning-widgets
|
||||||
|
# TODO:
|
||||||
|
# - prefer-single-widget-per-file:
|
||||||
|
# ignore-private-widgets: true
|
||||||
|
# - prefer-extracting-callbacks
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@
|
||||||
<action android:name="android.intent.action.VIEW" />
|
<action android:name="android.intent.action.VIEW" />
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
<category android:name="android.intent.category.BROWSABLE" />
|
<category android:name="android.intent.category.BROWSABLE" />
|
||||||
<data android:scheme="im.fluffychat" android:host="login"/>
|
<data android:scheme="im.fluffychat.auth" android:path="/login"/>
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@
|
||||||
<locale android:name="it"/>
|
<locale android:name="it"/>
|
||||||
<locale android:name="ja"/>
|
<locale android:name="ja"/>
|
||||||
<locale android:name="ka"/>
|
<locale android:name="ka"/>
|
||||||
|
<locale android:name="kab"/>
|
||||||
<locale android:name="ko"/>
|
<locale android:name="ko"/>
|
||||||
<locale android:name="lt"/>
|
<locale android:name="lt"/>
|
||||||
<locale android:name="lv"/>
|
<locale android:name="lv"/>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
FluffyChat 2.4.0 adds a new improved GUI for managing stickers with tutorials how to
|
FluffyChat 2.5.0 introduces a new homeserver picker for onboarding,
|
||||||
easily add your own sticker packs.
|
better image compression performance and several smaller new features,
|
||||||
It also improves the search and image gallery in chats, especially encrypted chats.
|
design adjustments and bug fixes.
|
||||||
Besides that this update comes with a lot of fixes and improvements under the hood.
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"applicationName": "FluffyChat",
|
"applicationName": "FluffyChat",
|
||||||
"defaultHomeserver": "matrix.org",
|
"defaultHomeserver": "matrix.org",
|
||||||
|
"presetHomeserver": "",
|
||||||
|
"welcomeText": "",
|
||||||
"privacyUrl": "https://github.com/krille-chan/fluffychat/blob/main/PRIVACY.md",
|
"privacyUrl": "https://github.com/krille-chan/fluffychat/blob/main/PRIVACY.md",
|
||||||
"audioRecordingNumChannels": 1,
|
"audioRecordingNumChannels": 1,
|
||||||
"audioRecordingAutoGain": true,
|
"audioRecordingAutoGain": true,
|
||||||
|
|
|
||||||
3
dart_dependency_validator.yaml
Normal file
3
dart_dependency_validator.yaml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
ignore:
|
||||||
|
- handy_window
|
||||||
|
- sqlcipher_flutter_libs
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# im.fluffychat.Fluffychat
|
|
||||||
8b25b37b-f160-4350-b4f6-9a04554e8f9e
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<title>Redirecting to fluffy.chat</title>
|
|
||||||
<!-- Redirecting to another page using meta tag -->
|
|
||||||
<meta http-equiv="refresh" content="5; url =https://fluffy.chat" />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<h3>
|
|
||||||
Redirecting...
|
|
||||||
</h3>
|
|
||||||
<p><strong>Note:</strong> If your browser does not redirect you, please use this link:
|
|
||||||
</p>
|
|
||||||
<a href="https://fluffy.chat">https://fluffy.chat</a>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,187 +0,0 @@
|
||||||
import 'package:fluffychat/pages/chat/chat_view.dart';
|
|
||||||
import 'package:fluffychat/pages/chat_list/chat_list_body.dart';
|
|
||||||
import 'package:fluffychat/pages/chat_list/search_title.dart';
|
|
||||||
import 'package:fluffychat/pages/invitation_selection/invitation_selection_view.dart';
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
|
||||||
import 'package:integration_test/integration_test.dart';
|
|
||||||
|
|
||||||
import 'package:fluffychat/main.dart' as app;
|
|
||||||
import 'package:shared_preferences/shared_preferences.dart';
|
|
||||||
|
|
||||||
import 'extensions/default_flows.dart';
|
|
||||||
import 'extensions/wait_for.dart';
|
|
||||||
import 'users.dart';
|
|
||||||
|
|
||||||
void main() {
|
|
||||||
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
||||||
|
|
||||||
group(
|
|
||||||
'Integration Test',
|
|
||||||
() {
|
|
||||||
setUpAll(
|
|
||||||
() async {
|
|
||||||
// this random dialog popping up is super hard to cover in tests
|
|
||||||
SharedPreferences.setMockInitialValues({
|
|
||||||
'chat.fluffy.show_no_google': false,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
testWidgets(
|
|
||||||
'Start app, login and logout',
|
|
||||||
(WidgetTester tester) async {
|
|
||||||
app.main();
|
|
||||||
await tester.ensureAppStartedHomescreen();
|
|
||||||
await tester.ensureLoggedOut();
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
testWidgets(
|
|
||||||
'Login again',
|
|
||||||
(WidgetTester tester) async {
|
|
||||||
app.main();
|
|
||||||
await tester.ensureAppStartedHomescreen();
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
testWidgets(
|
|
||||||
'Start chat and send message',
|
|
||||||
(WidgetTester tester) async {
|
|
||||||
app.main();
|
|
||||||
await tester.ensureAppStartedHomescreen();
|
|
||||||
await tester.waitFor(find.byType(TextField));
|
|
||||||
await tester.enterText(find.byType(TextField), Users.user2.name);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.scrollUntilVisible(
|
|
||||||
find.text('Chats').first,
|
|
||||||
500,
|
|
||||||
scrollable: find
|
|
||||||
.descendant(
|
|
||||||
of: find.byType(ChatListViewBody),
|
|
||||||
matching: find.byType(Scrollable),
|
|
||||||
)
|
|
||||||
.first,
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.tap(find.text('Chats'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.waitFor(find.byType(SearchTitle));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.scrollUntilVisible(
|
|
||||||
find.text(Users.user2.name).first,
|
|
||||||
500,
|
|
||||||
scrollable: find
|
|
||||||
.descendant(
|
|
||||||
of: find.byType(ChatListViewBody),
|
|
||||||
matching: find.byType(Scrollable),
|
|
||||||
)
|
|
||||||
.first,
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.tap(find.text(Users.user2.name).first);
|
|
||||||
|
|
||||||
try {
|
|
||||||
await tester.waitFor(
|
|
||||||
find.byType(ChatView),
|
|
||||||
timeout: const Duration(seconds: 5),
|
|
||||||
);
|
|
||||||
} catch (_) {
|
|
||||||
// in case the homeserver sends the username as search result
|
|
||||||
if (find.byIcon(Icons.send_outlined).evaluate().isNotEmpty) {
|
|
||||||
await tester.tap(find.byIcon(Icons.send_outlined));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
await tester.waitFor(find.byType(ChatView));
|
|
||||||
await tester.enterText(find.byType(TextField).last, 'Test');
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
try {
|
|
||||||
await tester.waitFor(find.byIcon(Icons.send_outlined));
|
|
||||||
await tester.tap(find.byIcon(Icons.send_outlined));
|
|
||||||
} catch (_) {
|
|
||||||
await tester.testTextInput.receiveAction(TextInputAction.done);
|
|
||||||
}
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.waitFor(find.text('Test'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
testWidgets('Spaces', (tester) async {
|
|
||||||
app.main();
|
|
||||||
await tester.ensureAppStartedHomescreen();
|
|
||||||
|
|
||||||
await tester.waitFor(find.byTooltip('Show menu'));
|
|
||||||
await tester.tap(find.byTooltip('Show menu'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.waitFor(find.byIcon(Icons.workspaces_outlined));
|
|
||||||
await tester.tap(find.byIcon(Icons.workspaces_outlined));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.waitFor(find.byType(TextField));
|
|
||||||
await tester.enterText(find.byType(TextField).last, 'Test Space');
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.testTextInput.receiveAction(TextInputAction.done);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.waitFor(find.text('Invite contact'));
|
|
||||||
|
|
||||||
await tester.tap(find.text('Invite contact'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.waitFor(
|
|
||||||
find.descendant(
|
|
||||||
of: find.byType(InvitationSelectionView),
|
|
||||||
matching: find.byType(TextField),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.enterText(
|
|
||||||
find.descendant(
|
|
||||||
of: find.byType(InvitationSelectionView),
|
|
||||||
matching: find.byType(TextField),
|
|
||||||
),
|
|
||||||
Users.user2.name,
|
|
||||||
);
|
|
||||||
|
|
||||||
await Future.delayed(const Duration(milliseconds: 250));
|
|
||||||
await tester.testTextInput.receiveAction(TextInputAction.done);
|
|
||||||
|
|
||||||
await Future.delayed(const Duration(milliseconds: 1000));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.tap(
|
|
||||||
find
|
|
||||||
.descendant(
|
|
||||||
of: find.descendant(
|
|
||||||
of: find.byType(InvitationSelectionView),
|
|
||||||
matching: find.byType(ListTile),
|
|
||||||
),
|
|
||||||
matching: find.text(Users.user2.name),
|
|
||||||
)
|
|
||||||
.last,
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.waitFor(find.maybeUppercaseText('Yes'));
|
|
||||||
await tester.tap(find.maybeUppercaseText('Yes'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.tap(find.byTooltip('Back'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.waitFor(find.text('Load 2 more participants'));
|
|
||||||
await tester.tap(find.text('Load 2 more participants'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
expect(find.text(Users.user2.name), findsOneWidget);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
14
integration_test/data/environment_constants.dart
Normal file
14
integration_test/data/environment_constants.dart
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
const homeserver = String.fromEnvironment(
|
||||||
|
'HOMESERVER',
|
||||||
|
defaultValue: '10.0.2.2',
|
||||||
|
);
|
||||||
|
const user1Name = String.fromEnvironment('USER1_NAME', defaultValue: 'alice');
|
||||||
|
const user1Pw = String.fromEnvironment(
|
||||||
|
'USER1_PW',
|
||||||
|
defaultValue: 'AliceInWonderland',
|
||||||
|
);
|
||||||
|
const user2Name = String.fromEnvironment('USER2_NAME', defaultValue: 'bob');
|
||||||
|
const user2Pw = String.fromEnvironment(
|
||||||
|
'USER2_PW',
|
||||||
|
defaultValue: 'JoWirSchaffenDas',
|
||||||
|
);
|
||||||
5
integration_test/data/integration_users.env
Normal file
5
integration_test/data/integration_users.env
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
HOMESERVER=localhost
|
||||||
|
USER1_NAME=alice
|
||||||
|
USER1_PW=AliceInWonderland
|
||||||
|
USER2_NAME=bob
|
||||||
|
USER2_PW=JoWirSchaffenDas
|
||||||
|
|
@ -1,327 +0,0 @@
|
||||||
# This is the Dendrite configuration file.
|
|
||||||
#
|
|
||||||
# The configuration is split up into sections - each Dendrite component has a
|
|
||||||
# configuration section, in addition to the "global" section which applies to
|
|
||||||
# all components.
|
|
||||||
|
|
||||||
# The version of the configuration file.
|
|
||||||
version: 2
|
|
||||||
|
|
||||||
# Global Matrix configuration. This configuration applies to all components.
|
|
||||||
global:
|
|
||||||
# The domain name of this homeserver.
|
|
||||||
server_name: localhost
|
|
||||||
|
|
||||||
# The path to the signing private key file, used to sign requests and events.
|
|
||||||
# Note that this is NOT the same private key as used for TLS! To generate a
|
|
||||||
# signing key, use "./bin/generate-keys --private-key matrix_key.pem".
|
|
||||||
private_key: matrix_key.pem
|
|
||||||
|
|
||||||
# The paths and expiry timestamps (as a UNIX timestamp in millisecond precision)
|
|
||||||
# to old signing private keys that were formerly in use on this domain. These
|
|
||||||
# keys will not be used for federation request or event signing, but will be
|
|
||||||
# provided to any other homeserver that asks when trying to verify old events.
|
|
||||||
old_private_keys:
|
|
||||||
# - private_key: old_matrix_key.pem
|
|
||||||
# expired_at: 1601024554498
|
|
||||||
|
|
||||||
# How long a remote server can cache our server signing key before requesting it
|
|
||||||
# again. Increasing this number will reduce the number of requests made by other
|
|
||||||
# servers for our key but increases the period that a compromised key will be
|
|
||||||
# considered valid by other homeservers.
|
|
||||||
key_validity_period: 168h0m0s
|
|
||||||
|
|
||||||
# Global database connection pool, for PostgreSQL monolith deployments only. If
|
|
||||||
# this section is populated then you can omit the "database" blocks in all other
|
|
||||||
# sections. For polylith deployments, or monolith deployments using SQLite databases,
|
|
||||||
# you must configure the "database" block for each component instead.
|
|
||||||
database:
|
|
||||||
connection_string:
|
|
||||||
max_open_conns:
|
|
||||||
max_idle_conns:
|
|
||||||
conn_max_lifetime:
|
|
||||||
|
|
||||||
# Configuration for in-memory caches. Caches can often improve performance by
|
|
||||||
# keeping frequently accessed items (like events, identifiers etc.) in memory
|
|
||||||
# rather than having to read them from the database.
|
|
||||||
cache:
|
|
||||||
# The estimated maximum size for the global cache in bytes, or in terabytes,
|
|
||||||
# gigabytes, megabytes or kilobytes when the appropriate 'tb', 'gb', 'mb' or
|
|
||||||
# 'kb' suffix is specified. Note that this is not a hard limit, nor is it a
|
|
||||||
# memory limit for the entire process. A cache that is too small may ultimately
|
|
||||||
# provide little or no benefit.
|
|
||||||
max_size_estimated: 1gb
|
|
||||||
|
|
||||||
# The maximum amount of time that a cache entry can live for in memory before
|
|
||||||
# it will be evicted and/or refreshed from the database. Lower values result in
|
|
||||||
# easier admission of new cache entries but may also increase database load in
|
|
||||||
# comparison to higher values, so adjust conservatively. Higher values may make
|
|
||||||
# it harder for new items to make it into the cache, e.g. if new rooms suddenly
|
|
||||||
# become popular.
|
|
||||||
max_age: 1h
|
|
||||||
|
|
||||||
# The server name to delegate server-server communications to, with optional port
|
|
||||||
# e.g. localhost:443
|
|
||||||
well_known_server_name: ""
|
|
||||||
|
|
||||||
# Lists of domains that the server will trust as identity servers to verify third
|
|
||||||
# party identifiers such as phone numbers and email addresses.
|
|
||||||
trusted_third_party_id_servers:
|
|
||||||
- matrix.org
|
|
||||||
- vector.im
|
|
||||||
|
|
||||||
# Disables federation. Dendrite will not be able to communicate with other servers
|
|
||||||
# in the Matrix federation and the federation API will not be exposed.
|
|
||||||
disable_federation: false
|
|
||||||
|
|
||||||
# Configures the handling of presence events. Inbound controls whether we receive
|
|
||||||
# presence events from other servers, outbound controls whether we send presence
|
|
||||||
# events for our local users to other servers.
|
|
||||||
presence:
|
|
||||||
enable_inbound: false
|
|
||||||
enable_outbound: false
|
|
||||||
|
|
||||||
# Configures phone-home statistics reporting. These statistics contain the server
|
|
||||||
# name, number of active users and some information on your deployment config.
|
|
||||||
# We use this information to understand how Dendrite is being used in the wild.
|
|
||||||
report_stats:
|
|
||||||
enabled: false
|
|
||||||
endpoint: https://matrix.org/report-usage-stats/push
|
|
||||||
|
|
||||||
# Server notices allows server admins to send messages to all users on the server.
|
|
||||||
server_notices:
|
|
||||||
enabled: false
|
|
||||||
# The local part, display name and avatar URL (as a mxc:// URL) for the user that
|
|
||||||
# will send the server notices. These are visible to all users on the deployment.
|
|
||||||
local_part: "_server"
|
|
||||||
display_name: "Server Alerts"
|
|
||||||
avatar_url: ""
|
|
||||||
# The room name to be used when sending server notices. This room name will
|
|
||||||
# appear in user clients.
|
|
||||||
room_name: "Server Alerts"
|
|
||||||
|
|
||||||
# Configuration for NATS JetStream
|
|
||||||
jetstream:
|
|
||||||
# A list of NATS Server addresses to connect to. If none are specified, an
|
|
||||||
# internal NATS server will be started automatically when running Dendrite in
|
|
||||||
# monolith mode. For polylith deployments, it is required to specify the address
|
|
||||||
# of at least one NATS Server node.
|
|
||||||
addresses:
|
|
||||||
# - localhost:4222
|
|
||||||
|
|
||||||
# Persistent directory to store JetStream streams in. This directory should be
|
|
||||||
# preserved across Dendrite restarts.
|
|
||||||
storage_path: ./
|
|
||||||
|
|
||||||
# The prefix to use for stream names for this homeserver - really only useful
|
|
||||||
# if you are running more than one Dendrite server on the same NATS deployment.
|
|
||||||
topic_prefix: Dendrite
|
|
||||||
|
|
||||||
# Configuration for Prometheus metric collection.
|
|
||||||
metrics:
|
|
||||||
enabled: false
|
|
||||||
basic_auth:
|
|
||||||
username: metrics
|
|
||||||
password: metrics
|
|
||||||
|
|
||||||
# Optional DNS cache. The DNS cache may reduce the load on DNS servers if there
|
|
||||||
# is no local caching resolver available for use.
|
|
||||||
dns_cache:
|
|
||||||
enabled: false
|
|
||||||
cache_size: 256
|
|
||||||
cache_lifetime: "5m" # 5 minutes; https://pkg.go.dev/time@master#ParseDuration
|
|
||||||
|
|
||||||
# Configuration for the Appservice API.
|
|
||||||
app_service_api:
|
|
||||||
database:
|
|
||||||
connection_string: file:app_service_api.db
|
|
||||||
|
|
||||||
# Disable the validation of TLS certificates of appservices. This is
|
|
||||||
# not recommended in production since it may allow appservice traffic
|
|
||||||
# to be sent to an insecure endpoint.
|
|
||||||
disable_tls_validation: true
|
|
||||||
|
|
||||||
# Appservice configuration files to load into this homeserver.
|
|
||||||
config_files:
|
|
||||||
# - /path/to/appservice_registration.yaml
|
|
||||||
|
|
||||||
# Configuration for the Client API.
|
|
||||||
client_api:
|
|
||||||
# Prevents new users from being able to register on this homeserver, except when
|
|
||||||
# using the registration shared secret below.
|
|
||||||
registration_disabled: false
|
|
||||||
|
|
||||||
# Prevents new guest accounts from being created. Guest registration is also
|
|
||||||
# disabled implicitly by setting 'registration_disabled' above.
|
|
||||||
guests_disabled: true
|
|
||||||
|
|
||||||
# If set, allows registration by anyone who knows the shared secret, regardless
|
|
||||||
# of whether registration is otherwise disabled.
|
|
||||||
registration_shared_secret: ""
|
|
||||||
|
|
||||||
# Whether to require reCAPTCHA for registration. If you have enabled registration
|
|
||||||
# then this is HIGHLY RECOMMENDED to reduce the risk of your homeserver being used
|
|
||||||
# for coordinated spam attacks.
|
|
||||||
enable_registration_captcha: false
|
|
||||||
|
|
||||||
# Settings for ReCAPTCHA.
|
|
||||||
recaptcha_public_key: ""
|
|
||||||
recaptcha_private_key: ""
|
|
||||||
recaptcha_bypass_secret: ""
|
|
||||||
recaptcha_siteverify_api: ""
|
|
||||||
|
|
||||||
# TURN server information that this homeserver should send to clients.
|
|
||||||
turn:
|
|
||||||
turn_user_lifetime: ""
|
|
||||||
turn_uris:
|
|
||||||
# - turn:turn.server.org?transport=udp
|
|
||||||
# - turn:turn.server.org?transport=tcp
|
|
||||||
turn_shared_secret: ""
|
|
||||||
turn_username: ""
|
|
||||||
turn_password: ""
|
|
||||||
|
|
||||||
# Settings for rate-limited endpoints. Rate limiting kicks in after the threshold
|
|
||||||
# number of "slots" have been taken by requests from a specific host. Each "slot"
|
|
||||||
# will be released after the cooloff time in milliseconds. Server administrators
|
|
||||||
# and appservice users are exempt from rate limiting by default.
|
|
||||||
rate_limiting:
|
|
||||||
enabled: true
|
|
||||||
threshold: 5
|
|
||||||
cooloff_ms: 500
|
|
||||||
exempt_user_ids:
|
|
||||||
# - "@user:domain.com"
|
|
||||||
|
|
||||||
# Configuration for the Federation API.
|
|
||||||
federation_api:
|
|
||||||
database:
|
|
||||||
connection_string: file:federation_api.db
|
|
||||||
|
|
||||||
# How many times we will try to resend a failed transaction to a specific server. The
|
|
||||||
# backoff is 2**x seconds, so 1 = 2 seconds, 2 = 4 seconds, 3 = 8 seconds etc. Once
|
|
||||||
# the max retries are exceeded, Dendrite will no longer try to send transactions to
|
|
||||||
# that server until it comes back to life and connects to us again.
|
|
||||||
send_max_retries: 16
|
|
||||||
|
|
||||||
# Disable the validation of TLS certificates of remote federated homeservers. Do not
|
|
||||||
# enable this option in production as it presents a security risk!
|
|
||||||
disable_tls_validation: false
|
|
||||||
|
|
||||||
# Perspective keyservers to use as a backup when direct key fetches fail. This may
|
|
||||||
# be required to satisfy key requests for servers that are no longer online when
|
|
||||||
# joining some rooms.
|
|
||||||
key_perspectives:
|
|
||||||
- server_name: matrix.org
|
|
||||||
keys:
|
|
||||||
- key_id: ed25519:auto
|
|
||||||
public_key: Noi6WqcDj0QmPxCNQqgezwTlBKrfqehY1u2FyWP9uYw
|
|
||||||
- key_id: ed25519:a_RXGa
|
|
||||||
public_key: l8Hft5qXKn1vfHrg3p4+W8gELQVo8N13JkluMfmn2sQ
|
|
||||||
|
|
||||||
# This option will control whether Dendrite will prefer to look up keys directly
|
|
||||||
# or whether it should try perspective servers first, using direct fetches as a
|
|
||||||
# last resort.
|
|
||||||
prefer_direct_fetch: false
|
|
||||||
|
|
||||||
# Configuration for the Media API.
|
|
||||||
media_api:
|
|
||||||
database:
|
|
||||||
connection_string: file:media_api.db
|
|
||||||
|
|
||||||
# Storage path for uploaded media. May be relative or absolute.
|
|
||||||
base_path: ./media_store
|
|
||||||
|
|
||||||
# The maximum allowed file size (in bytes) for media uploads to this homeserver
|
|
||||||
# (0 = unlimited). If using a reverse proxy, ensure it allows requests at least
|
|
||||||
#this large (e.g. the client_max_body_size setting in nginx).
|
|
||||||
max_file_size_bytes: 10485760
|
|
||||||
|
|
||||||
# Whether to dynamically generate thumbnails if needed.
|
|
||||||
dynamic_thumbnails: false
|
|
||||||
|
|
||||||
# The maximum number of simultaneous thumbnail generators to run.
|
|
||||||
max_thumbnail_generators: 10
|
|
||||||
|
|
||||||
# A list of thumbnail sizes to be generated for media content.
|
|
||||||
thumbnail_sizes:
|
|
||||||
- width: 32
|
|
||||||
height: 32
|
|
||||||
method: crop
|
|
||||||
- width: 96
|
|
||||||
height: 96
|
|
||||||
method: crop
|
|
||||||
- width: 640
|
|
||||||
height: 480
|
|
||||||
method: scale
|
|
||||||
|
|
||||||
# Configuration for enabling experimental MSCs on this homeserver.
|
|
||||||
mscs:
|
|
||||||
database:
|
|
||||||
connection_string: file:mscs.db
|
|
||||||
mscs:
|
|
||||||
# - msc2836 # (Threading, see https://github.com/matrix-org/matrix-doc/pull/2836)
|
|
||||||
# - msc2946 # (Spaces Summary, see https://github.com/matrix-org/matrix-doc/pull/2946)
|
|
||||||
|
|
||||||
# Configuration for the Sync API.
|
|
||||||
sync_api:
|
|
||||||
# This option controls which HTTP header to inspect to find the real remote IP
|
|
||||||
# address of the client. This is likely required if Dendrite is running behind
|
|
||||||
# a reverse proxy server.
|
|
||||||
# real_ip_header: X-Real-IP
|
|
||||||
database:
|
|
||||||
connection_string: file:sync_api.db
|
|
||||||
|
|
||||||
key_server:
|
|
||||||
database:
|
|
||||||
connection_string: file:key_server.db
|
|
||||||
|
|
||||||
room_server:
|
|
||||||
database:
|
|
||||||
connection_string: file:room_server.db
|
|
||||||
|
|
||||||
|
|
||||||
# Configuration for the User API.
|
|
||||||
user_api:
|
|
||||||
account_database:
|
|
||||||
connection_string: file:user_api.db
|
|
||||||
|
|
||||||
# The cost when hashing passwords on registration/login. Default: 10. Min: 4, Max: 31
|
|
||||||
# See https://pkg.go.dev/golang.org/x/crypto/bcrypt for more information.
|
|
||||||
# Setting this lower makes registration/login consume less CPU resources at the cost
|
|
||||||
# of security should the database be compromised. Setting this higher makes registration/login
|
|
||||||
# consume more CPU resources but makes it harder to brute force password hashes. This value
|
|
||||||
# can be lowered if performing tests or on embedded Dendrite instances (e.g WASM builds).
|
|
||||||
bcrypt_cost: 10
|
|
||||||
|
|
||||||
# The length of time that a token issued for a relying party from
|
|
||||||
# /_matrix/client/r0/user/{userId}/openid/request_token endpoint
|
|
||||||
# is considered to be valid in milliseconds.
|
|
||||||
# The default lifetime is 3600000ms (60 minutes).
|
|
||||||
# openid_token_lifetime_ms: 3600000
|
|
||||||
|
|
||||||
# Configuration for Opentracing.
|
|
||||||
# See https://github.com/matrix-org/dendrite/tree/master/docs/tracing for information on
|
|
||||||
# how this works and how to set it up.
|
|
||||||
tracing:
|
|
||||||
enabled: false
|
|
||||||
jaeger:
|
|
||||||
serviceName: ""
|
|
||||||
disabled: false
|
|
||||||
rpc_metrics: false
|
|
||||||
tags: []
|
|
||||||
sampler: null
|
|
||||||
reporter: null
|
|
||||||
headers: null
|
|
||||||
baggage_restrictions: null
|
|
||||||
throttler: null
|
|
||||||
|
|
||||||
# Logging configuration. The "std" logging type controls the logs being sent to
|
|
||||||
# stdout. The "file" logging type controls logs being written to a log folder on
|
|
||||||
# the disk. Supported log levels are "debug", "info", "warn", "error".
|
|
||||||
logging:
|
|
||||||
- type: std
|
|
||||||
level: info
|
|
||||||
- type: file
|
|
||||||
level: info
|
|
||||||
params:
|
|
||||||
path: ./logs
|
|
||||||
|
|
||||||
|
|
@ -1,165 +0,0 @@
|
||||||
import 'dart:developer';
|
|
||||||
|
|
||||||
import 'package:fluffychat/pages/chat_list/chat_list_body.dart';
|
|
||||||
import 'package:fluffychat/pages/intro/intro_page.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
|
||||||
|
|
||||||
import '../users.dart';
|
|
||||||
import 'wait_for.dart';
|
|
||||||
|
|
||||||
extension DefaultFlowExtensions on WidgetTester {
|
|
||||||
Future<void> login() async {
|
|
||||||
final tester = this;
|
|
||||||
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.waitFor(find.text('Let\'s start'));
|
|
||||||
|
|
||||||
expect(find.text('Let\'s start'), findsOneWidget);
|
|
||||||
|
|
||||||
final input = find.byType(TextField);
|
|
||||||
|
|
||||||
expect(input, findsOneWidget);
|
|
||||||
|
|
||||||
// getting the placeholder in place
|
|
||||||
await tester.tap(find.byIcon(Icons.search));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.enterText(input, homeserver);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.testTextInput.receiveAction(TextInputAction.done);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
// in case registration is allowed
|
|
||||||
// try {
|
|
||||||
await Future.delayed(const Duration(milliseconds: 50));
|
|
||||||
|
|
||||||
await tester.scrollUntilVisible(
|
|
||||||
find.text('Login'),
|
|
||||||
500,
|
|
||||||
scrollable: find.descendant(
|
|
||||||
of: find.byKey(const Key('ConnectPageListView')),
|
|
||||||
matching: find.byType(Scrollable).first,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await tester.tap(find.text('Login'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
/*} catch (e) {
|
|
||||||
log('Registration is not allowed. Proceeding with login...');
|
|
||||||
}*/
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
await Future.delayed(const Duration(milliseconds: 50));
|
|
||||||
|
|
||||||
final inputs = find.byType(TextField);
|
|
||||||
|
|
||||||
await tester.enterText(inputs.first, Users.user1.name);
|
|
||||||
await tester.enterText(inputs.last, Users.user1.password);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.testTextInput.receiveAction(TextInputAction.done);
|
|
||||||
|
|
||||||
try {
|
|
||||||
// pumpAndSettle does not work in here as setState is called
|
|
||||||
// asynchronously
|
|
||||||
await tester.waitFor(
|
|
||||||
find.byType(LinearProgressIndicator),
|
|
||||||
timeout: const Duration(milliseconds: 1500),
|
|
||||||
skipPumpAndSettle: true,
|
|
||||||
);
|
|
||||||
} catch (_) {
|
|
||||||
// in case the input action does not work on the desired platform
|
|
||||||
if (find.text('Login').evaluate().isNotEmpty) {
|
|
||||||
await tester.tap(find.text('Login'));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
} catch (_) {
|
|
||||||
// may fail because of ongoing animation below dialog
|
|
||||||
}
|
|
||||||
|
|
||||||
await tester.waitFor(
|
|
||||||
find.byType(ChatListViewBody),
|
|
||||||
skipPumpAndSettle: true,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// ensure PushProvider check passes
|
|
||||||
Future<void> acceptPushWarning() async {
|
|
||||||
final tester = this;
|
|
||||||
|
|
||||||
final matcher = find.maybeUppercaseText('Do not show again');
|
|
||||||
|
|
||||||
try {
|
|
||||||
await tester.waitFor(matcher, timeout: const Duration(seconds: 5));
|
|
||||||
|
|
||||||
// the FCM push error dialog to be handled...
|
|
||||||
await tester.tap(matcher);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
} catch (_) {}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> ensureLoggedOut() async {
|
|
||||||
final tester = this;
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
if (find.byType(ChatListViewBody).evaluate().isNotEmpty) {
|
|
||||||
await tester.tap(find.byTooltip('Show menu'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.tap(find.text('Settings'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.scrollUntilVisible(
|
|
||||||
find.text('Account'),
|
|
||||||
500,
|
|
||||||
scrollable: find.descendant(
|
|
||||||
of: find.byKey(const Key('SettingsListViewContent')),
|
|
||||||
matching: find.byType(Scrollable),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.tap(find.text('Logout'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
await tester.tap(find.maybeUppercaseText('Yes'));
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> ensureAppStartedHomescreen({
|
|
||||||
Duration timeout = const Duration(seconds: 20),
|
|
||||||
}) async {
|
|
||||||
final tester = this;
|
|
||||||
await tester.pumpAndSettle();
|
|
||||||
|
|
||||||
final homeserverPickerFinder = find.byType(IntroPage);
|
|
||||||
final chatListFinder = find.byType(ChatListViewBody);
|
|
||||||
|
|
||||||
final end = DateTime.now().add(timeout);
|
|
||||||
|
|
||||||
log(
|
|
||||||
'Waiting for HomeserverPicker or ChatListViewBody...',
|
|
||||||
name: 'Test Runner',
|
|
||||||
);
|
|
||||||
do {
|
|
||||||
if (DateTime.now().isAfter(end)) {
|
|
||||||
throw Exception(
|
|
||||||
'Timed out waiting for HomeserverPicker or ChatListViewBody',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
await pumpAndSettle();
|
|
||||||
await Future.delayed(const Duration(milliseconds: 100));
|
|
||||||
} while (homeserverPickerFinder.evaluate().isEmpty &&
|
|
||||||
chatListFinder.evaluate().isEmpty);
|
|
||||||
|
|
||||||
if (homeserverPickerFinder.evaluate().isNotEmpty) {
|
|
||||||
log('Found HomeserverPicker, performing login.', name: 'Test Runner');
|
|
||||||
await tester.login();
|
|
||||||
} else {
|
|
||||||
log('Found ChatListViewBody, skipping login.', name: 'Test Runner');
|
|
||||||
}
|
|
||||||
|
|
||||||
await tester.acceptPushWarning();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,49 +0,0 @@
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
|
||||||
|
|
||||||
/// Workaround for https://github.com/flutter/flutter/issues/88765
|
|
||||||
extension WaitForExtension on WidgetTester {
|
|
||||||
Future<void> waitFor(
|
|
||||||
Finder finder, {
|
|
||||||
Duration timeout = const Duration(seconds: 20),
|
|
||||||
bool skipPumpAndSettle = false,
|
|
||||||
}) async {
|
|
||||||
final end = DateTime.now().add(timeout);
|
|
||||||
|
|
||||||
do {
|
|
||||||
if (DateTime.now().isAfter(end)) {
|
|
||||||
throw Exception('Timed out waiting for $finder');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!skipPumpAndSettle) {
|
|
||||||
await pumpAndSettle();
|
|
||||||
}
|
|
||||||
await Future.delayed(const Duration(milliseconds: 100));
|
|
||||||
} while (finder.evaluate().isEmpty);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
extension MaybeUppercaseFinder on CommonFinders {
|
|
||||||
/// On Android some button labels are in uppercase while on iOS they
|
|
||||||
/// are not. This method tries both.
|
|
||||||
Finder maybeUppercaseText(
|
|
||||||
String text, {
|
|
||||||
bool findRichText = false,
|
|
||||||
bool skipOffstage = true,
|
|
||||||
}) {
|
|
||||||
try {
|
|
||||||
final finder = find.text(
|
|
||||||
text.toUpperCase(),
|
|
||||||
findRichText: findRichText,
|
|
||||||
skipOffstage: skipOffstage,
|
|
||||||
);
|
|
||||||
expect(finder, findsOneWidget);
|
|
||||||
return finder;
|
|
||||||
} catch (_) {
|
|
||||||
return find.text(
|
|
||||||
text,
|
|
||||||
findRichText: findRichText,
|
|
||||||
skipOffstage: skipOffstage,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
49
integration_test/flows/auth_flows.dart
Normal file
49
integration_test/flows/auth_flows.dart
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
import 'package:fluffychat/pages/sign_in/view_model/model/public_homeserver_data.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
|
|
||||||
|
import '../data/environment_constants.dart';
|
||||||
|
import '../utils/fluffy_chat_tester.dart';
|
||||||
|
|
||||||
|
Future<void> finalLogout(WidgetTester widgetTester) =>
|
||||||
|
widgetTester.startFluffyChatTest().then((tester) => tester.logout());
|
||||||
|
|
||||||
|
extension AuthFlows on FluffyChatTester {
|
||||||
|
Future<void> login() async {
|
||||||
|
await waitFor('Sign in');
|
||||||
|
await tapOn('Sign in');
|
||||||
|
await enterText(TextField, 'http://$homeserver', index: 0);
|
||||||
|
await tapOn(RadioListTile<PublicHomeserverData>, index: 0);
|
||||||
|
await tapOn('Continue');
|
||||||
|
await waitFor('Log in to http://$homeserver');
|
||||||
|
await enterText(TextField, user1Name, index: 0);
|
||||||
|
await enterText(TextField, user1Pw, index: 1);
|
||||||
|
await tapOn('Login');
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> logout() async {
|
||||||
|
await ensureLoggedIn();
|
||||||
|
await tapOn(Key('accounts_and_settings_buttons'));
|
||||||
|
await tapOn('Settings');
|
||||||
|
await scrollUntilVisible('Logout');
|
||||||
|
await tapOn('Logout');
|
||||||
|
await tapOn(Key('ok_cancel_alert_dialog_ok_button'));
|
||||||
|
await waitFor('Sign in');
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> skipNoNotificationsDialog() async {
|
||||||
|
if (await isVisible('Push notifications not available')) {
|
||||||
|
await tapOn('Do not show again');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<bool> ensureLoggedIn() async {
|
||||||
|
if (await isVisible('Sign in') == false) return false;
|
||||||
|
|
||||||
|
await login();
|
||||||
|
await tapOn(CloseButton);
|
||||||
|
await tapOn('Skip');
|
||||||
|
await skipNoNotificationsDialog();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
23
integration_test/flows/basic_messaging.dart
Normal file
23
integration_test/flows/basic_messaging.dart
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
|
|
||||||
|
import '../utils/fluffy_chat_tester.dart';
|
||||||
|
import 'auth_flows.dart';
|
||||||
|
import 'chat_flows.dart';
|
||||||
|
|
||||||
|
Future<void> basicMessaging(WidgetTester widgetTester) => widgetTester
|
||||||
|
.startFluffyChatTest()
|
||||||
|
.then((tester) => tester._basicMessaging());
|
||||||
|
|
||||||
|
extension on FluffyChatTester {
|
||||||
|
Future<void> _basicMessaging() async {
|
||||||
|
await ensureLoggedIn();
|
||||||
|
await ensureGroupChatCreated();
|
||||||
|
|
||||||
|
await tapOn(ChatFlows.groupChatName);
|
||||||
|
const testMessage = 'Hello from integration test!';
|
||||||
|
await enterText(Key('chat_input_field'), testMessage);
|
||||||
|
await tapOn(Key('send_button'));
|
||||||
|
await waitFor(testMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
35
integration_test/flows/chat_flows.dart
Normal file
35
integration_test/flows/chat_flows.dart
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
import 'package:fluffychat/pages/chat_list/chat_list.dart';
|
||||||
|
import 'package:fluffychat/widgets/chat_settings_popup_menu.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
|
|
||||||
|
import '../utils/fluffy_chat_tester.dart';
|
||||||
|
import 'auth_flows.dart';
|
||||||
|
|
||||||
|
Future<void> archiveChats(WidgetTester widgetTester) =>
|
||||||
|
widgetTester.startFluffyChatTest().then((tester) => tester._archiveChats());
|
||||||
|
|
||||||
|
extension ChatFlows on FluffyChatTester {
|
||||||
|
static const String groupChatName = 'Test Group 01';
|
||||||
|
|
||||||
|
Future<void> ensureGroupChatCreated() async {
|
||||||
|
if (await isVisible(groupChatName)) return;
|
||||||
|
await tapOn(FloatingActionButton);
|
||||||
|
await tapOn('Create group');
|
||||||
|
await enterText(TextField, groupChatName);
|
||||||
|
await tapOn('Create a group and invite users');
|
||||||
|
await waitFor('Invite contact');
|
||||||
|
await goBack();
|
||||||
|
await goBack();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _archiveChats() async {
|
||||||
|
await ensureLoggedIn();
|
||||||
|
await ensureGroupChatCreated();
|
||||||
|
await tapOn(ChatSettingsPopupMenu);
|
||||||
|
await tapOn('Leave');
|
||||||
|
await waitFor('Are you sure?');
|
||||||
|
await tapOn('Leave');
|
||||||
|
await waitFor(ChatList);
|
||||||
|
}
|
||||||
|
}
|
||||||
23
integration_test/flows/login_and_chat_backup.dart
Normal file
23
integration_test/flows/login_and_chat_backup.dart
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
|
|
||||||
|
import '../utils/fluffy_chat_tester.dart';
|
||||||
|
import 'auth_flows.dart';
|
||||||
|
|
||||||
|
Future<void> loginAndChatBackup(WidgetTester widgetTester) => widgetTester
|
||||||
|
.startFluffyChatTest()
|
||||||
|
.then((tester) => tester._loginAndChatBackup());
|
||||||
|
|
||||||
|
extension on FluffyChatTester {
|
||||||
|
Future<void> _loginAndChatBackup() async {
|
||||||
|
await login();
|
||||||
|
|
||||||
|
// Skip bootstrap
|
||||||
|
await tapOn('Copy to clipboard');
|
||||||
|
await tapOn('Next');
|
||||||
|
await tapOn('Close');
|
||||||
|
|
||||||
|
await skipNoNotificationsDialog();
|
||||||
|
|
||||||
|
await logout();
|
||||||
|
}
|
||||||
|
}
|
||||||
18
integration_test/mobile_test.dart
Normal file
18
integration_test/mobile_test.dart
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
|
import 'package:integration_test/integration_test.dart';
|
||||||
|
|
||||||
|
import 'flows/auth_flows.dart';
|
||||||
|
import 'flows/basic_messaging.dart';
|
||||||
|
import 'flows/chat_flows.dart';
|
||||||
|
import 'flows/login_and_chat_backup.dart';
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
||||||
|
|
||||||
|
group('FluffyChat Integration Tests', () {
|
||||||
|
testWidgets('Login and logout flow', loginAndChatBackup);
|
||||||
|
testWidgets('Basic Messaging', basicMessaging);
|
||||||
|
testWidgets('Archive chats', archiveChats);
|
||||||
|
testWidgets('Final logout', finalLogout);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
@ -1,36 +0,0 @@
|
||||||
abstract class Users {
|
|
||||||
const Users._();
|
|
||||||
|
|
||||||
static const user1 = User(
|
|
||||||
String.fromEnvironment(
|
|
||||||
'USER1_NAME',
|
|
||||||
defaultValue: 'alice',
|
|
||||||
),
|
|
||||||
String.fromEnvironment(
|
|
||||||
'USER1_PW',
|
|
||||||
defaultValue: 'AliceInWonderland',
|
|
||||||
),
|
|
||||||
);
|
|
||||||
static const user2 = User(
|
|
||||||
String.fromEnvironment(
|
|
||||||
'USER2_NAME',
|
|
||||||
defaultValue: 'bob',
|
|
||||||
),
|
|
||||||
String.fromEnvironment(
|
|
||||||
'USER2_PW',
|
|
||||||
defaultValue: 'JoWirSchaffenDas',
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
class User {
|
|
||||||
final String name;
|
|
||||||
final String password;
|
|
||||||
|
|
||||||
const User(this.name, this.password);
|
|
||||||
}
|
|
||||||
|
|
||||||
const homeserver = 'http://${String.fromEnvironment(
|
|
||||||
'HOMESERVER',
|
|
||||||
defaultValue: 'localhost',
|
|
||||||
)}';
|
|
||||||
114
integration_test/utils/fluffy_chat_tester.dart
Normal file
114
integration_test/utils/fluffy_chat_tester.dart
Normal file
|
|
@ -0,0 +1,114 @@
|
||||||
|
import 'package:fluffychat/main.dart' as app;
|
||||||
|
import 'package:flutter/widgets.dart';
|
||||||
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
|
|
||||||
|
extension type FluffyChatTester(WidgetTester tester) {
|
||||||
|
static int _printCounter = 1;
|
||||||
|
|
||||||
|
void _print(String message) {
|
||||||
|
debugPrint(
|
||||||
|
'[INTEGRATION TEST] ${DateTime.now().toIso8601String()} | Step ${_printCounter++} - $message',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<bool> isVisible(
|
||||||
|
Object object, {
|
||||||
|
Duration timeout = const Duration(seconds: 3),
|
||||||
|
}) async {
|
||||||
|
final end = DateTime.now().add(timeout);
|
||||||
|
while (object.toFinder().evaluate().isEmpty) {
|
||||||
|
if (DateTime.now().isAfter(end)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
await tester.pump(const Duration(milliseconds: 500));
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> waitFor(
|
||||||
|
Object object, {
|
||||||
|
Duration timeout = const Duration(seconds: 30),
|
||||||
|
}) async {
|
||||||
|
_print('👀 Waiting for "$object" (${timeout.inSeconds}s)');
|
||||||
|
final end = DateTime.now().add(timeout);
|
||||||
|
while (object.toFinder().evaluate().isEmpty) {
|
||||||
|
if (DateTime.now().isAfter(end)) {
|
||||||
|
throw Exception('⏱️ Timed out waiting for "$object"!');
|
||||||
|
}
|
||||||
|
await tester.pump(const Duration(milliseconds: 500));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Finder> _ensureVisible(Object object, {int? index}) async {
|
||||||
|
var finder = object.toFinder();
|
||||||
|
if (finder.evaluate().isEmpty) await waitFor(object);
|
||||||
|
|
||||||
|
if (finder.evaluate().length > 1) {
|
||||||
|
if (index == null) {
|
||||||
|
throw Exception(
|
||||||
|
'⚠️ Found ${finder.evaluate().length} "$object" objects. Please specify an index!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (finder.evaluate().length <= index) {
|
||||||
|
throw Exception(
|
||||||
|
'⚠️ Found ${finder.evaluate().length} "$object" objects. So index $index does not exist!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
finder = finder.at(index);
|
||||||
|
}
|
||||||
|
return finder;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> tapOn(Object object, {int? index}) async {
|
||||||
|
final finder = await _ensureVisible(object, index: index);
|
||||||
|
|
||||||
|
_print('👆 Tapping on "$object"');
|
||||||
|
await tester.tap(finder);
|
||||||
|
await tester.pumpAndSettle();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> goBack() => tapOn(find.byTooltip('Back'));
|
||||||
|
|
||||||
|
Future<void> enterText(Object object, String text, {int? index}) async {
|
||||||
|
final finder = await _ensureVisible(object, index: index);
|
||||||
|
|
||||||
|
_print('⌨️ Enter "$text" into "$object"');
|
||||||
|
await tester.enterText(finder, text);
|
||||||
|
FocusManager.instance.primaryFocus?.unfocus();
|
||||||
|
await tester.pumpAndSettle();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> scrollUntilVisible(
|
||||||
|
Object object, {
|
||||||
|
int? index,
|
||||||
|
Object? scrollable,
|
||||||
|
}) async {
|
||||||
|
_print('📜 Scrolling to "$object"');
|
||||||
|
await tester.scrollUntilVisible(
|
||||||
|
object.toFinder(),
|
||||||
|
500.0,
|
||||||
|
scrollable: scrollable?.toFinder() ?? find.byType(Scrollable).last,
|
||||||
|
);
|
||||||
|
await tester.pumpAndSettle();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
extension on Object {
|
||||||
|
Finder toFinder() => switch (this) {
|
||||||
|
final Finder finder => finder,
|
||||||
|
final String string => find.text(string),
|
||||||
|
final Key key => find.byKey(key),
|
||||||
|
final IconData icon => find.byIcon(icon),
|
||||||
|
final Type type => find.byType(type),
|
||||||
|
final Widget widget => find.byWidget(widget),
|
||||||
|
_ => throw Exception('Unsupported finder type: $runtimeType'),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
extension StartTest on WidgetTester {
|
||||||
|
Future<FluffyChatTester> startFluffyChatTest() async {
|
||||||
|
app.main();
|
||||||
|
|
||||||
|
return FluffyChatTester(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -20,7 +20,5 @@
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.0</string>
|
<string>1.0</string>
|
||||||
<key>MinimumOSVersion</key>
|
|
||||||
<string>13.0</string>
|
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
||||||
|
|
@ -7,23 +7,28 @@ GEM
|
||||||
public_suffix (>= 2.0.2, < 6.0)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
artifactory (3.0.15)
|
artifactory (3.0.15)
|
||||||
atomos (0.1.3)
|
atomos (0.1.3)
|
||||||
aws-eventstream (1.1.1)
|
aws-eventstream (1.4.0)
|
||||||
aws-partitions (1.469.0)
|
aws-partitions (1.1213.0)
|
||||||
aws-sdk-core (3.114.3)
|
aws-sdk-core (3.242.0)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-eventstream (~> 1, >= 1.3.0)
|
||||||
aws-partitions (~> 1, >= 1.239.0)
|
aws-partitions (~> 1, >= 1.992.0)
|
||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.9)
|
||||||
jmespath (~> 1.0)
|
base64
|
||||||
aws-sdk-kms (1.44.0)
|
bigdecimal
|
||||||
aws-sdk-core (~> 3, >= 3.112.0)
|
jmespath (~> 1, >= 1.6.1)
|
||||||
aws-sigv4 (~> 1.1)
|
logger
|
||||||
aws-sdk-s3 (1.96.1)
|
aws-sdk-kms (1.121.0)
|
||||||
aws-sdk-core (~> 3, >= 3.112.0)
|
aws-sdk-core (~> 3, >= 3.241.4)
|
||||||
|
aws-sigv4 (~> 1.5)
|
||||||
|
aws-sdk-s3 (1.208.0)
|
||||||
|
aws-sdk-core (~> 3, >= 3.234.0)
|
||||||
aws-sdk-kms (~> 1)
|
aws-sdk-kms (~> 1)
|
||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.5)
|
||||||
aws-sigv4 (1.2.3)
|
aws-sigv4 (1.12.1)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
babosa (1.0.4)
|
babosa (1.0.4)
|
||||||
|
base64 (0.3.0)
|
||||||
|
bigdecimal (4.0.1)
|
||||||
claide (1.0.3)
|
claide (1.0.3)
|
||||||
colored (1.2)
|
colored (1.2)
|
||||||
colored2 (3.1.2)
|
colored2 (3.1.2)
|
||||||
|
|
@ -37,22 +42,32 @@ GEM
|
||||||
dotenv (2.7.6)
|
dotenv (2.7.6)
|
||||||
emoji_regex (3.2.2)
|
emoji_regex (3.2.2)
|
||||||
excon (0.82.0)
|
excon (0.82.0)
|
||||||
faraday (1.4.2)
|
faraday (1.10.5)
|
||||||
faraday-em_http (~> 1.0)
|
faraday-em_http (~> 1.0)
|
||||||
faraday-em_synchrony (~> 1.0)
|
faraday-em_synchrony (~> 1.0)
|
||||||
faraday-excon (~> 1.1)
|
faraday-excon (~> 1.1)
|
||||||
|
faraday-httpclient (~> 1.0)
|
||||||
|
faraday-multipart (~> 1.0)
|
||||||
faraday-net_http (~> 1.0)
|
faraday-net_http (~> 1.0)
|
||||||
faraday-net_http_persistent (~> 1.1)
|
faraday-net_http_persistent (~> 1.0)
|
||||||
multipart-post (>= 1.2, < 3)
|
faraday-patron (~> 1.0)
|
||||||
|
faraday-rack (~> 1.0)
|
||||||
|
faraday-retry (~> 1.0)
|
||||||
ruby2_keywords (>= 0.0.4)
|
ruby2_keywords (>= 0.0.4)
|
||||||
faraday-cookie_jar (0.0.7)
|
faraday-cookie_jar (0.0.7)
|
||||||
faraday (>= 0.8.0)
|
faraday (>= 0.8.0)
|
||||||
http-cookie (~> 1.0.0)
|
http-cookie (~> 1.0.0)
|
||||||
faraday-em_http (1.0.0)
|
faraday-em_http (1.0.0)
|
||||||
faraday-em_synchrony (1.0.0)
|
faraday-em_synchrony (1.0.1)
|
||||||
faraday-excon (1.1.0)
|
faraday-excon (1.1.0)
|
||||||
faraday-net_http (1.0.1)
|
faraday-httpclient (1.0.1)
|
||||||
faraday-net_http_persistent (1.1.0)
|
faraday-multipart (1.2.0)
|
||||||
|
multipart-post (~> 2.0)
|
||||||
|
faraday-net_http (1.0.2)
|
||||||
|
faraday-net_http_persistent (1.2.0)
|
||||||
|
faraday-patron (1.0.0)
|
||||||
|
faraday-rack (1.0.0)
|
||||||
|
faraday-retry (1.0.3)
|
||||||
faraday_middleware (1.0.0)
|
faraday_middleware (1.0.0)
|
||||||
faraday (~> 1.0)
|
faraday (~> 1.0)
|
||||||
fastimage (2.2.4)
|
fastimage (2.2.4)
|
||||||
|
|
@ -141,6 +156,7 @@ GEM
|
||||||
jmespath (1.6.2)
|
jmespath (1.6.2)
|
||||||
json (2.5.1)
|
json (2.5.1)
|
||||||
jwt (2.2.3)
|
jwt (2.2.3)
|
||||||
|
logger (1.7.0)
|
||||||
memoist (0.16.2)
|
memoist (0.16.2)
|
||||||
mini_magick (4.11.0)
|
mini_magick (4.11.0)
|
||||||
mini_mime (1.1.0)
|
mini_mime (1.1.0)
|
||||||
|
|
@ -161,7 +177,7 @@ GEM
|
||||||
retriable (3.1.2)
|
retriable (3.1.2)
|
||||||
rexml (3.4.2)
|
rexml (3.4.2)
|
||||||
rouge (2.0.7)
|
rouge (2.0.7)
|
||||||
ruby2_keywords (0.0.4)
|
ruby2_keywords (0.0.5)
|
||||||
rubyzip (2.3.0)
|
rubyzip (2.3.0)
|
||||||
security (0.1.3)
|
security (0.1.3)
|
||||||
signet (0.15.0)
|
signet (0.15.0)
|
||||||
|
|
|
||||||
|
|
@ -2,15 +2,17 @@ import UIKit
|
||||||
import Flutter
|
import Flutter
|
||||||
|
|
||||||
@main
|
@main
|
||||||
@objc class AppDelegate: FlutterAppDelegate {
|
@objc class AppDelegate: FlutterAppDelegate, FlutterImplicitEngineDelegate {
|
||||||
override func application(
|
override func application(
|
||||||
_ application: UIApplication,
|
_ application: UIApplication,
|
||||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
||||||
) -> Bool {
|
) -> Bool {
|
||||||
GeneratedPluginRegistrant.register(with: self)
|
|
||||||
if #available(iOS 10.0, *) {
|
|
||||||
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
|
|
||||||
}
|
|
||||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) {
|
||||||
|
GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry)
|
||||||
|
|
||||||
|
// From https://pub.dev/packages/flutter_local_notifications#-ios-setup
|
||||||
|
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -112,5 +112,26 @@
|
||||||
<true/>
|
<true/>
|
||||||
<key>UIApplicationSupportsIndirectInputEvents</key>
|
<key>UIApplicationSupportsIndirectInputEvents</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
<key>UIApplicationSceneManifest</key>
|
||||||
|
<dict>
|
||||||
|
<key>UIApplicationSupportsMultipleScenes</key>
|
||||||
|
<false/>
|
||||||
|
<key>UISceneConfigurations</key>
|
||||||
|
<dict>
|
||||||
|
<key>UIWindowSceneSessionRoleApplication</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>UISceneClassName</key>
|
||||||
|
<string>UIWindowScene</string>
|
||||||
|
<key>UISceneDelegateClassName</key>
|
||||||
|
<string>FlutterSceneDelegate</string>
|
||||||
|
<key>UISceneConfigurationName</key>
|
||||||
|
<string>flutter</string>
|
||||||
|
<key>UISceneStoryboardFile</key>
|
||||||
|
<string>Main</string>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
||||||
|
|
@ -17,27 +17,27 @@ abstract class AppConfig {
|
||||||
static const String schemePrefix = 'matrix:';
|
static const String schemePrefix = 'matrix:';
|
||||||
static const String pushNotificationsChannelId = 'fluffychat_push';
|
static const String pushNotificationsChannelId = 'fluffychat_push';
|
||||||
static const String pushNotificationsAppId = 'chat.fluffy.fluffychat';
|
static const String pushNotificationsAppId = 'chat.fluffy.fluffychat';
|
||||||
static const double borderRadius = 18.0;
|
static const double borderRadius = 16.0;
|
||||||
|
static const double spaceBorderRadius = 11.0;
|
||||||
static const double columnWidth = 360.0;
|
static const double columnWidth = 360.0;
|
||||||
|
|
||||||
static const String website = 'https://fluffy.chat';
|
|
||||||
static const String enablePushTutorial =
|
static const String enablePushTutorial =
|
||||||
'https://fluffy.chat/faq/#push_without_google_services';
|
'https://fluffychat.im/faq/#push_without_google_services';
|
||||||
static const String encryptionTutorial =
|
static const String encryptionTutorial =
|
||||||
'https://fluffy.chat/faq/#how_to_use_end_to_end_encryption';
|
'https://fluffychat.im/faq/#how_to_use_end_to_end_encryption';
|
||||||
static const String startChatTutorial =
|
static const String startChatTutorial =
|
||||||
'https://fluffy.chat/faq/#how_do_i_find_other_users';
|
'https://fluffychat.im/faq/#how_do_i_find_other_users';
|
||||||
static const String howDoIGetStickersTutorial =
|
static const String howDoIGetStickersTutorial =
|
||||||
'https://fluffy.chat/faq/#how_do_i_get_stickers';
|
'https://fluffychat.im/faq/#how_do_i_get_stickers';
|
||||||
static const String appId = 'im.fluffychat.FluffyChat';
|
static const String appId = 'im.fluffychat.FluffyChat';
|
||||||
static const String appOpenUrlScheme = 'im.fluffychat';
|
static const String appOpenUrlScheme = 'im.fluffychat';
|
||||||
|
static const String appSsoUrlScheme = 'im.fluffychat.auth';
|
||||||
|
|
||||||
static const String sourceCodeUrl =
|
static const String sourceCodeUrl =
|
||||||
'https://github.com/krille-chan/fluffychat';
|
'https://github.com/krille-chan/fluffychat';
|
||||||
static const String supportUrl =
|
static const String supportUrl =
|
||||||
'https://github.com/krille-chan/fluffychat/issues';
|
'https://github.com/krille-chan/fluffychat/issues';
|
||||||
static const String changelogUrl = 'https://fluffy.chat/en/changelog/';
|
static const String changelogUrl = 'https://fluffy.chat/en/changelog/';
|
||||||
static const String donationUrl = 'https://ko-fi.com/krille';
|
|
||||||
|
|
||||||
static const Set<String> defaultReactions = {'👍', '❤️', '😂', '😮', '😢'};
|
static const Set<String> defaultReactions = {'👍', '❤️', '😂', '😮', '😢'};
|
||||||
|
|
||||||
|
|
@ -49,14 +49,8 @@ abstract class AppConfig {
|
||||||
|
|
||||||
static final Uri homeserverList = Uri(
|
static final Uri homeserverList = Uri(
|
||||||
scheme: 'https',
|
scheme: 'https',
|
||||||
host: 'servers.joinmatrix.org',
|
host: 'raw.githubusercontent.com',
|
||||||
path: 'servers.json',
|
path: 'krille-chan/fluffychat/refs/heads/main/recommended_homeservers.json',
|
||||||
);
|
|
||||||
|
|
||||||
static final Uri privacyUrl = Uri(
|
|
||||||
scheme: 'https',
|
|
||||||
host: 'fluffy.chat',
|
|
||||||
path: '/en/privacy',
|
|
||||||
);
|
);
|
||||||
|
|
||||||
static const String mainIsolatePortName = 'main_isolate';
|
static const String mainIsolatePortName = 'main_isolate';
|
||||||
|
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
abstract class AppEmojis {
|
|
||||||
static const List<String> emojis = [
|
|
||||||
'👍',
|
|
||||||
'😊',
|
|
||||||
'😀',
|
|
||||||
'❤️',
|
|
||||||
'😍',
|
|
||||||
'😘',
|
|
||||||
'😇',
|
|
||||||
'😅',
|
|
||||||
'😭',
|
|
||||||
'😜',
|
|
||||||
'😱',
|
|
||||||
'😆',
|
|
||||||
'😉',
|
|
||||||
'😡',
|
|
||||||
'👋',
|
|
||||||
'🤔',
|
|
||||||
'🙁',
|
|
||||||
'🥳',
|
|
||||||
'😟',
|
|
||||||
'😄',
|
|
||||||
'😁',
|
|
||||||
'🙄',
|
|
||||||
'😂',
|
|
||||||
'🤣',
|
|
||||||
'😌',
|
|
||||||
'😬',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
// ignore: constant_identifier_names
|
// ignore: constant_identifier_names
|
||||||
const String ISRG_X1 = """-----BEGIN CERTIFICATE-----
|
const String ISRG_X1 = '''-----BEGIN CERTIFICATE-----
|
||||||
MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw
|
MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw
|
||||||
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
|
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
|
||||||
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4
|
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4
|
||||||
|
|
@ -29,4 +29,4 @@ oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq
|
||||||
4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA
|
4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA
|
||||||
mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d
|
mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d
|
||||||
emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc=
|
emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc=
|
||||||
-----END CERTIFICATE-----""";
|
-----END CERTIFICATE-----''';
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,5 @@
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
|
|
||||||
import 'package:go_router/go_router.dart';
|
|
||||||
import 'package:matrix/matrix.dart';
|
|
||||||
|
|
||||||
import 'package:fluffychat/config/themes.dart';
|
import 'package:fluffychat/config/themes.dart';
|
||||||
import 'package:fluffychat/pages/archive/archive.dart';
|
import 'package:fluffychat/pages/archive/archive.dart';
|
||||||
import 'package:fluffychat/pages/bootstrap/bootstrap_dialog.dart';
|
import 'package:fluffychat/pages/bootstrap/bootstrap_dialog.dart';
|
||||||
|
|
@ -17,7 +12,7 @@ import 'package:fluffychat/pages/chat_members/chat_members.dart';
|
||||||
import 'package:fluffychat/pages/chat_permissions_settings/chat_permissions_settings.dart';
|
import 'package:fluffychat/pages/chat_permissions_settings/chat_permissions_settings.dart';
|
||||||
import 'package:fluffychat/pages/chat_search/chat_search_page.dart';
|
import 'package:fluffychat/pages/chat_search/chat_search_page.dart';
|
||||||
import 'package:fluffychat/pages/device_settings/device_settings.dart';
|
import 'package:fluffychat/pages/device_settings/device_settings.dart';
|
||||||
import 'package:fluffychat/pages/intro/intro_page.dart';
|
import 'package:fluffychat/pages/intro/intro_page_presenter.dart';
|
||||||
import 'package:fluffychat/pages/invitation_selection/invitation_selection.dart';
|
import 'package:fluffychat/pages/invitation_selection/invitation_selection.dart';
|
||||||
import 'package:fluffychat/pages/login/login.dart';
|
import 'package:fluffychat/pages/login/login.dart';
|
||||||
import 'package:fluffychat/pages/new_group/new_group.dart';
|
import 'package:fluffychat/pages/new_group/new_group.dart';
|
||||||
|
|
@ -39,6 +34,9 @@ import 'package:fluffychat/widgets/layouts/two_column_layout.dart';
|
||||||
import 'package:fluffychat/widgets/log_view.dart';
|
import 'package:fluffychat/widgets/log_view.dart';
|
||||||
import 'package:fluffychat/widgets/matrix.dart';
|
import 'package:fluffychat/widgets/matrix.dart';
|
||||||
import 'package:fluffychat/widgets/share_scaffold_dialog.dart';
|
import 'package:fluffychat/widgets/share_scaffold_dialog.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:go_router/go_router.dart';
|
||||||
|
import 'package:matrix/matrix.dart';
|
||||||
|
|
||||||
abstract class AppRoutes {
|
abstract class AppRoutes {
|
||||||
static FutureOr<String?> loggedInRedirect(
|
static FutureOr<String?> loggedInRedirect(
|
||||||
|
|
@ -68,7 +66,7 @@ abstract class AppRoutes {
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/home',
|
path: '/home',
|
||||||
pageBuilder: (context, state) =>
|
pageBuilder: (context, state) =>
|
||||||
defaultPageBuilder(context, state, const IntroPage()),
|
defaultPageBuilder(context, state, const IntroPagePresenter()),
|
||||||
redirect: loggedInRedirect,
|
redirect: loggedInRedirect,
|
||||||
routes: [
|
routes: [
|
||||||
GoRoute(
|
GoRoute(
|
||||||
|
|
@ -170,14 +168,23 @@ abstract class AppRoutes {
|
||||||
),
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: 'newprivatechat',
|
path: 'newprivatechat',
|
||||||
pageBuilder: (context, state) =>
|
pageBuilder: (context, state) => defaultPageBuilder(
|
||||||
defaultPageBuilder(context, state, const NewPrivateChat()),
|
context,
|
||||||
|
state,
|
||||||
|
NewPrivateChat(
|
||||||
|
key: ValueKey('new_chat_${state.uri.query}'),
|
||||||
|
deeplink: state.uri.queryParameters['deeplink'],
|
||||||
|
),
|
||||||
|
),
|
||||||
redirect: loggedOutRedirect,
|
redirect: loggedOutRedirect,
|
||||||
),
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: 'newgroup',
|
path: 'newgroup',
|
||||||
pageBuilder: (context, state) =>
|
pageBuilder: (context, state) => defaultPageBuilder(
|
||||||
defaultPageBuilder(context, state, const NewGroup()),
|
context,
|
||||||
|
state,
|
||||||
|
NewGroup(spaceId: state.uri.queryParameters['space_id']),
|
||||||
|
),
|
||||||
redirect: loggedOutRedirect,
|
redirect: loggedOutRedirect,
|
||||||
),
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
|
|
@ -185,7 +192,10 @@ abstract class AppRoutes {
|
||||||
pageBuilder: (context, state) => defaultPageBuilder(
|
pageBuilder: (context, state) => defaultPageBuilder(
|
||||||
context,
|
context,
|
||||||
state,
|
state,
|
||||||
const NewGroup(createGroupType: CreateGroupType.space),
|
NewGroup(
|
||||||
|
createGroupType: CreateGroupType.space,
|
||||||
|
spaceId: state.uri.queryParameters['space_id'],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
redirect: loggedOutRedirect,
|
redirect: loggedOutRedirect,
|
||||||
),
|
),
|
||||||
|
|
@ -197,6 +207,7 @@ abstract class AppRoutes {
|
||||||
? TwoColumnLayout(
|
? TwoColumnLayout(
|
||||||
mainView: Settings(key: state.pageKey),
|
mainView: Settings(key: state.pageKey),
|
||||||
sideView: child,
|
sideView: child,
|
||||||
|
hasNavigationRail: false,
|
||||||
)
|
)
|
||||||
: child,
|
: child,
|
||||||
),
|
),
|
||||||
|
|
@ -262,8 +273,11 @@ abstract class AppRoutes {
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: 'addaccount',
|
path: 'addaccount',
|
||||||
redirect: loggedOutRedirect,
|
redirect: loggedOutRedirect,
|
||||||
pageBuilder: (context, state) =>
|
pageBuilder: (context, state) => defaultPageBuilder(
|
||||||
defaultPageBuilder(context, state, const IntroPage()),
|
context,
|
||||||
|
state,
|
||||||
|
const IntroPagePresenter(),
|
||||||
|
),
|
||||||
routes: [
|
routes: [
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: 'sign_in',
|
path: 'sign_in',
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,12 @@
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
import 'package:flutter/foundation.dart';
|
|
||||||
|
|
||||||
import 'package:async/async.dart';
|
import 'package:async/async.dart';
|
||||||
|
import 'package:fluffychat/utils/platform_infos.dart';
|
||||||
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:http/http.dart' as http;
|
import 'package:http/http.dart' as http;
|
||||||
import 'package:matrix/matrix_api_lite/utils/logs.dart';
|
import 'package:matrix/matrix_api_lite/utils/logs.dart';
|
||||||
import 'package:shared_preferences/shared_preferences.dart';
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
|
||||||
import 'package:fluffychat/utils/platform_infos.dart';
|
|
||||||
|
|
||||||
enum AppSettings<T> {
|
enum AppSettings<T> {
|
||||||
textMessageMaxLength<int>('textMessageMaxLength', 16384),
|
textMessageMaxLength<int>('textMessageMaxLength', 16384),
|
||||||
audioRecordingNumChannels<int>('audioRecordingNumChannels', 1),
|
audioRecordingNumChannels<int>('audioRecordingNumChannels', 1),
|
||||||
|
|
@ -37,9 +35,11 @@ enum AppSettings<T> {
|
||||||
sendPublicReadReceipts<bool>('chat.fluffy.send_public_read_receipts', true),
|
sendPublicReadReceipts<bool>('chat.fluffy.send_public_read_receipts', true),
|
||||||
swipeRightToLeftToReply<bool>('chat.fluffy.swipeRightToLeftToReply', true),
|
swipeRightToLeftToReply<bool>('chat.fluffy.swipeRightToLeftToReply', true),
|
||||||
sendOnEnter<bool>('chat.fluffy.send_on_enter', false),
|
sendOnEnter<bool>('chat.fluffy.send_on_enter', false),
|
||||||
showPresences<bool>('chat.fluffy.show_presences', false),
|
showPresences<bool>('chat.fluffy.show_presences', true),
|
||||||
displayNavigationRail<bool>('chat.fluffy.display_navigation_rail', false),
|
displayNavigationRail<bool>('chat.fluffy.display_navigation_rail', false),
|
||||||
experimentalVoip<bool>('chat.fluffy.experimental_voip', false),
|
experimentalVoip<bool>('chat.fluffy.experimental_voip', false),
|
||||||
|
jitsiFeature<bool>('chat.fluffy.enable_jitsi', false),
|
||||||
|
jitsiDomain<String>('chat.fluffy.jitsi_domain', 'meet.jit.si'),
|
||||||
shareKeysWith<String>('chat.fluffy.share_keys_with_2', 'all'),
|
shareKeysWith<String>('chat.fluffy.share_keys_with_2', 'all'),
|
||||||
noEncryptionWarningShown<bool>(
|
noEncryptionWarningShown<bool>(
|
||||||
'chat.fluffy.no_encryption_warning_shown',
|
'chat.fluffy.no_encryption_warning_shown',
|
||||||
|
|
@ -52,7 +52,23 @@ enum AppSettings<T> {
|
||||||
// colorSchemeSeed stored as ARGB int
|
// colorSchemeSeed stored as ARGB int
|
||||||
colorSchemeSeedInt<int>('chat.fluffy.color_scheme_seed', 0xFF5625BA),
|
colorSchemeSeedInt<int>('chat.fluffy.color_scheme_seed', 0xFF5625BA),
|
||||||
emojiSuggestionLocale<String>('emoji_suggestion_locale', ''),
|
emojiSuggestionLocale<String>('emoji_suggestion_locale', ''),
|
||||||
enableSoftLogout<bool>('chat.fluffy.enable_soft_logout', false);
|
enableSoftLogout<bool>('chat.fluffy.enable_soft_logout', false),
|
||||||
|
enableMatrixNativeOIDC<bool>('chat.fluffy.enable_matrix_native_oidc', false),
|
||||||
|
presetHomeserver<String>('chat.fluffy.preset_homeserver', ''),
|
||||||
|
welcomeText<String>('chat.fluffy.welcome_text', ''),
|
||||||
|
website<String>('chat.fluffy.website_url', 'https://fluffychat.im'),
|
||||||
|
logoUrl<String>(
|
||||||
|
'chat.fluffy.logo_url',
|
||||||
|
'https://fluffychat.im/assets/favicon.png',
|
||||||
|
),
|
||||||
|
privacyPolicy<String>(
|
||||||
|
'chat.fluffy.privacy_policy_url',
|
||||||
|
'https://fluffychat.im/en/privacy',
|
||||||
|
),
|
||||||
|
tos<String>('chat.fluffy.tos_url', 'https://fluffychat.im/en/tos'),
|
||||||
|
sendTimelineEventTimeout<int>('chat.fluffy.send_timeline_event_timeout', 15),
|
||||||
|
lastSeenSupportBanner<int>('chat.fluffy.last_seen_support_banner', 0),
|
||||||
|
supportBannerOptOut<bool>('chat.fluffy.support_banner_opt_out', false);
|
||||||
|
|
||||||
final String key;
|
final String key;
|
||||||
final T defaultValue;
|
final T defaultValue;
|
||||||
|
|
@ -62,6 +78,11 @@ enum AppSettings<T> {
|
||||||
static SharedPreferences get store => _store!;
|
static SharedPreferences get store => _store!;
|
||||||
static SharedPreferences? _store;
|
static SharedPreferences? _store;
|
||||||
|
|
||||||
|
static Future<void> reset({bool loadWebConfigFile = true}) async {
|
||||||
|
await AppSettings._store!.clear();
|
||||||
|
await init(loadWebConfigFile: loadWebConfigFile);
|
||||||
|
}
|
||||||
|
|
||||||
static Future<SharedPreferences> init({bool loadWebConfigFile = true}) async {
|
static Future<SharedPreferences> init({bool loadWebConfigFile = true}) async {
|
||||||
if (AppSettings._store != null) return AppSettings.store;
|
if (AppSettings._store != null) return AppSettings.store;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,8 @@
|
||||||
|
import 'package:fluffychat/config/app_config.dart';
|
||||||
|
import 'package:fluffychat/config/setting_keys.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
|
||||||
import 'package:fluffychat/config/setting_keys.dart';
|
|
||||||
import 'app_config.dart';
|
|
||||||
|
|
||||||
abstract class FluffyThemes {
|
abstract class FluffyThemes {
|
||||||
static const double columnWidth = 380.0;
|
static const double columnWidth = 380.0;
|
||||||
|
|
||||||
|
|
@ -74,7 +73,7 @@ abstract class FluffyThemes {
|
||||||
),
|
),
|
||||||
inputDecorationTheme: InputDecorationTheme(
|
inputDecorationTheme: InputDecorationTheme(
|
||||||
border: OutlineInputBorder(
|
border: OutlineInputBorder(
|
||||||
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
|
borderRadius: BorderRadius.circular(AppConfig.borderRadius / 2),
|
||||||
),
|
),
|
||||||
contentPadding: const EdgeInsets.all(12),
|
contentPadding: const EdgeInsets.all(12),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -313,16 +313,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "أكّد",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "اتصل",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "دعيَ المراسل للمجموعة",
|
"contactHasBeenInvitedToTheGroup": "دعيَ المراسل للمجموعة",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -392,33 +382,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}/{month}/{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "لا مجال للعودة، أتأكد تعطيل حسابك؟",
|
"deactivateAccountWarning": "لا مجال للعودة، أتأكد تعطيل حسابك؟",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -484,11 +447,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "اختر صورة ورمزا للانفعالة!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "محادثة فارغة",
|
"emptyChat": "محادثة فارغة",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -518,11 +476,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "أدخل الخادم",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fileName": "اسم الملف",
|
"fileName": "اسم الملف",
|
||||||
"@fileName": {
|
"@fileName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -599,11 +552,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "المُعرّف",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignoredUsers": "المستخدمون المتجاهلون",
|
"ignoredUsers": "المستخدمون المتجاهلون",
|
||||||
"@ignoredUsers": {
|
"@ignoredUsers": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -729,11 +677,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "الرخصة",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "فاتح",
|
"lightTheme": "فاتح",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -939,11 +882,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "أعد الانضمام",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "أزِل",
|
"remove": "أزِل",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -963,11 +901,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "أزل جهازا",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "فك حجبه من المحادثة",
|
"unbanFromChat": "فك حجبه من المحادثة",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -988,15 +921,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "رآه {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "أرسل",
|
"send": "أرسل",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1022,11 +946,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "أرسل الملف الأصلي",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "أرسل فيديو",
|
"sendVideo": "أرسل فيديو",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1086,11 +1005,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setInvitationLink": "عيّن رابط الدعوة",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "عيّن الحالة",
|
"setStatus": "عيّن الحالة",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1216,15 +1130,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 محادثة غير مقروءة} other{{unreadCount} محادثات غير مقروءة}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} و {count} أخرون يكتبون…",
|
"userAndOthersAreTyping": "{username} و {count} أخرون يكتبون…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1344,11 +1249,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "الخلفية:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "تحذير!",
|
"warning": "تحذير!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1384,11 +1284,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "أشخاص",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"scanQrCode": "امسح رمز الاستجابة السريعة",
|
"scanQrCode": "امسح رمز الاستجابة السريعة",
|
||||||
"@scanQrCode": {},
|
"@scanQrCode": {},
|
||||||
"noMatrixServer": "{server1} ليس خادم ماتريكس، بدلًا منه أتريد استخدام {server2}؟",
|
"noMatrixServer": "{server1} ليس خادم ماتريكس، بدلًا منه أتريد استخدام {server2}؟",
|
||||||
|
|
@ -1428,11 +1323,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "تغييرات تخص الأعضاء",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inoffensive": "غير مسيء",
|
"inoffensive": "غير مسيء",
|
||||||
"@inoffensive": {
|
"@inoffensive": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1463,11 +1353,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "انتقل للغرفة الجديدة",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fontSize": "حجم الخط",
|
"fontSize": "حجم الخط",
|
||||||
"@fontSize": {
|
"@fontSize": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1545,16 +1430,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsUserName": "يحوي اسم المستخدم",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsDisplayName": "يحوي الاسم العلني",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"commandMissing": "{command} ليس بأمر.",
|
"commandMissing": "{command} ليس بأمر.",
|
||||||
"@commandMissing": {
|
"@commandMissing": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1641,8 +1516,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "أُضيفت المحادثة الى هذا المساحة",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chatBackup": "النسخ الاحتياطي للمحادثات",
|
"chatBackup": "النسخ الاحتياطي للمحادثات",
|
||||||
"@chatBackup": {
|
"@chatBackup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1770,11 +1643,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "اختر رجاء",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"passwordRecovery": "استعادة كلمة السر",
|
"passwordRecovery": "استعادة كلمة السر",
|
||||||
"@passwordRecovery": {
|
"@passwordRecovery": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1835,26 +1703,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "الإشعارات مفعلة لهذا الحساب",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"spaceIsPublic": "عام في المساحة",
|
"spaceIsPublic": "عام في المساحة",
|
||||||
"@spaceIsPublic": {
|
"@spaceIsPublic": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "بدّل حالة التفضيل",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "علّمه كمقروء/غير مقروء",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unavailable": "غير متوفر",
|
"unavailable": "غير متوفر",
|
||||||
"@unavailable": {
|
"@unavailable": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1870,16 +1723,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "تسجيل دخول أحادي",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "بدّل حالة الكتم",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"showPassword": "أظهر كلمة السر",
|
"showPassword": "أظهر كلمة السر",
|
||||||
"@showPassword": {
|
"@showPassword": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1945,11 +1788,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "رسائل البوت",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendAsText": "أرسل نصًا",
|
"sendAsText": "أرسل نصًا",
|
||||||
"@sendAsText": {
|
"@sendAsText": {
|
||||||
"type": "String"
|
"type": "String"
|
||||||
|
|
@ -1959,11 +1797,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "دعوات لي",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"replaceRoomWithNewerVersion": "استبدل الغرفة باصدار أحدث",
|
"replaceRoomWithNewerVersion": "استبدل الغرفة باصدار أحدث",
|
||||||
"@replaceRoomWithNewerVersion": {
|
"@replaceRoomWithNewerVersion": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1979,26 +1812,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "أرسل ملصقًا",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"defaultPermissionLevel": "مستوى الأذونات الافتراضية للمستخدمين الجدد",
|
"defaultPermissionLevel": "مستوى الأذونات الافتراضية للمستخدمين الجدد",
|
||||||
"@defaultPermissionLevel": {
|
"@defaultPermissionLevel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setPermissionsLevel": "تعيين مستوى الأذونات",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setCustomEmotes": "عيّن وجوهًا تعبيرية مخصصة",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"oneClientLoggedOut": "أُ خرج أحد العملاء الذي تسختدمها",
|
"oneClientLoggedOut": "أُ خرج أحد العملاء الذي تسختدمها",
|
||||||
"@oneClientLoggedOut": {},
|
"@oneClientLoggedOut": {},
|
||||||
"pleaseEnter4Digits": "أدخل 4 أرقام أو أتركه فارغ لتعطيل القفل.",
|
"pleaseEnter4Digits": "أدخل 4 أرقام أو أتركه فارغ لتعطيل القفل.",
|
||||||
|
|
@ -2079,18 +1897,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "يدعم الخادم الرئيسي المستخدم إصدارات المواصفات:\n{serverVersions}\nلكن هذا التطبيق يدعم فقط:\n{supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"offensive": "عدواني",
|
"offensive": "عدواني",
|
||||||
"@offensive": {
|
"@offensive": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2142,17 +1948,6 @@
|
||||||
"@videoCallsBetaWarning": {},
|
"@videoCallsBetaWarning": {},
|
||||||
"placeCall": "إجراء مكالمة",
|
"placeCall": "إجراء مكالمة",
|
||||||
"@placeCall": {},
|
"@placeCall": {},
|
||||||
"videoWithSize": "فيديو ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"emailOrUsername": "البريد الإلكتروني أو اسم المستخدم",
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"dismiss": "رفض",
|
"dismiss": "رفض",
|
||||||
"@dismiss": {},
|
"@dismiss": {},
|
||||||
"setAsCanonicalAlias": "تعيين كاسم مستعار رئيسي",
|
"setAsCanonicalAlias": "تعيين كاسم مستعار رئيسي",
|
||||||
|
|
@ -2189,17 +1984,8 @@
|
||||||
},
|
},
|
||||||
"markAsRead": "حدد كمقروء",
|
"markAsRead": "حدد كمقروء",
|
||||||
"@markAsRead": {},
|
"@markAsRead": {},
|
||||||
"openVideoCamera": "افتح الكاميرا لمقطع فيديو",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"start": "إبدأ",
|
"start": "إبدأ",
|
||||||
"@start": {},
|
"@start": {},
|
||||||
"publish": "انشر",
|
|
||||||
"@publish": {},
|
|
||||||
"addToSpaceDescription": "إختر مساحة لإضافة هذه المحادثة إليها.",
|
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"reportUser": "التبيلغ عن المستخدم",
|
"reportUser": "التبيلغ عن المستخدم",
|
||||||
"@reportUser": {},
|
"@reportUser": {},
|
||||||
"openChat": "فتح المحادثة",
|
"openChat": "فتح المحادثة",
|
||||||
|
|
@ -2230,8 +2016,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"widgetVideo": "فيديو",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"recoveryKeyLost": "هل فقدت مفتاح الاسترداد؟",
|
"recoveryKeyLost": "هل فقدت مفتاح الاسترداد؟",
|
||||||
"@recoveryKeyLost": {},
|
"@recoveryKeyLost": {},
|
||||||
"pleaseEnterRecoveryKeyDescription": "لإلغاء قفل رسائلك القديمة ، يرجى إدخال مفتاح الاسترداد الذي تم إنشاؤه في جلسة سابقة. مفتاح الاسترداد ليس كلمة المرور الخاصة بك.",
|
"pleaseEnterRecoveryKeyDescription": "لإلغاء قفل رسائلك القديمة ، يرجى إدخال مفتاح الاسترداد الذي تم إنشاؤه في جلسة سابقة. مفتاح الاسترداد ليس كلمة المرور الخاصة بك.",
|
||||||
|
|
@ -2247,8 +2031,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"hydrateTor": "مستخدمو تور: استيراد تصدير الجلسة",
|
|
||||||
"@hydrateTor": {},
|
|
||||||
"commandHint_googly": "أرسل بعض عيون googly",
|
"commandHint_googly": "أرسل بعض عيون googly",
|
||||||
"@commandHint_googly": {},
|
"@commandHint_googly": {},
|
||||||
"commandHint_cuddle": "أرسل عناق",
|
"commandHint_cuddle": "أرسل عناق",
|
||||||
|
|
@ -2268,33 +2050,14 @@
|
||||||
"@unlockOldMessages": {},
|
"@unlockOldMessages": {},
|
||||||
"commandHint_markasdm": "وضع علامة على أنها غرفة رسائل مباشرة لمعرف المصفوفة",
|
"commandHint_markasdm": "وضع علامة على أنها غرفة رسائل مباشرة لمعرف المصفوفة",
|
||||||
"@commandHint_markasdm": {},
|
"@commandHint_markasdm": {},
|
||||||
"allRooms": "جميع الدردشات الجماعية",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"dehydrate": "تصدير الجلسة ومسح الجهاز",
|
"dehydrate": "تصدير الجلسة ومسح الجهاز",
|
||||||
"@dehydrate": {},
|
"@dehydrate": {},
|
||||||
"dehydrateWarning": "لا يمكن التراجع عن هذا الإجراء. تأكد من تخزين ملف النسخ الاحتياطي بأمان.",
|
"dehydrateWarning": "لا يمكن التراجع عن هذا الإجراء. تأكد من تخزين ملف النسخ الاحتياطي بأمان.",
|
||||||
"@dehydrateWarning": {},
|
"@dehydrateWarning": {},
|
||||||
"dehydrateTorLong": "بالنسبة لمستخدمي تور ، يوصى بتصدير الجلسة قبل إغلاق النافذة.",
|
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"dehydrateTor": "مستخدمو تور: تصدير الجلسة",
|
|
||||||
"@dehydrateTor": {},
|
|
||||||
"hydrate": "استعادة من ملف النسخ الاحتياطي",
|
"hydrate": "استعادة من ملف النسخ الاحتياطي",
|
||||||
"@hydrate": {},
|
"@hydrate": {},
|
||||||
"pleaseEnterRecoveryKey": "الرجاء إدخال مفتاح الاسترداد:",
|
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"recoveryKey": "مفتاح الاسترداد",
|
"recoveryKey": "مفتاح الاسترداد",
|
||||||
"@recoveryKey": {},
|
"@recoveryKey": {},
|
||||||
"startFirstChat": "ابدأ محادثتك الأولى",
|
|
||||||
"@startFirstChat": {},
|
|
||||||
"widgetCustom": "مُخصّص",
|
|
||||||
"@widgetCustom": {},
|
|
||||||
"widgetNameError": "يرجى تقديم اسم العرض.",
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"errorAddingWidget": "خطأ في إضافة الأداة.",
|
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"youRejectedTheInvitation": "لقد رفضت الدعوة",
|
"youRejectedTheInvitation": "لقد رفضت الدعوة",
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"youJoinedTheChat": "لقد انضممت إلى المحادثة",
|
"youJoinedTheChat": "لقد انضممت إلى المحادثة",
|
||||||
|
|
@ -2343,28 +2106,14 @@
|
||||||
"@foregroundServiceRunning": {},
|
"@foregroundServiceRunning": {},
|
||||||
"screenSharingTitle": "مشاركة الشاشة",
|
"screenSharingTitle": "مشاركة الشاشة",
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"appearOnTop": "يظهر في الأعلى",
|
|
||||||
"@appearOnTop": {},
|
|
||||||
"otherCallingPermissions": "الميكروفون والكاميرا وأذونات FluffyChat الأخرى",
|
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"enterSpace": "أدخل المساحة",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"enterRoom": "أدخل الغرفة",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"deviceKeys": "مفاتيح الجهاز:",
|
"deviceKeys": "مفاتيح الجهاز:",
|
||||||
"@deviceKeys": {},
|
"@deviceKeys": {},
|
||||||
"whyIsThisMessageEncrypted": "لماذا هذه الرسالة غير قابلة للقراءة؟",
|
"whyIsThisMessageEncrypted": "لماذا هذه الرسالة غير قابلة للقراءة؟",
|
||||||
"@whyIsThisMessageEncrypted": {},
|
"@whyIsThisMessageEncrypted": {},
|
||||||
"nextAccount": "الحساب التالي",
|
|
||||||
"@nextAccount": {},
|
|
||||||
"previousAccount": "الحساب السابق",
|
|
||||||
"@previousAccount": {},
|
|
||||||
"encryptThisChat": "تشفير هذه المحادثة",
|
"encryptThisChat": "تشفير هذه المحادثة",
|
||||||
"@encryptThisChat": {},
|
"@encryptThisChat": {},
|
||||||
"screenSharingDetail": "أنت تشارك شاشتك في FuffyChat",
|
"screenSharingDetail": "أنت تشارك شاشتك في FuffyChat",
|
||||||
"@screenSharingDetail": {},
|
"@screenSharingDetail": {},
|
||||||
"hideUnimportantStateEvents": "إخفاء أحداث الحالة غير المهمة",
|
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"newGroup": "مجموعة جديدة",
|
"newGroup": "مجموعة جديدة",
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"youKicked": "👞 لقد ركلت {user}",
|
"youKicked": "👞 لقد ركلت {user}",
|
||||||
|
|
@ -2379,11 +2128,6 @@
|
||||||
"@newSpace": {},
|
"@newSpace": {},
|
||||||
"commandHint_markasgroup": "وضع علامة كمجموعة",
|
"commandHint_markasgroup": "وضع علامة كمجموعة",
|
||||||
"@commandHint_markasgroup": {},
|
"@commandHint_markasgroup": {},
|
||||||
"separateChatTypes": "الدردشات المباشرة والمجموعات المنفصلة",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"hugContent": "{senderName} يعانقك",
|
"hugContent": "{senderName} يعانقك",
|
||||||
"@hugContent": {
|
"@hugContent": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2393,27 +2137,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"hydrateTorLong": "هل قمت بتصدير جلستك الأخيرة على تور؟ قم باستيرادها بسرعة واستمر في المحادثة.",
|
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"widgetUrlError": "هذا ليس عنوان URL صالحًا.",
|
|
||||||
"@widgetUrlError": {},
|
|
||||||
"indexedDbErrorTitle": "مشاكل الوضع الخاص",
|
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"indexedDbErrorLong": "للأسف ، لم يتم تمكين تخزين الرسائل في الوضع الخاص افتراضيا.\nيرجى زيارة\n - حول:التكوين\n - تعيين dom.indexedDB.privateBrowsing.enabled إلى true\nخلاف ذلك ، لا يمكن تشغيل FluffyChat.",
|
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"switchToAccount": "التبديل إلى الحساب {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"addWidget": "إضافة اداة",
|
|
||||||
"@addWidget": {},
|
|
||||||
"widgetEtherpad": "ملاحظة نصية",
|
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"youKickedAndBanned": "🙅 لقد ركلت وحظرت {user}",
|
"youKickedAndBanned": "🙅 لقد ركلت وحظرت {user}",
|
||||||
"@youKickedAndBanned": {
|
"@youKickedAndBanned": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2432,8 +2155,6 @@
|
||||||
},
|
},
|
||||||
"saveKeyManuallyDescription": "احفظ هذا المفتاح يدويا عن طريق تشغيل مربع حوار مشاركة النظام أو الحافظة.",
|
"saveKeyManuallyDescription": "احفظ هذا المفتاح يدويا عن طريق تشغيل مربع حوار مشاركة النظام أو الحافظة.",
|
||||||
"@saveKeyManuallyDescription": {},
|
"@saveKeyManuallyDescription": {},
|
||||||
"widgetJitsi": "اجتماعات جيتسي",
|
|
||||||
"@widgetJitsi": {},
|
|
||||||
"youInvitedUser": "📩 قمت بدعوة {user}",
|
"youInvitedUser": "📩 قمت بدعوة {user}",
|
||||||
"@youInvitedUser": {
|
"@youInvitedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2444,27 +2165,8 @@
|
||||||
},
|
},
|
||||||
"storeInSecureStorageDescription": "قم بتخزين مفتاح الاسترداد في التخزين الآمن لهذا الجهاز.",
|
"storeInSecureStorageDescription": "قم بتخزين مفتاح الاسترداد في التخزين الآمن لهذا الجهاز.",
|
||||||
"@storeInSecureStorageDescription": {},
|
"@storeInSecureStorageDescription": {},
|
||||||
"widgetName": "الاسم",
|
|
||||||
"@widgetName": {},
|
|
||||||
"users": "المستخدمون",
|
"users": "المستخدمون",
|
||||||
"@users": {},
|
"@users": {},
|
||||||
"callingPermissions": "أذونات الاتصال",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"callingAccount": "الاتصال بالحساب",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"callingAccountDetails": "يسمح لـ FluffyChat باستخدام تطبيق android Dialer الأصلي.",
|
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"appearOnTopDetails": "يسمح للتطبيق بالظهور في الأعلى (ليست هناك حاجة إذا قمت بالفعل بإعداد Fluffychat كحساب اتصال)",
|
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"numChats": "{number} الدردشات",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"jump": "قفز",
|
"jump": "قفز",
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"report": "الإبلاغ",
|
"report": "الإبلاغ",
|
||||||
|
|
@ -2506,19 +2208,6 @@
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"readUpToHere": "اقرأ حتى هنا",
|
"readUpToHere": "اقرأ حتى هنا",
|
||||||
"@readUpToHere": {},
|
"@readUpToHere": {},
|
||||||
"signInWithPassword": "سجل الدخول بكلمة السر",
|
|
||||||
"@signInWithPassword": {},
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "رجاء حاول مجددا أو اختر خادما مختلفا.",
|
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"signInWith": "تسجيل الدخول باستخدام {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"importNow": "استيراد الآن",
|
"importNow": "استيراد الآن",
|
||||||
"@importNow": {},
|
"@importNow": {},
|
||||||
"importEmojis": "استيراد الرموز التعبيرية",
|
"importEmojis": "استيراد الرموز التعبيرية",
|
||||||
|
|
@ -2539,14 +2228,8 @@
|
||||||
"@messagesStyle": {},
|
"@messagesStyle": {},
|
||||||
"shareInviteLink": "شارك رابط الدعوة",
|
"shareInviteLink": "شارك رابط الدعوة",
|
||||||
"@shareInviteLink": {},
|
"@shareInviteLink": {},
|
||||||
"profileNotFound": "لا يمكن العثور على المستخدم على الخادم. ربما هناك مشكلة في الاتصال أو المستخدم غير موجود.",
|
|
||||||
"@profileNotFound": {},
|
|
||||||
"setTheme": "تعيين السمة:",
|
|
||||||
"@setTheme": {},
|
|
||||||
"setColorTheme": "تعيين لون السمة:",
|
"setColorTheme": "تعيين لون السمة:",
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"inviteContactToGroupQuestion": "هل تريد دعوة {contact} إلى المحادثة \"{groupName}\"؟?",
|
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"tryAgain": "أعد المحاولة",
|
"tryAgain": "أعد المحاولة",
|
||||||
"@tryAgain": {},
|
"@tryAgain": {},
|
||||||
"redactMessageDescription": "سيتم تنقيح الرسالة لجميع المشاركين في هذه المحادثة. هذا لا يمكن التراجع عنها.",
|
"redactMessageDescription": "سيتم تنقيح الرسالة لجميع المشاركين في هذه المحادثة. هذا لا يمكن التراجع عنها.",
|
||||||
|
|
@ -2576,8 +2259,6 @@
|
||||||
},
|
},
|
||||||
"invite": "دعوة",
|
"invite": "دعوة",
|
||||||
"@invite": {},
|
"@invite": {},
|
||||||
"addChatDescription": "أضف وصفًا للدردشة...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"chatPermissions": "صلاحيات المحادثة",
|
"chatPermissions": "صلاحيات المحادثة",
|
||||||
"@chatPermissions": {},
|
"@chatPermissions": {},
|
||||||
"chatDescription": "وصف المحادثة",
|
"chatDescription": "وصف المحادثة",
|
||||||
|
|
@ -2594,8 +2275,6 @@
|
||||||
"@directChat": {},
|
"@directChat": {},
|
||||||
"inviteGroupChat": "📨 دعوة للمحادثة الجماعية",
|
"inviteGroupChat": "📨 دعوة للمحادثة الجماعية",
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"invitePrivateChat": "📨 دعوة دردشة خاصة",
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"emoteKeyboardNoRecents": "التعبيرات المستخدمة مؤخرًا ستظهر هنا ...",
|
"emoteKeyboardNoRecents": "التعبيرات المستخدمة مؤخرًا ستظهر هنا ...",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2659,8 +2338,6 @@
|
||||||
"@groupName": {},
|
"@groupName": {},
|
||||||
"searchChatsRooms": "ابحث عن #الدردشات، @المستخدمين...",
|
"searchChatsRooms": "ابحث عن #الدردشات، @المستخدمين...",
|
||||||
"@searchChatsRooms": {},
|
"@searchChatsRooms": {},
|
||||||
"startConversation": "بدء محادثة",
|
|
||||||
"@startConversation": {},
|
|
||||||
"commandHint_sendraw": "إرسال جيسون الخام",
|
"commandHint_sendraw": "إرسال جيسون الخام",
|
||||||
"@commandHint_sendraw": {},
|
"@commandHint_sendraw": {},
|
||||||
"wrongRecoveryKey": "عذرًا... لا يبدو أن هذا هو مفتاح الاسترداد الصحيح.",
|
"wrongRecoveryKey": "عذرًا... لا يبدو أن هذا هو مفتاح الاسترداد الصحيح.",
|
||||||
|
|
@ -2685,18 +2362,12 @@
|
||||||
"@passwordIsWrong": {},
|
"@passwordIsWrong": {},
|
||||||
"pleaseEnterYourCurrentPassword": "من فضلك أدخل كلمة السر الحالية",
|
"pleaseEnterYourCurrentPassword": "من فضلك أدخل كلمة السر الحالية",
|
||||||
"@pleaseEnterYourCurrentPassword": {},
|
"@pleaseEnterYourCurrentPassword": {},
|
||||||
"publicLink": "رابط عام",
|
|
||||||
"@publicLink": {},
|
|
||||||
"nothingFound": "لم نجد شيئاً.",
|
"nothingFound": "لم نجد شيئاً.",
|
||||||
"@nothingFound": {},
|
"@nothingFound": {},
|
||||||
"decline": "رفض",
|
|
||||||
"@decline": {},
|
|
||||||
"newPassword": "كلمة المرور الجديدة",
|
"newPassword": "كلمة المرور الجديدة",
|
||||||
"@newPassword": {},
|
"@newPassword": {},
|
||||||
"passwordsDoNotMatch": "كلمات المرور لا تتطابق",
|
"passwordsDoNotMatch": "كلمات المرور لا تتطابق",
|
||||||
"@passwordsDoNotMatch": {},
|
"@passwordsDoNotMatch": {},
|
||||||
"subspace": "مساحة فرعية",
|
|
||||||
"@subspace": {},
|
|
||||||
"select": "اختر",
|
"select": "اختر",
|
||||||
"@select": {},
|
"@select": {},
|
||||||
"pleaseChooseAStrongPassword": "الرجاء اختيار كلمة مرور قوية",
|
"pleaseChooseAStrongPassword": "الرجاء اختيار كلمة مرور قوية",
|
||||||
|
|
@ -2709,18 +2380,6 @@
|
||||||
"@joinSpace": {},
|
"@joinSpace": {},
|
||||||
"searchForUsers": "ابحث عن @users...",
|
"searchForUsers": "ابحث عن @users...",
|
||||||
"@searchForUsers": {},
|
"@searchForUsers": {},
|
||||||
"databaseBuildErrorBody": "غير قادر على بناء قاعدة بيانات SQlite. يحاول التطبيق استخدام قاعدة بيانات قديمة في الوقت الحالي. الرجاء الإبلاغ عن هذا الخطأ للمطورين على {url}. رسالة الخطأ هي: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"initAppError": "حدث خطأ بداخل التطبيق",
|
"initAppError": "حدث خطأ بداخل التطبيق",
|
||||||
"@initAppError": {},
|
"@initAppError": {},
|
||||||
"sessionLostBody": "جلستك مفقودة يرجى إبلاغ المطورين بهذا الخطأ في {url}. رسالة الخطأ هي: {error}",
|
"sessionLostBody": "جلستك مفقودة يرجى إبلاغ المطورين بهذا الخطأ في {url}. رسالة الخطأ هي: {error}",
|
||||||
|
|
@ -2767,14 +2426,6 @@
|
||||||
},
|
},
|
||||||
"transparent": "شفّاف",
|
"transparent": "شفّاف",
|
||||||
"@transparent": {},
|
"@transparent": {},
|
||||||
"youInvitedToBy": "📩 تمت دعوتك عبر الرابط إلى:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"formattedMessagesDescription": "عرض محتوى الرسالة الغنية مثل النص الغامق باستخدام الماركداون.",
|
"formattedMessagesDescription": "عرض محتوى الرسالة الغنية مثل النص الغامق باستخدام الماركداون.",
|
||||||
"@formattedMessagesDescription": {},
|
"@formattedMessagesDescription": {},
|
||||||
"verifyOtherUserDescription": "إذا قمت بالتحقق من مستخدم آخر، فيمكنك التأكد من أنك تعرف من تكتب إليه حقًا. 💪\n\nعند بدء عملية التحقق، سترى أنت والمستخدم الآخر نافذة منبثقة في التطبيق. هناك سترى بعد ذلك سلسلة من الرموز التعبيرية أو الأرقام التي يتعين عليك مقارنتها مع بعضها البعض.\n\nأفضل طريقة للقيام بذلك هي الالتقاء أو بدء مكالمة فيديو. 👭",
|
"verifyOtherUserDescription": "إذا قمت بالتحقق من مستخدم آخر، فيمكنك التأكد من أنك تعرف من تكتب إليه حقًا. 💪\n\nعند بدء عملية التحقق، سترى أنت والمستخدم الآخر نافذة منبثقة في التطبيق. هناك سترى بعد ذلك سلسلة من الرموز التعبيرية أو الأرقام التي يتعين عليك مقارنتها مع بعضها البعض.\n\nأفضل طريقة للقيام بذلك هي الالتقاء أو بدء مكالمة فيديو. 👭",
|
||||||
|
|
@ -2787,15 +2438,6 @@
|
||||||
"@sendReadReceipts": {},
|
"@sendReadReceipts": {},
|
||||||
"verifyOtherDevice": "🔐 التحقق من الجهاز الآخر",
|
"verifyOtherDevice": "🔐 التحقق من الجهاز الآخر",
|
||||||
"@verifyOtherDevice": {},
|
"@verifyOtherDevice": {},
|
||||||
"forwardMessageTo": "هل تريد إعادة توجيه الرسالة إلى {roomName}؟",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendTypingNotificationsDescription": "يستطيع المشاركون الآخرون في المحادثة رؤيتك عند كتابة رسالة جديدة.",
|
"sendTypingNotificationsDescription": "يستطيع المشاركون الآخرون في المحادثة رؤيتك عند كتابة رسالة جديدة.",
|
||||||
"@sendTypingNotificationsDescription": {},
|
"@sendTypingNotificationsDescription": {},
|
||||||
"sendReadReceiptsDescription": "يمكن للمشاركين الآخرين في المحادثة معرفة متى قرأت الرسالة.",
|
"sendReadReceiptsDescription": "يمكن للمشاركين الآخرين في المحادثة معرفة متى قرأت الرسالة.",
|
||||||
|
|
@ -2842,11 +2484,6 @@
|
||||||
"@hidePresences": {},
|
"@hidePresences": {},
|
||||||
"incomingMessages": "الرسائل الواردة",
|
"incomingMessages": "الرسائل الواردة",
|
||||||
"@incomingMessages": {},
|
"@incomingMessages": {},
|
||||||
"presenceStyle": "الحضور:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "إظهار رسائل الحالة من المستخدمين الآخرين",
|
"presencesToggle": "إظهار رسائل الحالة من المستخدمين الآخرين",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2888,8 +2525,6 @@
|
||||||
"@hideInvalidOrUnknownMessageFormats": {},
|
"@hideInvalidOrUnknownMessageFormats": {},
|
||||||
"overview": "نظرة عامة",
|
"overview": "نظرة عامة",
|
||||||
"@overview": {},
|
"@overview": {},
|
||||||
"notifyMeFor": "أعلمني بـ",
|
|
||||||
"@notifyMeFor": {},
|
|
||||||
"passwordRecoverySettings": "إعدادات استعادة كلمة المرور",
|
"passwordRecoverySettings": "إعدادات استعادة كلمة المرور",
|
||||||
"@passwordRecoverySettings": {},
|
"@passwordRecoverySettings": {},
|
||||||
"globalChatId": "معرف المحادثة العامة",
|
"globalChatId": "معرف المحادثة العامة",
|
||||||
|
|
@ -2900,10 +2535,6 @@
|
||||||
"@customEmojisAndStickersBody": {},
|
"@customEmojisAndStickersBody": {},
|
||||||
"hideRedactedMessages": "إخفاء الرسائل المكررة",
|
"hideRedactedMessages": "إخفاء الرسائل المكررة",
|
||||||
"@hideRedactedMessages": {},
|
"@hideRedactedMessages": {},
|
||||||
"hideMemberChangesInPublicChats": "إخفاء تغييرات الأعضاء في الدردشات العامة",
|
|
||||||
"@hideMemberChangesInPublicChats": {},
|
|
||||||
"hideMemberChangesInPublicChatsBody": "لا تظهر في المخطط الزمني للدردشة إذا انضم شخص ما إلى محادثة عامة أو غادرها لتحسين إمكانية القراءة.",
|
|
||||||
"@hideMemberChangesInPublicChatsBody": {},
|
|
||||||
"usersMustKnock": "المستخدم يجب أن يطرق الباب",
|
"usersMustKnock": "المستخدم يجب أن يطرق الباب",
|
||||||
"@usersMustKnock": {},
|
"@usersMustKnock": {},
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "يمكن اكتشاف الشات عن طريق البحث في {server}",
|
"chatCanBeDiscoveredViaSearchOnServer": "يمكن اكتشاف الشات عن طريق البحث في {server}",
|
||||||
|
|
@ -2919,16 +2550,6 @@
|
||||||
"@noOneCanJoin": {},
|
"@noOneCanJoin": {},
|
||||||
"knocking": "طرق",
|
"knocking": "طرق",
|
||||||
"@knocking": {},
|
"@knocking": {},
|
||||||
"userWouldLikeToChangeTheChat": "{user} يرغب في الانضمام إلى المحادثة.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "لم يتم بعد إنشاء أي رابط عام",
|
|
||||||
"@noPublicLinkHasBeenCreatedYet": {},
|
|
||||||
"knock": "دق",
|
"knock": "دق",
|
||||||
"@knock": {},
|
"@knock": {},
|
||||||
"thereAreCountUsersBlocked": "يوجد حاليًا {count} من المستخدمين المحظورين.",
|
"thereAreCountUsersBlocked": "يوجد حاليًا {count} من المستخدمين المحظورين.",
|
||||||
|
|
@ -2940,17 +2561,6 @@
|
||||||
"@publicChatAddresses": {},
|
"@publicChatAddresses": {},
|
||||||
"createNewAddress": "إنشاء عنوان جديد",
|
"createNewAddress": "إنشاء عنوان جديد",
|
||||||
"@createNewAddress": {},
|
"@createNewAddress": {},
|
||||||
"userRole": "دور المستخدم",
|
|
||||||
"@userRole": {},
|
|
||||||
"minimumPowerLevel": "{level} هو الحد الأدنى من مستوى الطاقة.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"searchIn": "بحث في {chat}...",
|
"searchIn": "بحث في {chat}...",
|
||||||
"@searchIn": {
|
"@searchIn": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2976,22 +2586,8 @@
|
||||||
"@alwaysUse24HourFormat": {
|
"@alwaysUse24HourFormat": {
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
},
|
},
|
||||||
"countChatsAndCountParticipants": "{chats} دردشات و {participants} مشاركين",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "لم يتم العثور على دردشات...",
|
"noMoreChatsFound": "لم يتم العثور على دردشات...",
|
||||||
"@noMoreChatsFound": {},
|
"@noMoreChatsFound": {},
|
||||||
"joinedChats": "انضم إلى الدردشة",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"unread": "غير المقروءة",
|
"unread": "غير المقروءة",
|
||||||
"@unread": {},
|
"@unread": {},
|
||||||
"space": "المساحة",
|
"space": "المساحة",
|
||||||
|
|
@ -3073,12 +2669,6 @@
|
||||||
"@noChatsFoundHere": {},
|
"@noChatsFoundHere": {},
|
||||||
"loginWithMatrixId": "تسجيل الدخول باستخدام معرف ماتريكس",
|
"loginWithMatrixId": "تسجيل الدخول باستخدام معرف ماتريكس",
|
||||||
"@loginWithMatrixId": {},
|
"@loginWithMatrixId": {},
|
||||||
"discoverHomeservers": "اكتشف الخوادم المنزلية",
|
|
||||||
"@discoverHomeservers": {},
|
|
||||||
"whatIsAHomeserver": "ما هو خادم المنزل ؟",
|
|
||||||
"@whatIsAHomeserver": {},
|
|
||||||
"homeserverDescription": "يتم تخزين جميع بياناتك على خادم المنزل، تمامًا مثل مزود خدمة البريد الإلكتروني. يمكنك اختيار خادم البيت الذي تريد استخدامه، بينما لا يزال بإمكانك التواصل مع الجميع. اعرف المزيد على https://matrix.org.",
|
|
||||||
"@homeserverDescription": {},
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "لا يبدو أنه خادم منزلي متوافق. عنوان URL غير صحيح ؟",
|
"doesNotSeemToBeAValidHomeserver": "لا يبدو أنه خادم منزلي متوافق. عنوان URL غير صحيح ؟",
|
||||||
"@doesNotSeemToBeAValidHomeserver": {},
|
"@doesNotSeemToBeAValidHomeserver": {},
|
||||||
"calculatingFileSize": "جارٍ حساب حجم الملف...",
|
"calculatingFileSize": "جارٍ حساب حجم الملف...",
|
||||||
|
|
@ -3181,7 +2771,5 @@
|
||||||
"previous": "السابق",
|
"previous": "السابق",
|
||||||
"@previous": {},
|
"@previous": {},
|
||||||
"otherPartyNotLoggedIn": "لم يقم الطرف الآخر بتسجيل الدخول حالياً وبالتالي لا يمكنه تلقي الرسائل!",
|
"otherPartyNotLoggedIn": "لم يقم الطرف الآخر بتسجيل الدخول حالياً وبالتالي لا يمكنه تلقي الرسائل!",
|
||||||
"@otherPartyNotLoggedIn": {},
|
"@otherPartyNotLoggedIn": {}
|
||||||
"setCustomPermissionLevel": "حدد مستوى صلاحية مخصص",
|
}
|
||||||
"@setCustomPermissionLevel": {}
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -32,8 +32,6 @@
|
||||||
"@repeatPassword": {},
|
"@repeatPassword": {},
|
||||||
"notAnImage": "ইমেজ ফাইল না।",
|
"notAnImage": "ইমেজ ফাইল না।",
|
||||||
"@notAnImage": {},
|
"@notAnImage": {},
|
||||||
"setCustomPermissionLevel": "কাস্টম অনুমতি লেভেল ঠিক করো",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"admin": "অ্যাডমিস",
|
"admin": "অ্যাডমিস",
|
||||||
"@admin": {
|
"@admin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -69,16 +67,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "নিশ্চিত করো",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "কানেক্ট",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"copy": "অনুলিপি",
|
"copy": "অনুলিপি",
|
||||||
"@copy": {
|
"@copy": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -89,18 +77,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"delete": "অপসারণ",
|
"delete": "অপসারণ",
|
||||||
"@delete": {
|
"@delete": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -161,11 +137,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "পরিচয়",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"invited": "আমন্ত্রিত",
|
"invited": "আমন্ত্রিত",
|
||||||
"@invited": {
|
"@invited": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -181,14 +152,9 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "অনুমতিপত্র (লাইসেন্স)",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"login": "প্রবেশ",
|
"login": "প্রবেশ",
|
||||||
"@login": {
|
"@login": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -27,15 +27,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@obtainingLocation": {
|
"@obtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -45,7 +37,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@widgetVideo": {},
|
|
||||||
"@dismiss": {},
|
"@dismiss": {},
|
||||||
"@unknownDevice": {
|
"@unknownDevice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -68,10 +59,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@inviteContactToGroup": {
|
"@inviteContactToGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -89,7 +76,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"@reply": {
|
"@reply": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -115,7 +101,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /html"
|
"description": "Usage hint for the command /html"
|
||||||
},
|
},
|
||||||
"@widgetJitsi": {},
|
|
||||||
"@youAreNoLongerParticipatingInThisChat": {
|
"@youAreNoLongerParticipatingInThisChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -125,12 +110,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@messageType": {},
|
"@messageType": {},
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"@oneClientLoggedOut": {},
|
"@oneClientLoggedOut": {},
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@unsupportedAndroidVersionLong": {},
|
"@unsupportedAndroidVersionLong": {},
|
||||||
"@kicked": {
|
"@kicked": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -172,8 +152,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@startFirstChat": {},
|
|
||||||
"@callingAccount": {},
|
|
||||||
"@requestPermission": {
|
"@requestPermission": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -202,15 +180,10 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"@nextAccount": {},
|
|
||||||
"@commandHint_create": {
|
"@commandHint_create": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /create"
|
"description": "Usage hint for the command /create"
|
||||||
},
|
},
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -312,7 +285,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"@waitingPartnerAcceptRequest": {
|
"@waitingPartnerAcceptRequest": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -353,10 +325,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@tryAgain": {},
|
"@tryAgain": {},
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -373,21 +341,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@unbanUserDescription": {},
|
"@unbanUserDescription": {},
|
||||||
"@userAndUserAreTyping": {
|
"@userAndUserAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -422,7 +375,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"@messagesStyle": {},
|
"@messagesStyle": {},
|
||||||
"@couldNotDecryptMessage": {
|
"@couldNotDecryptMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -437,11 +389,8 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@link": {},
|
"@link": {},
|
||||||
"@widgetUrlError": {},
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"@newSpaceDescription": {},
|
"@newSpaceDescription": {},
|
||||||
"@chatDescription": {},
|
"@chatDescription": {},
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"@next": {
|
"@next": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -458,25 +407,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@editRoomAliases": {
|
"@editRoomAliases": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@enterSpace": {},
|
|
||||||
"@encryptThisChat": {},
|
"@encryptThisChat": {},
|
||||||
"@fileName": {
|
"@fileName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -486,7 +420,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@previousAccount": {},
|
|
||||||
"@publicRooms": {
|
"@publicRooms": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -503,20 +436,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@reopenChat": {},
|
"@reopenChat": {},
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"@create": {
|
"@create": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@no": {
|
"@no": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -525,7 +449,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@widgetNameError": {},
|
|
||||||
"@inoffensive": {
|
"@inoffensive": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -543,7 +466,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@addWidget": {},
|
|
||||||
"@all": {
|
"@all": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -596,7 +518,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@hydrateTor": {},
|
|
||||||
"@pushNotificationsNotAvailable": {},
|
"@pushNotificationsNotAvailable": {},
|
||||||
"@passwordRecovery": {
|
"@passwordRecovery": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -647,7 +568,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@signInWithPassword": {},
|
|
||||||
"@ignoredUsers": {
|
"@ignoredUsers": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -712,10 +632,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@commandHint_clearcache": {
|
"@commandHint_clearcache": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /clearcache"
|
"description": "Usage hint for the command /clearcache"
|
||||||
|
|
@ -739,14 +655,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@whyIsThisMessageEncrypted": {},
|
"@whyIsThisMessageEncrypted": {},
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@rejectedTheInvitation": {
|
"@rejectedTheInvitation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -769,19 +677,11 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@importFromZipFile": {},
|
"@importFromZipFile": {},
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@or": {
|
"@or": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@dehydrateWarning": {},
|
"@dehydrateWarning": {},
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@noOtherDevicesFound": {},
|
"@noOtherDevicesFound": {},
|
||||||
"@whoIsAllowedToJoinThisGroup": {
|
"@whoIsAllowedToJoinThisGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -791,14 +691,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@storeSecurlyOnThisDevice": {},
|
"@storeSecurlyOnThisDevice": {},
|
||||||
"@yourChatBackupHasBeenSetUp": {},
|
"@yourChatBackupHasBeenSetUp": {},
|
||||||
"@chatBackup": {
|
"@chatBackup": {
|
||||||
|
|
@ -862,18 +754,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@username": {
|
"@username": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -896,10 +776,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@changedTheHistoryVisibilityTo": {
|
"@changedTheHistoryVisibilityTo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -932,7 +808,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@callingPermissions": {},
|
|
||||||
"@delete": {
|
"@delete": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -956,18 +831,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@unlockOldMessages": {},
|
"@unlockOldMessages": {},
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@changedTheJoinRulesTo": {
|
"@changedTheJoinRulesTo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1067,10 +930,6 @@
|
||||||
"@sendAsText": {
|
"@sendAsText": {
|
||||||
"type": "String"
|
"type": "String"
|
||||||
},
|
},
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@archiveRoomDescription": {},
|
"@archiveRoomDescription": {},
|
||||||
"@exportEmotePack": {},
|
"@exportEmotePack": {},
|
||||||
"@changedTheChatNameTo": {
|
"@changedTheChatNameTo": {
|
||||||
|
|
@ -1084,22 +943,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@account": {
|
"@account": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@commandInvalid": {
|
"@commandInvalid": {
|
||||||
"type": "String"
|
"type": "String"
|
||||||
},
|
},
|
||||||
|
|
@ -1170,7 +1017,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"@emoteExists": {
|
"@emoteExists": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1213,12 +1059,10 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"@roomHasBeenUpgraded": {
|
"@roomHasBeenUpgraded": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@enterRoom": {},
|
|
||||||
"@enableEmotesGlobally": {
|
"@enableEmotesGlobally": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1276,17 +1120,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@confirmEventUnpin": {},
|
"@confirmEventUnpin": {},
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@youInvitedUser": {
|
"@youInvitedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"user": {
|
"user": {
|
||||||
|
|
@ -1317,10 +1150,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@addToSpace": {},
|
"@addToSpace": {},
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1336,10 +1165,6 @@
|
||||||
"description": "State that {command} is not a valid /command."
|
"description": "State that {command} is not a valid /command."
|
||||||
},
|
},
|
||||||
"@redactMessageDescription": {},
|
"@redactMessageDescription": {},
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@recoveryKey": {},
|
"@recoveryKey": {},
|
||||||
"@redactMessage": {
|
"@redactMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1366,7 +1191,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"@yourPublicKey": {
|
"@yourPublicKey": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1428,10 +1252,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@joinRoom": {
|
"@joinRoom": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1446,9 +1266,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@serverRequiresEmail": {},
|
"@serverRequiresEmail": {},
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"@widgetCustom": {},
|
|
||||||
"@sentCallInformations": {
|
"@sentCallInformations": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1457,7 +1275,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"@googlyEyesContent": {
|
"@googlyEyesContent": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1485,7 +1302,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@addChatDescription": {},
|
|
||||||
"@sentAnAudio": {
|
"@sentAnAudio": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1521,7 +1337,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@publish": {},
|
|
||||||
"@openLinkInBrowser": {},
|
"@openLinkInBrowser": {},
|
||||||
"@clearArchive": {},
|
"@clearArchive": {},
|
||||||
"@appLock": {
|
"@appLock": {
|
||||||
|
|
@ -1569,8 +1384,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"@appearOnTop": {},
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"@verifyTitle": {
|
"@verifyTitle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1606,10 +1419,6 @@
|
||||||
"description": "Usage hint for the command /ban"
|
"description": "Usage hint for the command /ban"
|
||||||
},
|
},
|
||||||
"@importEmojis": {},
|
"@importEmojis": {},
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@wasDirectChatDisplayName": {
|
"@wasDirectChatDisplayName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1660,7 +1469,6 @@
|
||||||
},
|
},
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"@bundleName": {},
|
"@bundleName": {},
|
||||||
"@dehydrateTor": {},
|
|
||||||
"@removeFromSpace": {},
|
"@removeFromSpace": {},
|
||||||
"@dateAndTimeOfDay": {
|
"@dateAndTimeOfDay": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1730,7 +1538,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@profileNotFound": {},
|
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"@groups": {
|
"@groups": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1759,14 +1566,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@sorryThatsNotPossible": {},
|
"@sorryThatsNotPossible": {},
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@oopsSomethingWentWrong": {
|
"@oopsSomethingWentWrong": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1798,10 +1597,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@messages": {
|
"@messages": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1831,10 +1626,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@startedACall": {
|
"@startedACall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1851,10 +1642,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@deleteMessage": {
|
"@deleteMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1867,20 +1654,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setTheme": {},
|
|
||||||
"@changeTheHomeserver": {
|
"@changeTheHomeserver": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@youJoinedTheChat": {},
|
"@youJoinedTheChat": {},
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@play": {
|
"@play": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1914,7 +1692,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@widgetName": {},
|
|
||||||
"@sentASticker": {
|
"@sentASticker": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1923,7 +1700,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"@commandHint_dm": {
|
"@commandHint_dm": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /dm"
|
"description": "Usage hint for the command /dm"
|
||||||
|
|
@ -2003,16 +1779,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@share": {
|
"@share": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@commandHint_googly": {},
|
"@commandHint_googly": {},
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"@createGroup": {},
|
"@createGroup": {},
|
||||||
"@privacy": {
|
"@privacy": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2026,16 +1797,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"@time": {},
|
"@time": {},
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -2070,10 +1832,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@pinMessage": {},
|
"@pinMessage": {},
|
||||||
"@screenSharingDetail": {},
|
"@screenSharingDetail": {},
|
||||||
"@muteChat": {
|
"@muteChat": {
|
||||||
|
|
@ -2090,7 +1848,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"@endedTheCall": {
|
"@endedTheCall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2099,4 +1856,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
6109
lib/l10n/intl_ca.arb
6109
lib/l10n/intl_ca.arb
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,35 +1,133 @@
|
||||||
{
|
{
|
||||||
"repeatPassword": "Gentag password",
|
"repeatPassword": "Gentag password",
|
||||||
"@repeatPassword": {},
|
"notAnImage": "Ikke en billedfil.",
|
||||||
"notAnImage": "Ikke en billedfil.",
|
"ignoreUser": "Ignorér bruger",
|
||||||
"@notAnImage": {},
|
"remove": "Fjern",
|
||||||
"setCustomPermissionLevel": "Indstil særligt tilladelsesniveau",
|
"@remove": {
|
||||||
"@setCustomPermissionLevel": {},
|
"type": "String",
|
||||||
"setPermissionsLevelDescription": "Vælg en prædefineret rolle herunder eller indtaste et særligt tilladelsesniveau mellem 0 og 100.",
|
"placeholders": {}
|
||||||
"@setPermissionsLevelDescription": {},
|
},
|
||||||
"ignoreUser": "Ignorér bruger",
|
"importNow": "Importer nu",
|
||||||
"@ignoreUser": {},
|
"importEmojis": "Importer emojis",
|
||||||
"remove": "Fjern",
|
"importFromZipFile": "Importer fra .zip fil",
|
||||||
"@remove": {
|
"alwaysUse24HourFormat": "true",
|
||||||
"type": "String",
|
"@alwaysUse24HourFormat": {
|
||||||
"placeholders": {}
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
},
|
},
|
||||||
"importNow": "Importer nu",
|
"exportEmotePack": "Eksportér Emote-pakke som .zip-fil",
|
||||||
"@importNow": {},
|
"replace": "Erstat",
|
||||||
"importEmojis": "Importer emojis",
|
"about": "Om",
|
||||||
"@importEmojis": {},
|
"aboutHomeserver": "Om {homeserver}",
|
||||||
"normalUser": "Normal bruger",
|
"@aboutHomeserver": {
|
||||||
"@normalUser": {},
|
"type": "String",
|
||||||
"importFromZipFile": "Importer fra .zip fil",
|
"placeholders": {
|
||||||
"@importFromZipFile": {},
|
"homeserver": {
|
||||||
"alwaysUse24HourFormat": "true",
|
"type": "String"
|
||||||
"@alwaysUse24HourFormat": {
|
}
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
}
|
||||||
},
|
},
|
||||||
"exportEmotePack": "Eksportér Emote-pakke som .zip-fil",
|
"accept": "Acceptér",
|
||||||
"@exportEmotePack": {},
|
"@accept": {
|
||||||
"replace": "Erstat",
|
"type": "String",
|
||||||
"@replace": {},
|
"placeholders": {}
|
||||||
"about": "Om",
|
},
|
||||||
"@about": {}
|
"acceptedTheInvitation": "👍 {username} accepterede invitationen",
|
||||||
}
|
"@acceptedTheInvitation": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"username": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"account": "Konto",
|
||||||
|
"@account": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {}
|
||||||
|
},
|
||||||
|
"activatedEndToEndEncryption": "🔐 {username} aktiverede end-to-end kryptering",
|
||||||
|
"@activatedEndToEndEncryption": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"username": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"addEmail": "Tilføj e-mail",
|
||||||
|
"@addEmail": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {}
|
||||||
|
},
|
||||||
|
"confirmMatrixId": "Bekræft din Matrix-ID for at slette din konto.",
|
||||||
|
"supposedMxid": "Den burde være {mxid}",
|
||||||
|
"@supposedMxid": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"mxid": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"addToSpace": "Tilføj til gruppe",
|
||||||
|
"admin": "Admin",
|
||||||
|
"@admin": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {}
|
||||||
|
},
|
||||||
|
"alias": "alias",
|
||||||
|
"@alias": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {}
|
||||||
|
},
|
||||||
|
"allChats": "Alle samtaler",
|
||||||
|
"@allChats": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {}
|
||||||
|
},
|
||||||
|
"commandHint_roomupgrade": "Opgrader dette rum til den givne rumversion",
|
||||||
|
"commandHint_googly": "Send googly-eyes",
|
||||||
|
"commandHint_cuddle": "Send et varmt smil",
|
||||||
|
"commandHint_hug": "Send et kram",
|
||||||
|
"googlyEyesContent": "{senderName} sender dig googly-eyes",
|
||||||
|
"@googlyEyesContent": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"senderName": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cuddleContent": "{senderName} sender dig et varmt smil",
|
||||||
|
"@cuddleContent": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"senderName": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"hugContent": "{senderName} krammer dig",
|
||||||
|
"@hugContent": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"senderName": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"answeredTheCall": "{senderName} svarer på dit opkald",
|
||||||
|
"@answeredTheCall": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"senderName": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"anyoneCanJoin": "Enhver kan deltage",
|
||||||
|
"@anyoneCanJoin": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -87,7 +87,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"areGuestsAllowedToJoin": "Dürfen Gäste beitreten",
|
"areGuestsAllowedToJoin": "Dürfen Gäste teilnehmen?",
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -128,18 +128,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Der Homeserver unterstützt die Spec-Versionen:\n{serverVersions}\nAber diese App unterstützt nur:\n{supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Aus dem Chat verbannen",
|
"banFromChat": "Aus dem Chat verbannen",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -172,11 +160,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Bot-Nachrichten",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -505,31 +488,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Bestätigen",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Verbinden",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kontakt wurde in die Gruppe eingeladen",
|
"contactHasBeenInvitedToTheGroup": "Kontakt wurde in die Gruppe eingeladen",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Enthält Anzeigenamen",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Enthält Benutzernamen",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Der Inhalt wurde den Serveradministratoren gemeldet",
|
"contentHasBeenReported": "Der Inhalt wurde den Serveradministratoren gemeldet",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -609,33 +572,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}.{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}.{month}.{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Dies deaktiviert dein Konto. Es kann nicht rückgängig gemacht werden! Bist du sicher?",
|
"deactivateAccountWarning": "Dies deaktiviert dein Konto. Es kann nicht rückgängig gemacht werden! Bist du sicher?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -741,11 +677,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Wähle ein Emoticon-Kürzel und ein Bild!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Leerer Chat",
|
"emptyChat": "Leerer Chat",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -795,11 +726,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Gib Deinen Homeserver ein",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Fehler beim Suchen des Standortes: {error}",
|
"errorObtainingLocation": "Fehler beim Suchen des Standortes: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -849,11 +775,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Zum neuen Raum wechseln",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Gruppe",
|
"group": "Gruppe",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -925,11 +846,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identität",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Ignorieren",
|
"ignore": "Ignorieren",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -991,11 +907,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Einladung für mich",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} hat Dich zu FluffyChat eingeladen. \n1. Gehe auf fluffychat.im und installiere die App \n2. Melde Dich in der App an \n3. Öffne den Einladungslink: \n {link}",
|
"inviteText": "{username} hat Dich zu FluffyChat eingeladen. \n1. Gehe auf fluffychat.im und installiere die App \n2. Melde Dich in der App an \n3. Öffne den Einladungslink: \n {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1075,11 +986,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Lizenz",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Hell",
|
"lightTheme": "Hell",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1133,11 +1039,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Änderungen der Mitglieder",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Erwähnen",
|
"mention": "Erwähnen",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1233,11 +1134,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Benachrichtigungen für dieses Konto aktiviert",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} Mitglieder schreiben …",
|
"numUsersTyping": "{count} Mitglieder schreiben …",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1337,11 +1233,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Personen",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Bild wählen",
|
"pickImage": "Bild wählen",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1361,11 +1252,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Bitte wählen",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Bitte einen Code festlegen",
|
"pleaseChooseAPasscode": "Bitte einen Code festlegen",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1459,11 +1345,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Wieder beitreten",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Entfernen",
|
"remove": "Entfernen",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1483,11 +1364,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Gerät entfernen",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Verbannung aufheben",
|
"unbanFromChat": "Verbannung aufheben",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1543,15 +1419,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Gelesen von {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Senden",
|
"send": "Senden",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1586,16 +1453,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Sende Original",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Sticker senden",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Sende Video",
|
"sendVideo": "Sende Video",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1660,21 +1517,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Eigene Emoticons einstellen",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Einladungslink festlegen",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Berechtigungsstufe einstellen",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Status ändern",
|
"setStatus": "Status ändern",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1709,12 +1551,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Einmalige Anmeldung",
|
"skip": "Überspringen",
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Überspringe",
|
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1784,21 +1621,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Favorite umschalten",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Stummgeschaltete umschalten",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Markieren als gelesen/ungelesen",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Zu viele Anfragen. Bitte versuche es später noch einmal!",
|
"tooManyRequestsWarning": "Zu viele Anfragen. Bitte versuche es später noch einmal!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1865,15 +1687,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 ungelesene Unterhaltung} other{{unreadCount} ungelesene Unterhaltungen}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} und {count} andere schreiben …",
|
"userAndOthersAreTyping": "{username} und {count} andere schreiben …",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1998,11 +1811,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Hintergrund:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Achtung!",
|
"warning": "Achtung!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2081,7 +1889,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scanQrCode": "QR-Code scannen",
|
"scanQrCode": "QR-Code scannen",
|
||||||
"chatHasBeenAddedToThisSpace": "Chat wurde zum Space hinzugefügt",
|
|
||||||
"autoplayImages": "Animierte Sticker und Emotes automatisch abspielen",
|
"autoplayImages": "Animierte Sticker und Emotes automatisch abspielen",
|
||||||
"@autoplayImages": {
|
"@autoplayImages": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2107,7 +1914,6 @@
|
||||||
"sender": "Absender:in",
|
"sender": "Absender:in",
|
||||||
"openGallery": "Galerie öffnen",
|
"openGallery": "Galerie öffnen",
|
||||||
"removeFromSpace": "Aus dem Space entfernen",
|
"removeFromSpace": "Aus dem Space entfernen",
|
||||||
"addToSpaceDescription": "Wähle einen Space aus, um diesen Chat hinzuzufügen.",
|
|
||||||
"start": "Start",
|
"start": "Start",
|
||||||
"repeatPassword": "Passwort wiederholen",
|
"repeatPassword": "Passwort wiederholen",
|
||||||
"commandHint_dm": "Starte einen direkten Chat\nBenutze --no-encryption, um die Verschlüsselung auszuschalten",
|
"commandHint_dm": "Starte einen direkten Chat\nBenutze --no-encryption, um die Verschlüsselung auszuschalten",
|
||||||
|
|
@ -2130,28 +1936,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /create"
|
"description": "Usage hint for the command /create"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Video aufnehmen",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"publish": "Veröffentlichen",
|
|
||||||
"pinMessage": "An Raum anheften",
|
"pinMessage": "An Raum anheften",
|
||||||
"emojis": "Emojis",
|
"emojis": "Emojis",
|
||||||
"placeCall": "Anruf tätigen",
|
"placeCall": "Anruf tätigen",
|
||||||
"voiceCall": "Sprachanruf",
|
"voiceCall": "Sprachanruf",
|
||||||
"unsupportedAndroidVersion": "Nicht unterstützte Android-Version",
|
"unsupportedAndroidVersion": "Nicht unterstützte Android-Version",
|
||||||
"videoCallsBetaWarning": "Bitte beachte, dass sich Videoanrufe derzeit in der Beta-Phase befinden. Sie funktionieren möglicherweise nicht wie erwartet oder überhaupt nicht auf allen Plattformen.",
|
"videoCallsBetaWarning": "Bitte beachte, dass sich Videoanrufe derzeit in der Beta-Phase befinden. Sie funktionieren möglicherweise nicht wie erwartet oder überhaupt nicht auf allen Plattformen.",
|
||||||
"emailOrUsername": "E-Mail oder Benutzername",
|
|
||||||
"unsupportedAndroidVersionLong": "Diese Funktion erfordert eine neuere Android-Version. Bitte suche nach Updates oder prüfe die Lineage-OS-Unterstützung.",
|
"unsupportedAndroidVersionLong": "Diese Funktion erfordert eine neuere Android-Version. Bitte suche nach Updates oder prüfe die Lineage-OS-Unterstützung.",
|
||||||
"experimentalVideoCalls": "Experimentelle Videoanrufe",
|
"experimentalVideoCalls": "Experimentelle Videoanrufe",
|
||||||
"reactedWith": "{sender} reagierte mit {reaction}",
|
"reactedWith": "{sender} reagierte mit {reaction}",
|
||||||
|
|
@ -2171,31 +1961,6 @@
|
||||||
"openChat": "Chat öffnen",
|
"openChat": "Chat öffnen",
|
||||||
"confirmEventUnpin": "Möchtest du das Ereignis wirklich dauerhaft lösen?",
|
"confirmEventUnpin": "Möchtest du das Ereignis wirklich dauerhaft lösen?",
|
||||||
"dismiss": "Verwerfen",
|
"dismiss": "Verwerfen",
|
||||||
"switchToAccount": "Zu Konto {number} wechseln",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nextAccount": "Nächstes Konto",
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"widgetCustom": "Angepasst",
|
|
||||||
"widgetEtherpad": "Textnotiz",
|
|
||||||
"addWidget": "Widget hinzufügen",
|
|
||||||
"widgetVideo": "Video",
|
|
||||||
"widgetName": "Name",
|
|
||||||
"widgetUrlError": "Das ist keine gültige URL.",
|
|
||||||
"errorAddingWidget": "Fehler beim Hinzufügen des Widgets.",
|
|
||||||
"previousAccount": "Vorheriges Konto",
|
|
||||||
"separateChatTypes": "Separate Direktchats und Gruppen",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"widgetNameError": "Bitte gib einen Anzeigenamen an.",
|
|
||||||
"youKicked": "👞 Du hast {user} rausgeworfen",
|
"youKicked": "👞 Du hast {user} rausgeworfen",
|
||||||
"@youKicked": {
|
"@youKicked": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2263,16 +2028,10 @@
|
||||||
"storeSecurlyOnThisDevice": "Auf diesem Gerät sicher speichern",
|
"storeSecurlyOnThisDevice": "Auf diesem Gerät sicher speichern",
|
||||||
"dehydrate": "Sitzung exportieren und Gerät löschen",
|
"dehydrate": "Sitzung exportieren und Gerät löschen",
|
||||||
"dehydrateWarning": "Diese Aktion kann nicht rückgängig gemacht werden. Stelle sicher, dass du die Sicherungsdatei sicher aufbewahrst.",
|
"dehydrateWarning": "Diese Aktion kann nicht rückgängig gemacht werden. Stelle sicher, dass du die Sicherungsdatei sicher aufbewahrst.",
|
||||||
"dehydrateTor": "TOR-Benutzer: Sitzung exportieren",
|
|
||||||
"dehydrateTorLong": "Für TOR-Benutzer wird empfohlen, die Sitzung zu exportieren, bevor das Fenster geschlossen wird.",
|
|
||||||
"hydrateTor": "TOR-Benutzer: Session-Export importieren",
|
|
||||||
"hydrate": "Aus Sicherungsdatei wiederherstellen",
|
"hydrate": "Aus Sicherungsdatei wiederherstellen",
|
||||||
"indexedDbErrorTitle": "Probleme im Privatmodus",
|
|
||||||
"unlockOldMessages": "Entsperre alte Nachrichten",
|
"unlockOldMessages": "Entsperre alte Nachrichten",
|
||||||
"pleaseEnterRecoveryKeyDescription": "Um deine alten Nachrichten zu entsperren, gib bitte den Wiederherstellungsschlüssel ein, der in einer früheren Sitzung generiert wurde. Dein Wiederherstellungsschlüssel ist NICHT dein Passwort.",
|
"pleaseEnterRecoveryKeyDescription": "Um deine alten Nachrichten zu entsperren, gib bitte den Wiederherstellungsschlüssel ein, der in einer früheren Sitzung generiert wurde. Dein Wiederherstellungsschlüssel ist NICHT dein Passwort.",
|
||||||
"saveKeyManuallyDescription": "Speicher diesen Schlüssel manuell, indem du den Systemfreigabedialog oder die Zwischenablage auslöst.",
|
"saveKeyManuallyDescription": "Speicher diesen Schlüssel manuell, indem du den Systemfreigabedialog oder die Zwischenablage auslöst.",
|
||||||
"hydrateTorLong": "Hast du deine Sitzung das letzte Mal auf TOR exportiert? Importiere sie schnell und chatte weiter.",
|
|
||||||
"pleaseEnterRecoveryKey": "Bitte gib deinen Wiederherstellungsschlüssel ein:",
|
|
||||||
"countFiles": "{count} Dateien",
|
"countFiles": "{count} Dateien",
|
||||||
"@countFiles": {
|
"@countFiles": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2284,7 +2043,6 @@
|
||||||
"users": "Benutzer",
|
"users": "Benutzer",
|
||||||
"storeInSecureStorageDescription": "Speicher den Wiederherstellungsschlüssel im sicheren Speicher dieses Geräts.",
|
"storeInSecureStorageDescription": "Speicher den Wiederherstellungsschlüssel im sicheren Speicher dieses Geräts.",
|
||||||
"storeInAppleKeyChain": "Im Apple KeyChain speichern",
|
"storeInAppleKeyChain": "Im Apple KeyChain speichern",
|
||||||
"indexedDbErrorLong": "Die Nachrichtenspeicherung ist im privaten Modus standardmäßig leider nicht aktiviert.\nBitte besuche\n- about:config\n- Setze dom.indexedDB.privateBrowsing.enabled auf true\nAndernfalls ist es nicht möglich, FluffyChat auszuführen.",
|
|
||||||
"confirmMatrixId": "Bitte bestätigen deine Matrix-ID, um dein Konto zu löschen.",
|
"confirmMatrixId": "Bitte bestätigen deine Matrix-ID, um dein Konto zu löschen.",
|
||||||
"supposedMxid": "das sollte sein {mxid}",
|
"supposedMxid": "das sollte sein {mxid}",
|
||||||
"@supposedMxid": {
|
"@supposedMxid": {
|
||||||
|
|
@ -2297,33 +2055,15 @@
|
||||||
},
|
},
|
||||||
"commandHint_markasdm": "Als Direktnachrichtenraum für die angegebene Matrix-ID markieren",
|
"commandHint_markasdm": "Als Direktnachrichtenraum für die angegebene Matrix-ID markieren",
|
||||||
"commandHint_markasgroup": "Als Gruppe markieren",
|
"commandHint_markasgroup": "Als Gruppe markieren",
|
||||||
"hideUnimportantStateEvents": "Blende unwichtige Zustandsereignisse aus",
|
|
||||||
"doNotShowAgain": "Nicht mehr anzeigen",
|
"doNotShowAgain": "Nicht mehr anzeigen",
|
||||||
"appearOnTopDetails": "Ermöglicht, dass die App oben angezeigt wird (nicht erforderlich, wenn du Fluffychat bereits als Anrufkonto eingerichtet haben)",
|
|
||||||
"noKeyForThisMessage": "Dies kann passieren, wenn die Nachricht gesendet wurde, bevor du dich auf diesem Gerät bei deinem Konto angemeldet hast.\n\nEs ist auch möglich, dass der Absender dein Gerät blockiert hat oder etwas mit der Internetverbindung schief gelaufen ist.\n\nKannst du die Nachricht in einer anderen Sitzung lesen? Dann kannst du die Nachricht davon übertragen! Gehe zu den Einstellungen > Geräte und vergewissere dich, dass sich deine Geräte gegenseitig verifiziert haben. Wenn du den Raum das nächste Mal öffnest und beide Sitzungen im Vordergrund sind, werden die Schlüssel automatisch übertragen.\n\nDu möchtest die Schlüssel beim Abmelden oder Gerätewechsel nicht verlieren? Stelle sicher, dass du das Chat-Backup in den Einstellungen aktiviert hast.",
|
"noKeyForThisMessage": "Dies kann passieren, wenn die Nachricht gesendet wurde, bevor du dich auf diesem Gerät bei deinem Konto angemeldet hast.\n\nEs ist auch möglich, dass der Absender dein Gerät blockiert hat oder etwas mit der Internetverbindung schief gelaufen ist.\n\nKannst du die Nachricht in einer anderen Sitzung lesen? Dann kannst du die Nachricht davon übertragen! Gehe zu den Einstellungen > Geräte und vergewissere dich, dass sich deine Geräte gegenseitig verifiziert haben. Wenn du den Raum das nächste Mal öffnest und beide Sitzungen im Vordergrund sind, werden die Schlüssel automatisch übertragen.\n\nDu möchtest die Schlüssel beim Abmelden oder Gerätewechsel nicht verlieren? Stelle sicher, dass du das Chat-Backup in den Einstellungen aktiviert hast.",
|
||||||
"foregroundServiceRunning": "Diese Benachrichtigung wird angezeigt, wenn der Vordergrunddienst ausgeführt wird.",
|
"foregroundServiceRunning": "Diese Benachrichtigung wird angezeigt, wenn der Vordergrunddienst ausgeführt wird.",
|
||||||
"screenSharingTitle": "Bildschirm teilen",
|
"screenSharingTitle": "Bildschirm teilen",
|
||||||
"callingPermissions": "Anrufberechtigungen",
|
|
||||||
"callingAccount": "Anrufkonto",
|
|
||||||
"callingAccountDetails": "Ermöglicht FluffyChat, die native Android-Dialer-App zu verwenden.",
|
|
||||||
"appearOnTop": "Oben erscheinen",
|
|
||||||
"otherCallingPermissions": "Mikrofon, Kamera und andere FluffyChat-Berechtigungen",
|
|
||||||
"whyIsThisMessageEncrypted": "Warum ist diese Nachricht nicht lesbar?",
|
"whyIsThisMessageEncrypted": "Warum ist diese Nachricht nicht lesbar?",
|
||||||
"newGroup": "Neue Gruppe",
|
"newGroup": "Neue Gruppe",
|
||||||
"newSpace": "Neuer Space",
|
"newSpace": "Neuer Space",
|
||||||
"enterSpace": "Raum betreten",
|
|
||||||
"enterRoom": "Raum betreten",
|
|
||||||
"allSpaces": "Alle Spaces",
|
"allSpaces": "Alle Spaces",
|
||||||
"screenSharingDetail": "Du teilst deinen Bildschirm in FuffyChat",
|
"screenSharingDetail": "Du teilst deinen Bildschirm in FuffyChat",
|
||||||
"numChats": "{number} Chats",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"newSpaceDescription": "Mit Spaces kannst du deine Chats zusammenfassen und private oder öffentliche Communities aufbauen.",
|
"newSpaceDescription": "Mit Spaces kannst du deine Chats zusammenfassen und private oder öffentliche Communities aufbauen.",
|
||||||
"wasDirectChatDisplayName": "Leerer Chat (war {oldDisplayName})",
|
"wasDirectChatDisplayName": "Leerer Chat (war {oldDisplayName})",
|
||||||
"@wasDirectChatDisplayName": {
|
"@wasDirectChatDisplayName": {
|
||||||
|
|
@ -2344,7 +2084,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"startFirstChat": "Starte deinen ersten Chat",
|
|
||||||
"deviceKeys": "Geräteschlüssel:",
|
"deviceKeys": "Geräteschlüssel:",
|
||||||
"commandHint_cuddle": "Umarmung senden",
|
"commandHint_cuddle": "Umarmung senden",
|
||||||
"commandHint_hug": "Umarmung senden",
|
"commandHint_hug": "Umarmung senden",
|
||||||
|
|
@ -2372,11 +2111,6 @@
|
||||||
"reopenChat": "Chat wieder eröffnen",
|
"reopenChat": "Chat wieder eröffnen",
|
||||||
"noBackupWarning": "Achtung! Ohne Aktivierung des Chat-Backups verlierst du den Zugriff auf deine verschlüsselten Nachrichten. Vor dem Ausloggen wird dringend empfohlen, das Chat-Backup zu aktivieren.",
|
"noBackupWarning": "Achtung! Ohne Aktivierung des Chat-Backups verlierst du den Zugriff auf deine verschlüsselten Nachrichten. Vor dem Ausloggen wird dringend empfohlen, das Chat-Backup zu aktivieren.",
|
||||||
"noOtherDevicesFound": "Keine anderen Geräte anwesend",
|
"noOtherDevicesFound": "Keine anderen Geräte anwesend",
|
||||||
"allRooms": "Alle Gruppenchats",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fileHasBeenSavedAt": "Datei wurde gespeichert unter {path}",
|
"fileHasBeenSavedAt": "Datei wurde gespeichert unter {path}",
|
||||||
"@fileHasBeenSavedAt": {
|
"@fileHasBeenSavedAt": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2388,13 +2122,10 @@
|
||||||
},
|
},
|
||||||
"jumpToLastReadMessage": "Zur letzten ungelesenen Nachricht",
|
"jumpToLastReadMessage": "Zur letzten ungelesenen Nachricht",
|
||||||
"readUpToHere": "Bis hier gelesen",
|
"readUpToHere": "Bis hier gelesen",
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Bitte versuche es später noch einmal oder wähle einen anderen Server.",
|
|
||||||
"jump": "Springen",
|
"jump": "Springen",
|
||||||
"openLinkInBrowser": "Link im Browser öffnen",
|
"openLinkInBrowser": "Link im Browser öffnen",
|
||||||
"reportErrorDescription": "😭 Oh nein. Etwas ist schief gelaufen. Wenn du möchtest, kannst du den Bug bei den Entwicklern melden.",
|
"reportErrorDescription": "😭 Oh nein. Etwas ist schief gelaufen. Wenn du möchtest, kannst du den Bug bei den Entwicklern melden.",
|
||||||
"report": "Melden",
|
"report": "Melden",
|
||||||
"signInWithPassword": "Anmelden mit Passwort",
|
|
||||||
"signInWithLabel": "Anmelden mit:",
|
|
||||||
"importNow": "Jetzt importieren",
|
"importNow": "Jetzt importieren",
|
||||||
"importEmojis": "Emojis importieren",
|
"importEmojis": "Emojis importieren",
|
||||||
"importFromZipFile": "Aus ZIP-Datei importieren",
|
"importFromZipFile": "Aus ZIP-Datei importieren",
|
||||||
|
|
@ -2402,10 +2133,8 @@
|
||||||
"notAnImage": "Keine Bilddatei.",
|
"notAnImage": "Keine Bilddatei.",
|
||||||
"replace": "Ersetzen",
|
"replace": "Ersetzen",
|
||||||
"sendTypingNotifications": "Tippbenachrichtigungen senden",
|
"sendTypingNotifications": "Tippbenachrichtigungen senden",
|
||||||
"profileNotFound": "Der Benutzer konnte auf dem Server nicht gefunden werden. Vielleicht gibt es ein Verbindungsproblem oder der Benutzer existiert nicht.",
|
|
||||||
"createGroup": "Gruppe erstellen",
|
"createGroup": "Gruppe erstellen",
|
||||||
"shareInviteLink": "Einladungslink teilen",
|
"shareInviteLink": "Einladungslink teilen",
|
||||||
"inviteContactToGroupQuestion": "Willst du {contact} zum Chat {groupName} einladen?",
|
|
||||||
"tryAgain": "Neuer Versuch",
|
"tryAgain": "Neuer Versuch",
|
||||||
"redactMessageDescription": "Die Nachricht wird für alle Teilnehmer dieses Gesprächs gelöscht. Dies kann nicht rückgängig gemacht werden.",
|
"redactMessageDescription": "Die Nachricht wird für alle Teilnehmer dieses Gesprächs gelöscht. Dies kann nicht rückgängig gemacht werden.",
|
||||||
"redactedBy": "Gelöscht von {username}",
|
"redactedBy": "Gelöscht von {username}",
|
||||||
|
|
@ -2429,7 +2158,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setTheme": "Design festlegen:",
|
|
||||||
"setColorTheme": "Farbdesign einstellen:",
|
"setColorTheme": "Farbdesign einstellen:",
|
||||||
"invite": "Einladen",
|
"invite": "Einladen",
|
||||||
"optionalRedactReason": "(Optional) Grund für die Löschung dieser Nachricht...",
|
"optionalRedactReason": "(Optional) Grund für die Löschung dieser Nachricht...",
|
||||||
|
|
@ -2440,10 +2168,8 @@
|
||||||
"noChatDescriptionYet": "Noch keine Chatbeschreibung vorhanden.",
|
"noChatDescriptionYet": "Noch keine Chatbeschreibung vorhanden.",
|
||||||
"invalidServerName": "Ungültiger Servername",
|
"invalidServerName": "Ungültiger Servername",
|
||||||
"directChat": "Privater Chat",
|
"directChat": "Privater Chat",
|
||||||
"addChatDescription": "Chatbeschreibung hinzufügen ...",
|
|
||||||
"setChatDescription": "Chatbeschreibung festlegen",
|
"setChatDescription": "Chatbeschreibung festlegen",
|
||||||
"inviteGroupChat": "📨 Einladungen zum Gruppenchat",
|
"inviteGroupChat": "📨 Einladungen zum Gruppenchat",
|
||||||
"invitePrivateChat": "📨 Einladungen zum privaten Chat",
|
|
||||||
"invalidInput": "Ungültige Eingabe!",
|
"invalidInput": "Ungültige Eingabe!",
|
||||||
"hasKnocked": "🚪 {user} hat angeklopft",
|
"hasKnocked": "🚪 {user} hat angeklopft",
|
||||||
"@hasKnocked": {
|
"@hasKnocked": {
|
||||||
|
|
@ -2479,7 +2205,6 @@
|
||||||
"kickUserDescription": "Der Benutzer wird aus dem Chat geworfen, aber nicht gebannt. In öffentlichen Chats kann der Benutzer jederzeit wieder beitreten.",
|
"kickUserDescription": "Der Benutzer wird aus dem Chat geworfen, aber nicht gebannt. In öffentlichen Chats kann der Benutzer jederzeit wieder beitreten.",
|
||||||
"blockListDescription": "Du kannst Benutzer blockieren, die dich stören. Von Benutzern auf deiner persönlichen Blocklierliste kannst du keine Nachrichten oder Raumeinladungen mehr erhalten.",
|
"blockListDescription": "Du kannst Benutzer blockieren, die dich stören. Von Benutzern auf deiner persönlichen Blocklierliste kannst du keine Nachrichten oder Raumeinladungen mehr erhalten.",
|
||||||
"createGroupAndInviteUsers": "Gruppe erstellen und Nutzer einladen",
|
"createGroupAndInviteUsers": "Gruppe erstellen und Nutzer einladen",
|
||||||
"startConversation": "Unterhaltung starten",
|
|
||||||
"blockedUsers": "Blockierte Benutzer",
|
"blockedUsers": "Blockierte Benutzer",
|
||||||
"groupCanBeFoundViaSearch": "Gruppe kann über die Suche gefunden werden",
|
"groupCanBeFoundViaSearch": "Gruppe kann über die Suche gefunden werden",
|
||||||
"noUsersFoundWithQuery": "Leider konnte mit \"{query}\" kein Benutzer gefunden werden. Bitte schau nach, ob dir ein Tippfehler unterlaufen ist.",
|
"noUsersFoundWithQuery": "Leider konnte mit \"{query}\" kein Benutzer gefunden werden. Bitte schau nach, ob dir ein Tippfehler unterlaufen ist.",
|
||||||
|
|
@ -2504,12 +2229,9 @@
|
||||||
"publicSpaces": "Öffentliche Spaces",
|
"publicSpaces": "Öffentliche Spaces",
|
||||||
"passwordIsWrong": "Dein eingegebenes Passwort ist falsch",
|
"passwordIsWrong": "Dein eingegebenes Passwort ist falsch",
|
||||||
"pleaseEnterYourCurrentPassword": "Bitte dein aktuelles Passwort eingeben",
|
"pleaseEnterYourCurrentPassword": "Bitte dein aktuelles Passwort eingeben",
|
||||||
"publicLink": "Öffentlicher Link",
|
|
||||||
"nothingFound": "Nichts gefunden ...",
|
"nothingFound": "Nichts gefunden ...",
|
||||||
"decline": "Ablehnen",
|
|
||||||
"newPassword": "Neues Passwort",
|
"newPassword": "Neues Passwort",
|
||||||
"passwordsDoNotMatch": "Passwörter stimmen nicht überein",
|
"passwordsDoNotMatch": "Passwörter stimmen nicht überein",
|
||||||
"subspace": "Sub-Space",
|
|
||||||
"select": "Auswählen",
|
"select": "Auswählen",
|
||||||
"pleaseChooseAStrongPassword": "Bitte wähle ein starkes Passwort",
|
"pleaseChooseAStrongPassword": "Bitte wähle ein starkes Passwort",
|
||||||
"addChatOrSubSpace": "Chat oder Sub-Space hinzufügen",
|
"addChatOrSubSpace": "Chat oder Sub-Space hinzufügen",
|
||||||
|
|
@ -2517,18 +2239,6 @@
|
||||||
"joinSpace": "Space beitreten",
|
"joinSpace": "Space beitreten",
|
||||||
"searchForUsers": "Suche nach @benutzer ...",
|
"searchForUsers": "Suche nach @benutzer ...",
|
||||||
"initAppError": "Beim Starten der App ist ein Fehler aufgetreten",
|
"initAppError": "Beim Starten der App ist ein Fehler aufgetreten",
|
||||||
"databaseBuildErrorBody": "Die SQlite-Datenbank kann nicht erstellt werden. Die App versucht vorerst, die Legacy-Datenbank zu verwenden. Bitte melde diesen Fehler an die Entwickler unter {url}. Die Fehlermeldung lautet: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sessionLostBody": "Die App versucht nun, deine Sitzung aus der Sicherung wiederherzustellen. Bitte melde diesen Fehler an die Entwickler unter {url}. Die Fehlermeldung lautet: {error}",
|
"sessionLostBody": "Die App versucht nun, deine Sitzung aus der Sicherung wiederherzustellen. Bitte melde diesen Fehler an die Entwickler unter {url}. Die Fehlermeldung lautet: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2553,25 +2263,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Du wurdest per Link eingeladen zu:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceipts": "Lesebestätigungen senden",
|
"sendReadReceipts": "Lesebestätigungen senden",
|
||||||
"formattedMessages": "Formatierte Nachrichten",
|
"formattedMessages": "Formatierte Nachrichten",
|
||||||
"forwardMessageTo": "Nachricht weiterleiten an {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendTypingNotificationsDescription": "Andere Teilnehmer in einem Chat können sehen, wenn du eine neue Nachricht tippst.",
|
"sendTypingNotificationsDescription": "Andere Teilnehmer in einem Chat können sehen, wenn du eine neue Nachricht tippst.",
|
||||||
"formattedMessagesDescription": "Formatierte Nachrichteninhalte wie fettgedruckten Text mit Markdown anzeigen.",
|
"formattedMessagesDescription": "Formatierte Nachrichteninhalte wie fettgedruckten Text mit Markdown anzeigen.",
|
||||||
"verifyOtherUser": "🔐 Anderen Benutzer verifizieren",
|
"verifyOtherUser": "🔐 Anderen Benutzer verifizieren",
|
||||||
|
|
@ -2634,11 +2327,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"verifyOtherDeviceDescription": "Wenn du ein anderes Gerät verifizierst, können diese Geräte Schlüssel austauschen, was die Sicherheit insgesamt erhöht. 💪Sobald du eine Verifizierung startest, erscheint ein Pop-up in der App auf beiden Geräten. Dort siehst du dann eine Reihe von Emojis oder Zahlen, die du miteinander vergleichen musst. Am besten hältst du beide Geräte bereit, bevor du die Verifizierung startest. 🤳",
|
"verifyOtherDeviceDescription": "Wenn du ein anderes Gerät verifizierst, können diese Geräte Schlüssel austauschen, was die Sicherheit insgesamt erhöht. 💪Sobald du eine Verifizierung startest, erscheint ein Pop-up in der App auf beiden Geräten. Dort siehst du dann eine Reihe von Emojis oder Zahlen, die du miteinander vergleichen musst. Am besten hältst du beide Geräte bereit, bevor du die Verifizierung startest. 🤳",
|
||||||
"presenceStyle": "Statusmeldungen:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "Status-Nachrichten anderer Benutzer anzeigen",
|
"presencesToggle": "Status-Nachrichten anderer Benutzer anzeigen",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2666,18 +2354,7 @@
|
||||||
"customEmojisAndStickersBody": "Eigene Emojis oder Sticker zur Nutzung im Chat hinzufügen oder teilen.",
|
"customEmojisAndStickersBody": "Eigene Emojis oder Sticker zur Nutzung im Chat hinzufügen oder teilen.",
|
||||||
"globalChatId": "Globale Chat-ID",
|
"globalChatId": "Globale Chat-ID",
|
||||||
"accessAndVisibility": "Zugang und Sichtbarkeit",
|
"accessAndVisibility": "Zugang und Sichtbarkeit",
|
||||||
"hideMemberChangesInPublicChats": "Mitglieder-Änderungen in öffentlichen Chats ausblenden",
|
|
||||||
"accessAndVisibilityDescription": "Wer darf dem Chat beitreten und wie kann der Chat gefunden werden.",
|
"accessAndVisibilityDescription": "Wer darf dem Chat beitreten und wie kann der Chat gefunden werden.",
|
||||||
"hideMemberChangesInPublicChatsBody": "Zeige keine Beitritt- oder Verlassen-Ereignisse von Mitgliedern in der Timeline an, um die Lesbarkeit in öffentlichen Chats zu verbessern.",
|
|
||||||
"userWouldLikeToChangeTheChat": "{user} würde dem Chat gerne beitreten.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Es wurde noch kein öffentlicher Link erstellt",
|
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "Chat kann über die Suche auf {server} gefunden werden",
|
"chatCanBeDiscoveredViaSearchOnServer": "Chat kann über die Suche auf {server} gefunden werden",
|
||||||
"@chatCanBeDiscoveredViaSearchOnServer": {
|
"@chatCanBeDiscoveredViaSearchOnServer": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2694,7 +2371,6 @@
|
||||||
"hideRedactedMessagesBody": "Wenn jemand eine Nachricht schwärzt/löscht, dann wird diese Nachricht im Chat nicht mehr sichtbar sein.",
|
"hideRedactedMessagesBody": "Wenn jemand eine Nachricht schwärzt/löscht, dann wird diese Nachricht im Chat nicht mehr sichtbar sein.",
|
||||||
"hideInvalidOrUnknownMessageFormats": "Ungültige und unbekannte Nachrichten-Formate ausblenden",
|
"hideInvalidOrUnknownMessageFormats": "Ungültige und unbekannte Nachrichten-Formate ausblenden",
|
||||||
"overview": "Übersicht",
|
"overview": "Übersicht",
|
||||||
"notifyMeFor": "Benachrichtige mich für",
|
|
||||||
"passwordRecoverySettings": "Passwort-Wiederherstellungs-Einstellungen",
|
"passwordRecoverySettings": "Passwort-Wiederherstellungs-Einstellungen",
|
||||||
"knock": "Anklopfen",
|
"knock": "Anklopfen",
|
||||||
"knocking": "Klopft",
|
"knocking": "Klopft",
|
||||||
|
|
@ -2706,16 +2382,6 @@
|
||||||
"usersMustKnock": "Benutzer müssen anklopfen",
|
"usersMustKnock": "Benutzer müssen anklopfen",
|
||||||
"noOneCanJoin": "Niemand kann beitreten",
|
"noOneCanJoin": "Niemand kann beitreten",
|
||||||
"createNewAddress": "Neue Adresse erstellen",
|
"createNewAddress": "Neue Adresse erstellen",
|
||||||
"userRole": "Benutzerrolle",
|
|
||||||
"minimumPowerLevel": "{level} is das minimale Power-Level.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"publicChatAddresses": "Öffentliche Chat-Adressen",
|
"publicChatAddresses": "Öffentliche Chat-Adressen",
|
||||||
"gallery": "Galerie",
|
"gallery": "Galerie",
|
||||||
"files": "Dateien",
|
"files": "Dateien",
|
||||||
|
|
@ -2733,7 +2399,6 @@
|
||||||
"searchMore": "Weiter suchen ...",
|
"searchMore": "Weiter suchen ...",
|
||||||
"unread": "Ungelesen",
|
"unread": "Ungelesen",
|
||||||
"noMoreChatsFound": "Keine weiteren Chats gefunden ...",
|
"noMoreChatsFound": "Keine weiteren Chats gefunden ...",
|
||||||
"joinedChats": "Beigetretene Chats",
|
|
||||||
"space": "Space",
|
"space": "Space",
|
||||||
"spaces": "Spaces",
|
"spaces": "Spaces",
|
||||||
"goToSpace": "Geh zum Space: {space}",
|
"goToSpace": "Geh zum Space: {space}",
|
||||||
|
|
@ -2743,18 +2408,6 @@
|
||||||
},
|
},
|
||||||
"markAsUnread": "Als ungelesen markieren",
|
"markAsUnread": "Als ungelesen markieren",
|
||||||
"swipeRightToLeftToReply": "Wische von rechts nach links zum Antworten",
|
"swipeRightToLeftToReply": "Wische von rechts nach links zum Antworten",
|
||||||
"countChatsAndCountParticipants": "{chats} Chats und {participants} Teilnehmer",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"changeGeneralChatSettings": "Allgemeine Chat-Einstellungen ändern",
|
"changeGeneralChatSettings": "Allgemeine Chat-Einstellungen ändern",
|
||||||
"userLevel": "{level} - Benutzer",
|
"userLevel": "{level} - Benutzer",
|
||||||
"@userLevel": {
|
"@userLevel": {
|
||||||
|
|
@ -2810,11 +2463,8 @@
|
||||||
"changelog": "Änderungsprotokoll",
|
"changelog": "Änderungsprotokoll",
|
||||||
"sendCanceled": "Senden abgebrochen",
|
"sendCanceled": "Senden abgebrochen",
|
||||||
"noChatsFoundHere": "Hier wurden noch keine Chats gefunden. Starte einen neuen Chat mit jemandem, indem du die Schaltfläche unten verwenden. ⤵️",
|
"noChatsFoundHere": "Hier wurden noch keine Chats gefunden. Starte einen neuen Chat mit jemandem, indem du die Schaltfläche unten verwenden. ⤵️",
|
||||||
"whatIsAHomeserver": "Was ist ein Homeserver?",
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Scheint kein kompatibler Homeserver zu sein. Falsche URL?",
|
"doesNotSeemToBeAValidHomeserver": "Scheint kein kompatibler Homeserver zu sein. Falsche URL?",
|
||||||
"loginWithMatrixId": "Mit Matrix-ID anmelden",
|
"loginWithMatrixId": "Mit Matrix-ID anmelden",
|
||||||
"discoverHomeservers": "Server suchen",
|
|
||||||
"homeserverDescription": "Alle deine Daten werden auf einem Homeserver gespeichert, so wie bei einem E-Mail Anbieter. Du kannst aussuchen, welchen Homeserver du benutzen willst und kannst trotzdem mit allen kommunizieren. Erfahre mehr auf https://matrix.org.",
|
|
||||||
"sendingAttachment": "Anhang wird gesendet ...",
|
"sendingAttachment": "Anhang wird gesendet ...",
|
||||||
"generatingVideoThumbnail": "Generiere Video-Vorschaubild ...",
|
"generatingVideoThumbnail": "Generiere Video-Vorschaubild ...",
|
||||||
"serverLimitReached": "Server-Limit erreicht! Warte {seconds} Sekunden ...",
|
"serverLimitReached": "Server-Limit erreicht! Warte {seconds} Sekunden ...",
|
||||||
|
|
@ -2892,7 +2542,6 @@
|
||||||
"compress": "Komprimieren",
|
"compress": "Komprimieren",
|
||||||
"supportPage": "Support-Seite",
|
"supportPage": "Support-Seite",
|
||||||
"serverInformation": "Server-Informationen:",
|
"serverInformation": "Server-Informationen:",
|
||||||
"appIntroduction": "Mit FluffyChat kannst du über verschiedene Messenger hinweg mit deinen Freunden chatten. Erfahre mehr dazu auf https://matrix.org oder tippe einfach auf *Fortfahren*.",
|
|
||||||
"newChatRequest": "📩 Neue Chat-Anfrage",
|
"newChatRequest": "📩 Neue Chat-Anfrage",
|
||||||
"synchronizingPleaseWaitCounter": " Synchronisierung… ({percentage}%)",
|
"synchronizingPleaseWaitCounter": " Synchronisierung… ({percentage}%)",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
|
|
@ -3007,9 +2656,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"normalUser": "Normaler Benutzer",
|
|
||||||
"setCustomPermissionLevel": "Benutzerdefinierte Berechtigungsstufe festlegen",
|
|
||||||
"setPermissionsLevelDescription": "Bitte wählen Sie unten eine vordefinierte Rolle aus oder geben Sie eine benutzerdefinierte Berechtigungsstufe zwischen 0 und 100 ein.",
|
|
||||||
"approve": "Genehmigen",
|
"approve": "Genehmigen",
|
||||||
"youHaveKnocked": "Du hast geklopft",
|
"youHaveKnocked": "Du hast geklopft",
|
||||||
"pleaseWaitUntilInvited": "Bitte warte nun, bis dich jemand aus dem Raum auffordert.",
|
"pleaseWaitUntilInvited": "Bitte warte nun, bis dich jemand aus dem Raum auffordert.",
|
||||||
|
|
@ -3023,10 +2669,6 @@
|
||||||
"noMessagesYet": "Noch keine Nachrichten",
|
"noMessagesYet": "Noch keine Nachrichten",
|
||||||
"longPressToRecordVoiceMessage": "Lange drücken, um eine Sprachnachricht aufzunehmen.",
|
"longPressToRecordVoiceMessage": "Lange drücken, um eine Sprachnachricht aufzunehmen.",
|
||||||
"pause": "Pause",
|
"pause": "Pause",
|
||||||
"newSubSpace": "Neuer Sub-Space",
|
|
||||||
"moveToDifferentSpace": "In einen anderen space wechseln",
|
|
||||||
"moveUp": "Nach oben",
|
|
||||||
"moveDown": "Nach unten",
|
|
||||||
"removeFromSpaceDescription": "Der Chat wird aus dem Space entfernt, erscheint aber weiterhin in Ihrer Chatliste.",
|
"removeFromSpaceDescription": "Der Chat wird aus dem Space entfernt, erscheint aber weiterhin in Ihrer Chatliste.",
|
||||||
"countChats": "{chats} Chats",
|
"countChats": "{chats} Chats",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3055,7 +2697,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Spenden",
|
|
||||||
"resume": "Fortsetzen",
|
"resume": "Fortsetzen",
|
||||||
"startedAPoll": "{username} hat eine Umfrage gestartet.",
|
"startedAPoll": "{username} hat eine Umfrage gestartet.",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
|
|
@ -3070,7 +2711,6 @@
|
||||||
"startPoll": "Umfrage starten",
|
"startPoll": "Umfrage starten",
|
||||||
"endPoll": "Umfrage beenden",
|
"endPoll": "Umfrage beenden",
|
||||||
"answersVisible": "Antworten sichtbar",
|
"answersVisible": "Antworten sichtbar",
|
||||||
"answersHidden": "Antworten sind verborgen",
|
|
||||||
"pollQuestion": "Frage",
|
"pollQuestion": "Frage",
|
||||||
"answerOption": "Antwortmöglichkeit",
|
"answerOption": "Antwortmöglichkeit",
|
||||||
"addAnswerOption": "Antwortoption hinzufügen",
|
"addAnswerOption": "Antwortoption hinzufügen",
|
||||||
|
|
@ -3135,5 +2775,36 @@
|
||||||
"logs": "Protokolle",
|
"logs": "Protokolle",
|
||||||
"baseUrl": "Basis-URL",
|
"baseUrl": "Basis-URL",
|
||||||
"advancedConfigs": "Erweiterte Konfigurationen",
|
"advancedConfigs": "Erweiterte Konfigurationen",
|
||||||
"advancedConfigurations": "Erweiterte Konfigurationen"
|
"advancedConfigurations": "Erweiterte Konfigurationen",
|
||||||
|
"signIn": "Anmelden",
|
||||||
|
"createNewAccount": "Neues Konto erstellen",
|
||||||
|
"signUpGreeting": "FluffyChat ist dezentral! Wähle einen Server, auf dem du dein Konto erstellen möchtest, und los geht's!",
|
||||||
|
"signInGreeting": "Du hast bereits ein Konto bei Matrix? Willkommen zurück! Wähle deinen Homeserver aus und melde dich an.",
|
||||||
|
"appIntro": "Mit FluffyChat kannst du mit deinen Freunden chatten. Es ist ein sicherer, dezentralisierter [Matrix]-Messenger! Erfahre mehr auf https://matrix.org wenn du möchtest, oder melde dich einfach an.",
|
||||||
|
"theProcessWasCanceled": "Der Vorgang wurde abgebrochen.",
|
||||||
|
"federationBaseUrl": "Basis-URL der Föderation",
|
||||||
|
"clientWellKnownInformation": "Bekannte Informationen zum Client:",
|
||||||
|
"join": "Beitreten",
|
||||||
|
"searchOrEnterHomeserverAddress": "Homeserver-Adresse suchen oder eingeben",
|
||||||
|
"matrixId": "Matrix ID",
|
||||||
|
"reset": "Zurücksetzen",
|
||||||
|
"setPowerLevel": "Power-Level einstellen",
|
||||||
|
"makeModerator": "Zum Moderator machen",
|
||||||
|
"makeAdmin": "Zum Admin machen",
|
||||||
|
"removeModeratorRights": "Moderatorenrechte entziehen",
|
||||||
|
"removeAdminRights": "Adminrechte entziehen",
|
||||||
|
"powerLevel": "Power-Level",
|
||||||
|
"setPowerLevelDescription": "Die Power-Level legen fest, was ein Mitglied in diesem Raum tun darf und liegen üblicherweise zwischen 0 und 100.",
|
||||||
|
"owner": "Besitzer",
|
||||||
|
"mute": "Stumm",
|
||||||
|
"@mute": {
|
||||||
|
"description": "This should be a very short string because there is not much space in the button!"
|
||||||
|
},
|
||||||
|
"createNewChat": "Neuen Chat erstellen",
|
||||||
|
"supportFluffyChat": "FluffyChat unterstützen",
|
||||||
|
"support": "Unterstützen",
|
||||||
|
"fluffyChatSupportBannerMessage": "FluffyChat braucht DEINE Hilfe!\n❤️❤️❤️\nFluffyChat wird immer kostenlos bleiben, aber Entwicklung und Hosting kosten Geld.\nDie Zukunft des Projekts hängt von deiner Unterstützung ab.",
|
||||||
|
"skipSupportingFluffyChat": "FluffyChat unterstützen überspringen",
|
||||||
|
"iDoNotWantToSupport": "Ich möchte nicht unterstützen",
|
||||||
|
"iAlreadySupportFluffyChat": "I unterstütze FluffyChat bereits"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -136,18 +136,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Ο οικιακός διακομιστής υποστηρίζει τις εκδόσεις Spec:\n{serverVersions}\nΑλλά αυτή η εφαρμογή υποστηρίζει μόνο {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"addToSpace": "Προσθήκη στο χώρο",
|
"addToSpace": "Προσθήκη στο χώρο",
|
||||||
"@addToSpace": {},
|
"@addToSpace": {},
|
||||||
"about": "Σχετικά",
|
"about": "Σχετικά",
|
||||||
|
|
@ -173,8 +161,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addChatDescription": "Πρόσθεσε μια περιγραφή συνομιλίας...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"cancel": "Ακύρωση",
|
"cancel": "Ακύρωση",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -249,11 +235,6 @@
|
||||||
},
|
},
|
||||||
"commandHint_googly": "Στείλε αστεία μάτια",
|
"commandHint_googly": "Στείλε αστεία μάτια",
|
||||||
"@commandHint_googly": {},
|
"@commandHint_googly": {},
|
||||||
"botMessages": "Μηνύματα bot",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"importNow": "Εισαγωγή τώρα",
|
"importNow": "Εισαγωγή τώρα",
|
||||||
"@importNow": {},
|
"@importNow": {},
|
||||||
"anyoneCanJoin": "Οποιοσδήποτε μπορεί να συμμετάσχει",
|
"anyoneCanJoin": "Οποιοσδήποτε μπορεί να συμμετάσχει",
|
||||||
|
|
@ -265,14 +246,8 @@
|
||||||
"@alwaysUse24HourFormat": {
|
"@alwaysUse24HourFormat": {
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
},
|
},
|
||||||
"setCustomPermissionLevel": "Όρισε προσαρμοσμένο επίπεδο άδειας",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"setPermissionsLevelDescription": "Επέλεξε έναν προκαθορισμένο ρόλο παρακάτω ή εισήγαγε ένα προσαρμοσμένο επίπεδο άδειας μεταξύ 0 και 100.",
|
|
||||||
"@setPermissionsLevelDescription": {},
|
|
||||||
"ignoreUser": "Αγνόηση χρήστη",
|
"ignoreUser": "Αγνόηση χρήστη",
|
||||||
"@ignoreUser": {},
|
"@ignoreUser": {},
|
||||||
"normalUser": "Κανονικός χρήστης",
|
|
||||||
"@normalUser": {},
|
|
||||||
"aboutHomeserver": "Σχετικά με {homeserver}",
|
"aboutHomeserver": "Σχετικά με {homeserver}",
|
||||||
"@aboutHomeserver": {
|
"@aboutHomeserver": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -288,18 +263,6 @@
|
||||||
"@appLockDescription": {},
|
"@appLockDescription": {},
|
||||||
"swipeRightToLeftToReply": "Σύρσιμο δεξιά προς αριστερά για απάντηση",
|
"swipeRightToLeftToReply": "Σύρσιμο δεξιά προς αριστερά για απάντηση",
|
||||||
"@swipeRightToLeftToReply": {},
|
"@swipeRightToLeftToReply": {},
|
||||||
"countChatsAndCountParticipants": "{chats} συνομιλίες και {participants} συμμετέχοντες",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "Δεν βρέθηκαν άλλες συνομιλίες...",
|
"noMoreChatsFound": "Δεν βρέθηκαν άλλες συνομιλίες...",
|
||||||
"@noMoreChatsFound": {},
|
"@noMoreChatsFound": {},
|
||||||
"noChatsFoundHere": "Δεν υπάρχουν συνομιλίες ακόμα. Ξεκίνα μια νέα συνομιλία με κάποιον χρησιμοποιώντας το κουμπί παρακάτω. ⤵️",
|
"noChatsFoundHere": "Δεν υπάρχουν συνομιλίες ακόμα. Ξεκίνα μια νέα συνομιλία με κάποιον χρησιμοποιώντας το κουμπί παρακάτω. ⤵️",
|
||||||
|
|
@ -456,8 +419,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"joinedChats": "Συνδεδεμένες συνομιλίες",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"chatBackup": "Αντίγραφο ασφαλείας συνομιλίας",
|
"chatBackup": "Αντίγραφο ασφαλείας συνομιλίας",
|
||||||
"@chatBackup": {
|
"@chatBackup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -468,8 +429,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Η συνομιλία προστέθηκε στο δωμάτιο",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "Συνομιλίες",
|
"chats": "Συνομιλίες",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -500,4 +459,4 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /invite"
|
"description": "Usage hint for the command /invite"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
6297
lib/l10n/intl_en.arb
6297
lib/l10n/intl_en.arb
File diff suppressed because it is too large
Load diff
|
|
@ -123,18 +123,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "La hejmservilo subtenas la jenajn version de la specifaĵo:\n{serverVersions}\nSed ĉi tiu aplikaĵo subtenas nur {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Forbari de babilo",
|
"banFromChat": "Forbari de babilo",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -167,11 +155,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Mesaĝoj de robotoj",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Nuligi",
|
"cancel": "Nuligi",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -496,31 +479,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Konfirmi",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Konektiĝi",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kontakto invitiĝis al la grupo",
|
"contactHasBeenInvitedToTheGroup": "Kontakto invitiĝis al la grupo",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Enhavas prezentan nomon",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Enhavas uzantonomon",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "La enhavo raportiĝis al la administrantoj de la servilo",
|
"contentHasBeenReported": "La enhavo raportiĝis al la administrantoj de la servilo",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -600,33 +563,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}a de la {month}a",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}a de la {month}a de {year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Ĉi tio malaktivigos vian konton de uzanto. Ne eblas tion malfari! Ĉu certe vi certas?",
|
"deactivateAccountWarning": "Ĉi tio malaktivigos vian konton de uzanto. Ne eblas tion malfari! Ĉu certe vi certas?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -732,11 +668,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Vi devas elekti mallongigon de mieneto kaj bildon!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Malplena babilo",
|
"emptyChat": "Malplena babilo",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -786,11 +717,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Enigu vian hejmservilon",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Eraris akirado de loko: {error}",
|
"errorObtainingLocation": "Eraris akirado de loko: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -840,11 +766,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Iri al la nova ĉambro",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Grupo",
|
"group": "Grupo",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -916,11 +837,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identeco",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Malatenti",
|
"ignore": "Malatenti",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -982,11 +898,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Invito por mi",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"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": "{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": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1066,11 +977,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Permesilo",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Hela",
|
"lightTheme": "Hela",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1114,11 +1020,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Ŝanĝoj de anoj",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Mencii",
|
"mention": "Mencii",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1214,11 +1115,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Sciigoj ŝaltiĝis por ĉi tiu konto",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} uzantoj tajpas…",
|
"numUsersTyping": "{count} uzantoj tajpas…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1313,11 +1209,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Personoj",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Elekti bildon",
|
"pickImage": "Elekti bildon",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1337,11 +1228,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Bonvolu elekti",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Bonvolu elekti paskodon",
|
"pleaseChooseAPasscode": "Bonvolu elekti paskodon",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1435,11 +1321,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Ree aliĝi",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Forigi",
|
"remove": "Forigi",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1459,11 +1340,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Forigi aparaton",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Malforbari",
|
"unbanFromChat": "Malforbari",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1519,15 +1395,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Vidita de {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Sendi",
|
"send": "Sendi",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1558,16 +1425,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Sendi originalon",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Sendi glumarkon",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Sendi filmon",
|
"sendVideo": "Sendi filmon",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1632,21 +1489,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Agordi proprajn mienetojn",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Agordi invitan ligilon",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Agordi nivelon de permesoj",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Agordi staton",
|
"setStatus": "Agordi staton",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1681,11 +1523,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Ununura saluto",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Preterpasi",
|
"skip": "Preterpasi",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1756,21 +1593,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Baskuli elstarigon",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Basklui silentigon",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Baskuli legitecon",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Tro multaj petoj. Bonvolu reprovi poste!",
|
"tooManyRequestsWarning": "Tro multaj petoj. Bonvolu reprovi poste!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1837,15 +1659,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 nelegita babilo} other{{unreadCount} nelegitaj babiloj}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} kaj {count} aliaj tajpas…",
|
"userAndOthersAreTyping": "{username} kaj {count} aliaj tajpas…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1970,11 +1783,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Fonbildo",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Averto!",
|
"warning": "Averto!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2061,8 +1869,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /send"
|
"description": "Usage hint for the command /send"
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Babilo aldoniĝis al ĉi tiu aro",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"autoplayImages": "Memage ludi movbildajn glumarkojn kaj mienetojn",
|
"autoplayImages": "Memage ludi movbildajn glumarkojn kaj mienetojn",
|
||||||
"@autoplayImages": {
|
"@autoplayImages": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2074,4 +1880,4 @@
|
||||||
"@homeserver": {},
|
"@homeserver": {},
|
||||||
"sendOnEnter": "Sendi per eniga klavo",
|
"sendOnEnter": "Sendi per eniga klavo",
|
||||||
"@sendOnEnter": {}
|
"@sendOnEnter": {}
|
||||||
}
|
}
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -83,7 +83,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"areGuestsAllowedToJoin": "Kas külalised võivad liituda",
|
"areGuestsAllowedToJoin": "Kas külalised võivad liituda?",
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -98,7 +98,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"askSSSSSign": "Selleks, et teist osapoolt identifitseerivat allkirja anda, palun sisesta oma turvahoidla paroolifraas või taastevõti.",
|
"askSSSSSign": "Selleks, et teist osapoolt identifitseerivat allkirja anda, palun sisesta oma turvahoidla salafraas või taastevõti.",
|
||||||
"@askSSSSSign": {
|
"@askSSSSSign": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -129,18 +129,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "See koduserver toetab Matrixi spetsifikatsioonist järgmisi versioone:\n{serverVersions}\nAga see rakendus toetab vaid järgmisi versioone: {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Keela ligipääs vestlusele",
|
"banFromChat": "Keela ligipääs vestlusele",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -173,11 +161,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Robotite sõnumid",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Katkesta",
|
"cancel": "Katkesta",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -356,7 +339,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"changeTheNameOfTheGroup": "Muuda vestlusrühma nime",
|
"changeTheNameOfTheGroup": "Muuda jututoa nime",
|
||||||
"@changeTheNameOfTheGroup": {
|
"@changeTheNameOfTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -506,31 +489,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Kinnita",
|
"contactHasBeenInvitedToTheGroup": "Sinu kontakt on kutsutud liituma jututoaga",
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Ühenda",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Sinu kontakt on kutsutud liituma vestlusrühma",
|
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Sisaldab kuvatavat nime",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Sisaldab kasutajanime",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Saatsime selle sisu kohta teate koduserveri haldajate",
|
"contentHasBeenReported": "Saatsime selle sisu kohta teate koduserveri haldajate",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -610,33 +573,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}.{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{year}.{month}.{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Järgnevaga eemaldatakse sinu konto kasutusest. Seda tegevust ei saa tagasi pöörata! Kas sa ikka oled kindel?",
|
"deactivateAccountWarning": "Järgnevaga eemaldatakse sinu konto kasutusest. Seda tegevust ei saa tagasi pöörata! Kas sa ikka oled kindel?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -742,11 +678,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Sa pead valima emotsioonitegevuse lühikoodi ja pildi!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Vestlust pole olnud",
|
"emptyChat": "Vestlust pole olnud",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -796,11 +727,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Sisesta oma koduserveri aadress",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Viga asukoha tuvastamisel: {error}",
|
"errorObtainingLocation": "Viga asukoha tuvastamisel: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -850,27 +776,22 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Hakka kasutama uut jututuba",
|
"group": "Jututuba",
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Vestlusrühm",
|
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"groupIsPublic": "Vestlusrühm on avalik",
|
"groupIsPublic": "Jututuba on avalik",
|
||||||
"@groupIsPublic": {
|
"@groupIsPublic": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"groups": "Vestlusrühmad",
|
"groups": "Jututoad",
|
||||||
"@groups": {
|
"@groups": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"groupWith": "Vestlusrühm {displayname} kasutajanimega",
|
"groupWith": "Jututuba {displayname} kasutajanimega",
|
||||||
"@groupWith": {
|
"@groupWith": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -926,11 +847,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identiteet",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Eira",
|
"ignore": "Eira",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -946,7 +862,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"incorrectPassphraseOrKey": "Vigane paroolifraas või taastevõti",
|
"incorrectPassphraseOrKey": "Vigane salafraas või taastevõti",
|
||||||
"@incorrectPassphraseOrKey": {
|
"@incorrectPassphraseOrKey": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -961,7 +877,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteContactToGroup": "Kutsu sõpru ja tuttavaid {groupName} liikmeks",
|
"inviteContactToGroup": "Kutsu sõpru ja tuttavaid {groupName} jututoa liikmeks",
|
||||||
"@inviteContactToGroup": {
|
"@inviteContactToGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -992,11 +908,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Kutse minu jaoks",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} kutsus sind kasutama Matrix'i-põhist suhtlusrakendust FluffyChat. \n1. Ava fluffychat.im ja paigalda FluffyChat'i rakendus \n2. Liitu kasutajaks või logi sisse olemasoleva Matrix'i kasutajakontoga\n3. Ava kutse link: \n {link}",
|
"inviteText": "{username} kutsus sind kasutama Matrix'i-põhist suhtlusrakendust FluffyChat. \n1. Ava fluffychat.im ja paigalda FluffyChat'i rakendus \n2. Liitu kasutajaks või logi sisse olemasoleva Matrix'i kasutajakontoga\n3. Ava kutse link: \n {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1076,11 +987,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Litsents",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Hele",
|
"lightTheme": "Hele",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1134,11 +1040,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Muudatused liikmeskonnas",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Märgi ära",
|
"mention": "Märgi ära",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1246,11 +1147,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Teavitused on sellel kontol kasutusel",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} kasutajat kirjutavad…",
|
"numUsersTyping": "{count} kasutajat kirjutavad…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1325,7 +1221,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"passphraseOrKey": "paroolifraas või taastevõti",
|
"passphraseOrKey": "salafraas või taastevõti",
|
||||||
"@passphraseOrKey": {
|
"@passphraseOrKey": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1350,11 +1246,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Inimesed",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Vali pilt",
|
"pickImage": "Vali pilt",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1374,11 +1265,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Palun vali",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Palun vali rakenduse PIN-kood",
|
"pleaseChooseAPasscode": "Palun vali rakenduse PIN-kood",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1448,7 +1334,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"redactMessage": "Muuda sõnumit",
|
"redactMessage": "Eemalda sõnum",
|
||||||
"@redactMessage": {
|
"@redactMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1472,11 +1358,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Liitu uuesti",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Eemalda",
|
"remove": "Eemalda",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1496,11 +1377,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Eemalda seade",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Eemalda suhtluskeeld",
|
"unbanFromChat": "Eemalda suhtluskeeld",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1556,15 +1432,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Sõnumit nägi {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Saada",
|
"send": "Saada",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1599,16 +1466,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Saada fail muutmata kujul",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Saada kleeps",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Saada videofail",
|
"sendVideo": "Saada videofail",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1673,21 +1530,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Kohanda emotsioonitegevusi",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Tee kutselink",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Seadista õigusi",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Määra olek",
|
"setStatus": "Määra olek",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1722,11 +1564,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Ühekordne sisselogimine",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Jäta vahele",
|
"skip": "Jäta vahele",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1797,21 +1634,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Muuda olekut lemmikuna",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Lülita summutamine sisse või välja",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Märgi loetuks / lugemata",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Liiga palju päringuid. Palun proovi hiljem uuesti!",
|
"tooManyRequestsWarning": "Liiga palju päringuid. Palun proovi hiljem uuesti!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1878,15 +1700,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 lugemata vestlus} other{{unreadCount} lugemata vestlust}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} ja {count} muud kirjutavad…",
|
"userAndOthersAreTyping": "{username} ja {count} muud kirjutavad…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2011,11 +1824,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Taustapilt:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Hoiatus!",
|
"warning": "Hoiatus!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2031,7 +1839,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"whoIsAllowedToJoinThisGroup": "Kes võivad selle vestlusrühmaga liituda",
|
"whoIsAllowedToJoinThisGroup": "Kes võivad selle jututoaga liituda",
|
||||||
"@whoIsAllowedToJoinThisGroup": {
|
"@whoIsAllowedToJoinThisGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -2081,7 +1889,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Lisasime vestluse kogukonda",
|
|
||||||
"addToSpace": "Lisa kogukonda",
|
"addToSpace": "Lisa kogukonda",
|
||||||
"scanQrCode": "Skaneeri QR-koodi",
|
"scanQrCode": "Skaneeri QR-koodi",
|
||||||
"sendOnEnter": "Saada sõnum sisestusklahvi vajutusel",
|
"sendOnEnter": "Saada sõnum sisestusklahvi vajutusel",
|
||||||
|
|
@ -2103,7 +1910,6 @@
|
||||||
"messageType": "Sõnumi tüüp",
|
"messageType": "Sõnumi tüüp",
|
||||||
"sender": "Saatja",
|
"sender": "Saatja",
|
||||||
"openGallery": "Ava galerii",
|
"openGallery": "Ava galerii",
|
||||||
"addToSpaceDescription": "Vali kogukond, kuhu soovid seda vestlust lisada.",
|
|
||||||
"removeFromSpace": "Eemalda kogukonnast",
|
"removeFromSpace": "Eemalda kogukonnast",
|
||||||
"start": "Alusta",
|
"start": "Alusta",
|
||||||
"commandHint_discardsession": "Loobu sessioonist",
|
"commandHint_discardsession": "Loobu sessioonist",
|
||||||
|
|
@ -2121,16 +1927,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /dm"
|
"description": "Usage hint for the command /dm"
|
||||||
},
|
},
|
||||||
"commandHint_create": "Loo tühi vestlusrühm\nKrüptimise keelamiseks kasuta --no-encryption võtit",
|
"commandHint_create": "Loo tühi jututuba\nKrüptimise keelamiseks kasuta --no-encryption võtit",
|
||||||
"@commandHint_create": {
|
"@commandHint_create": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /create"
|
"description": "Usage hint for the command /create"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Tee video",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"markAsRead": "Märgi loetuks",
|
"markAsRead": "Märgi loetuks",
|
||||||
"reportUser": "Teata kasutajast",
|
"reportUser": "Teata kasutajast",
|
||||||
"openChat": "Ava vestlus",
|
"openChat": "Ava vestlus",
|
||||||
|
|
@ -2154,34 +1955,8 @@
|
||||||
"confirmEventUnpin": "Kas sa oled kindel, et tahad esiletõstetud sündmuse jäädavalt eemaldada?",
|
"confirmEventUnpin": "Kas sa oled kindel, et tahad esiletõstetud sündmuse jäädavalt eemaldada?",
|
||||||
"pinMessage": "Tõsta sõnum jututoas esile",
|
"pinMessage": "Tõsta sõnum jututoas esile",
|
||||||
"videoCallsBetaWarning": "Palun arvesta, et videokõned on veel beetajärgus. Nad ei pruugi veel toimida kõikidel platvormidel korrektselt.",
|
"videoCallsBetaWarning": "Palun arvesta, et videokõned on veel beetajärgus. Nad ei pruugi veel toimida kõikidel platvormidel korrektselt.",
|
||||||
"emailOrUsername": "E-posti aadress või kasutajanimi",
|
|
||||||
"experimentalVideoCalls": "Katselised videokõned",
|
"experimentalVideoCalls": "Katselised videokõned",
|
||||||
"unsupportedAndroidVersionLong": "See funktsionaalsus eeldab uuemat Androidi versiooni. Palun kontrolli, kas sinu nutiseadmele leidub süsteemiuuendusi või saaks seal Lineage OSi kasutada.",
|
"unsupportedAndroidVersionLong": "See funktsionaalsus eeldab uuemat Androidi versiooni. Palun kontrolli, kas sinu nutiseadmele leidub süsteemiuuendusi või saaks seal Lineage OSi kasutada.",
|
||||||
"nextAccount": "Järgmine kasutajakonto",
|
|
||||||
"separateChatTypes": "Eraldi vestlused ja jututoad",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorAddingWidget": "Vidina lisamisel tekkis viga.",
|
|
||||||
"widgetNameError": "Palun sisesta kuvatav nimi.",
|
|
||||||
"addWidget": "Lisa vidin",
|
|
||||||
"previousAccount": "Eelmine kasutajakonto",
|
|
||||||
"widgetUrlError": "See pole korrektne URL.",
|
|
||||||
"widgetName": "Nimi",
|
|
||||||
"widgetCustom": "Kohandatud",
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"widgetEtherpad": "Märkmed ja tekstid",
|
|
||||||
"widgetVideo": "Video",
|
|
||||||
"switchToAccount": "Pruugi kasutajakontot # {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"youAcceptedTheInvitation": "👍 Sa võtsid kutse vastu",
|
"youAcceptedTheInvitation": "👍 Sa võtsid kutse vastu",
|
||||||
"youUnbannedUser": "Sa eemaldasid suhtluskeelu kasutajalt {user}",
|
"youUnbannedUser": "Sa eemaldasid suhtluskeelu kasutajalt {user}",
|
||||||
"@youUnbannedUser": {
|
"@youUnbannedUser": {
|
||||||
|
|
@ -2216,15 +1991,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"youRejectedTheInvitation": "Sa lükkasid kutse tagasi",
|
"youRejectedTheInvitation": "Sa lükkasid kutse tagasi",
|
||||||
"youKicked": "👞 Sa müksasid kasutaja {user} välja",
|
"youKicked": "👞 Sa müksasid kasutaja {user} välja",
|
||||||
"@youKicked": {
|
"@youKicked": {
|
||||||
|
|
@ -2250,8 +2016,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"publish": "Avalda",
|
|
||||||
"pleaseEnterRecoveryKey": "Palun sisesta oma taastevõti:",
|
|
||||||
"recoveryKey": "Taastevõti",
|
"recoveryKey": "Taastevõti",
|
||||||
"users": "Kasutajad",
|
"users": "Kasutajad",
|
||||||
"storeInSecureStorageDescription": "Salvesta taastevõti selle seadme turvahoidlas.",
|
"storeInSecureStorageDescription": "Salvesta taastevõti selle seadme turvahoidlas.",
|
||||||
|
|
@ -2271,17 +2035,11 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dehydrate": "Ekspordi sessiooni teave ja kustuta nutiseadmest rakenduse andmed",
|
"dehydrate": "Ekspordi sessiooni teave ja kustuta nutiseadmest rakenduse andmed",
|
||||||
"dehydrateTor": "TOR'i kasutajad: Ekspordi sessioon",
|
|
||||||
"hydrateTor": "TOR'i kasutajatele: impordi viimati eksporditud sessiooni andmed",
|
|
||||||
"hydrateTorLong": "Kui viimati TOR'i võrku kasutasid, siis kas sa eksportisid oma sessiooni andmed? Kui jah, siis impordi nad mugavasti ja jätka suhtlemist.",
|
|
||||||
"indexedDbErrorTitle": "Brauseri privaatse akna kasutamisega seotud asjaolud",
|
|
||||||
"dehydrateWarning": "Seda tegevust ei saa tagasi pöörata. Palun kontrolli, et sa oled varukoopia turvaliselt salvestanud.",
|
"dehydrateWarning": "Seda tegevust ei saa tagasi pöörata. Palun kontrolli, et sa oled varukoopia turvaliselt salvestanud.",
|
||||||
"dehydrateTorLong": "Kui oled TOR'i võrgu kasutaja, siis enne akna sulgemist palun ekspordi viimase sessiooni andmed.",
|
|
||||||
"indexedDbErrorLong": "Privaatse akna puhul andmete salvestamine vaikimisi pole kasutusel.\nPalun toimi alljärgnevalt:\n- ava about:config\n- määra dom.indexedDB.privateBrowsing.enabled väärtuseks true\nVastasel juhul sa ei saa FluffyChat'i kasutada.",
|
|
||||||
"hydrate": "Taasta varundatud failist",
|
"hydrate": "Taasta varundatud failist",
|
||||||
"user": "Kasutaja",
|
"user": "Kasutaja",
|
||||||
"custom": "Kohandatud",
|
"custom": "Kohandatud",
|
||||||
"confirmMatrixId": "Konto kustutamiseks palun kinnitage oma Matrix'i ID.",
|
"confirmMatrixId": "Konto kustutamiseks palun kinnita oma Matrix'i kasutajatunnus (Matrix ID).",
|
||||||
"supposedMxid": "See peaks olema {mxid}",
|
"supposedMxid": "See peaks olema {mxid}",
|
||||||
"@supposedMxid": {
|
"@supposedMxid": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2291,34 +2049,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"commandHint_markasgroup": "Märgi vestlusrühmaks",
|
"commandHint_markasgroup": "Märgi jututoaks",
|
||||||
"commandHint_markasdm": "Märgi otsevestusluseks antud Matrixi ID jaoks",
|
"commandHint_markasdm": "Märgi otsevestusluseks antud Matrixi ID jaoks",
|
||||||
"whyIsThisMessageEncrypted": "Miks see sõnum pole loetav?",
|
"whyIsThisMessageEncrypted": "Miks see sõnum pole loetav?",
|
||||||
"noKeyForThisMessage": "See võib juhtuda, kui sõnum oli saadetud enne, kui siin seadmes oma kontoga sisse logisid.\n\nSamuti võib juhtuda siis, kui saatja on lugemises selles seadmes blokeerinud või on tekkinud tõrkeid veebiühenduses.\n\nAga mõnes teises seadmes saad seda sõnumit lugeda? Siis sa võid sõnumi sealt üle tõsta. Ava Seadistused -> Seadmed ning kontrolli, et kõik sinu seadmed on omavahel verifitseeritud. Kui avad selle vestluse või jututoa ning mõlemad sessioonid on avatud, siis vajalikud krüptovõtmed saadetakse automaatset.\n\nKas sa soovid vältida krüptovõtmete kadumist väljalogimisel ja seadmete vahetusel? Siis palun kontrolli, et seadistuses on krüptovõtmete varundus sisse lülitatud.",
|
"noKeyForThisMessage": "See võib juhtuda, kui sõnum oli saadetud enne, kui siin seadmes oma kontoga sisse logisid.\n\nSamuti võib juhtuda siis, kui saatja on lugemises selles seadmes blokeerinud või on tekkinud tõrkeid veebiühenduses.\n\nAga mõnes teises seadmes saad seda sõnumit lugeda? Siis sa võid sõnumi sealt üle tõsta. Ava Seadistused -> Seadmed ning kontrolli, et kõik sinu seadmed on omavahel verifitseeritud. Kui avad selle vestluse või jututoa ning mõlemad sessioonid on avatud, siis vajalikud krüptovõtmed saadetakse automaatset.\n\nKas sa soovid vältida krüptovõtmete kadumist väljalogimisel ja seadmete vahetusel? Siis palun kontrolli, et seadistuses on krüptovõtmete varundus sisse lülitatud.",
|
||||||
"callingPermissions": "Helistamise õigused",
|
|
||||||
"callingAccountDetails": "Võimaldab FluffyChat'il kasutada Androidi helistamisrakendust.",
|
|
||||||
"appearOnTop": "Luba pealmise rakendusena",
|
|
||||||
"otherCallingPermissions": "Mikrofoni, kaamera ja muud FluffyChat'i õigused",
|
|
||||||
"newGroup": "Uus jututuba",
|
"newGroup": "Uus jututuba",
|
||||||
"newSpace": "Uus kogukond",
|
"newSpace": "Uus kogukond",
|
||||||
"enterSpace": "Sisene kogukonda",
|
|
||||||
"enterRoom": "Ava jututuba",
|
|
||||||
"appearOnTopDetails": "Sellega lubad rakendust avada kõige pealmisena (pole vajalik, kui Fluffychat on juba seadistatud toimima helistamiskontoga)",
|
|
||||||
"callingAccount": "Helistamiskonto",
|
|
||||||
"screenSharingTitle": "ekraani jagamine",
|
"screenSharingTitle": "ekraani jagamine",
|
||||||
"foregroundServiceRunning": "See teavitus toimib siis, kui esiplaaniteenus töötab.",
|
"foregroundServiceRunning": "See teavitus toimib siis, kui esiplaaniteenus töötab.",
|
||||||
"allSpaces": "Kõik kogukonnad",
|
"allSpaces": "Kõik kogukonnad",
|
||||||
"screenSharingDetail": "Sa jagad oma ekraani FuffyChati vahendusel",
|
"screenSharingDetail": "Sa jagad oma ekraani FuffyChati vahendusel",
|
||||||
"numChats": "{number} vestlust",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Peida väheolulised olekuteated",
|
|
||||||
"doNotShowAgain": "Ära näita uuesti",
|
"doNotShowAgain": "Ära näita uuesti",
|
||||||
"commandHint_cuddle": "Saada üks kaisutus",
|
"commandHint_cuddle": "Saada üks kaisutus",
|
||||||
"commandHint_hug": "Saada üks kallistus",
|
"commandHint_hug": "Saada üks kallistus",
|
||||||
|
|
@ -2359,7 +2099,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"startFirstChat": "Alusta oma esimest vestlust",
|
|
||||||
"encryptThisChat": "Krüpti see vestlus",
|
"encryptThisChat": "Krüpti see vestlus",
|
||||||
"disableEncryptionWarning": "Kui vestluses on krüptimine kasutusele võetud, siis turvalisuse huvides ei saa seda hiljem välja lülitada.",
|
"disableEncryptionWarning": "Kui vestluses on krüptimine kasutusele võetud, siis turvalisuse huvides ei saa seda hiljem välja lülitada.",
|
||||||
"sorryThatsNotPossible": "Vabandust... see ei ole võimalik",
|
"sorryThatsNotPossible": "Vabandust... see ei ole võimalik",
|
||||||
|
|
@ -2383,23 +2122,7 @@
|
||||||
"jump": "Hüppa",
|
"jump": "Hüppa",
|
||||||
"openLinkInBrowser": "Ava link veebibrauseris",
|
"openLinkInBrowser": "Ava link veebibrauseris",
|
||||||
"report": "teata",
|
"report": "teata",
|
||||||
"allRooms": "Kõik vestlusrühmad",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reportErrorDescription": "😭 Oh appike! Midagi läks valesti. Kui soovid, võid sellest veast arendajatele teatada.",
|
"reportErrorDescription": "😭 Oh appike! Midagi läks valesti. Kui soovid, võid sellest veast arendajatele teatada.",
|
||||||
"signInWithPassword": "Logi sisse salasõnaga",
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Palun proovi hiljem uuesti või muuda serveri nime.",
|
|
||||||
"signInWith": "Logi sisse kasutades teenusepakkujat:",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"importFromZipFile": "Impordi zip-failist",
|
"importFromZipFile": "Impordi zip-failist",
|
||||||
"exportEmotePack": "Ekspordi emotikonide pakk zip-failina",
|
"exportEmotePack": "Ekspordi emotikonide pakk zip-failina",
|
||||||
"replace": "Asenda",
|
"replace": "Asenda",
|
||||||
|
|
@ -2407,9 +2130,7 @@
|
||||||
"importNow": "Impordi kohe",
|
"importNow": "Impordi kohe",
|
||||||
"importEmojis": "Impordi emojid",
|
"importEmojis": "Impordi emojid",
|
||||||
"sendTypingNotifications": "Saada kirjutamise teavitusi",
|
"sendTypingNotifications": "Saada kirjutamise teavitusi",
|
||||||
"createGroup": "Loo vestlusrühm",
|
"createGroup": "Loo jututuba",
|
||||||
"setTheme": "Vali teema:",
|
|
||||||
"inviteContactToGroupQuestion": "Kas sa soovid kutsuda kasutajat {contact} „{groupName}“ jututuppa?",
|
|
||||||
"tryAgain": "Proovi uuesti",
|
"tryAgain": "Proovi uuesti",
|
||||||
"chatPermissions": "Vestluse õigused",
|
"chatPermissions": "Vestluse õigused",
|
||||||
"chatDescription": "Vestluse kirjeldus",
|
"chatDescription": "Vestluse kirjeldus",
|
||||||
|
|
@ -2419,11 +2140,9 @@
|
||||||
"shareInviteLink": "Jaga kutse linki",
|
"shareInviteLink": "Jaga kutse linki",
|
||||||
"directChat": "Otsevestlus",
|
"directChat": "Otsevestlus",
|
||||||
"setChatDescription": "Lisa vestluse kirjeldus",
|
"setChatDescription": "Lisa vestluse kirjeldus",
|
||||||
"profileNotFound": "Sellist kasutajat serveris ei leidu. Tegemist võib olla kas võrguühenduse probleemiga või sellist kasutajat tõesti pole olemas.",
|
|
||||||
"setColorTheme": "Vali värviteema:",
|
"setColorTheme": "Vali värviteema:",
|
||||||
"invite": "Kutsu",
|
"invite": "Kutsu",
|
||||||
"invalidServerName": "Vigane serveri nimi",
|
"invalidServerName": "Vigane serveri nimi",
|
||||||
"addChatDescription": "Lisa vestluse kirjeldus...",
|
|
||||||
"chatDescriptionHasBeenChanged": "Vestluse kirjeldus on muutunud",
|
"chatDescriptionHasBeenChanged": "Vestluse kirjeldus on muutunud",
|
||||||
"redactMessageDescription": "Sõnumi muudatus kehtib kõikidele vestluses osalejatele. Seda muudatust ei saa tagasi pöörata.",
|
"redactMessageDescription": "Sõnumi muudatus kehtib kõikidele vestluses osalejatele. Seda muudatust ei saa tagasi pöörata.",
|
||||||
"redactedBy": "Muutja: {username}",
|
"redactedBy": "Muutja: {username}",
|
||||||
|
|
@ -2447,8 +2166,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"inviteGroupChat": "📨 Kutse vestlusrühma",
|
"inviteGroupChat": "📨 Kutse jututuppa",
|
||||||
"invitePrivateChat": "📨 Kutsu omavahelisele vestlusele",
|
|
||||||
"emoteKeyboardNoRecents": "Hiljuti kasutatud emotikonid kuvame siin...",
|
"emoteKeyboardNoRecents": "Hiljuti kasutatud emotikonid kuvame siin...",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2483,10 +2201,9 @@
|
||||||
"pleaseEnterANumber": "Palun sisesta 0'st suurem number",
|
"pleaseEnterANumber": "Palun sisesta 0'st suurem number",
|
||||||
"kickUserDescription": "See kasutaja on nüüd jutuoast välja müksatud, kuid talle pole seatud suhtluskeeldu. Avaliku jututoa puhul saab ta alati uuesti liituda.",
|
"kickUserDescription": "See kasutaja on nüüd jutuoast välja müksatud, kuid talle pole seatud suhtluskeeldu. Avaliku jututoa puhul saab ta alati uuesti liituda.",
|
||||||
"blockListDescription": "Sul on võimalik blokeerida neid kasutajaid, kes sind segavad. Oma isiklikku blokerimisloendisse lisatud kasutajad ei saa sulle saata sõnumeid ega kutseid.",
|
"blockListDescription": "Sul on võimalik blokeerida neid kasutajaid, kes sind segavad. Oma isiklikku blokerimisloendisse lisatud kasutajad ei saa sulle saata sõnumeid ega kutseid.",
|
||||||
"createGroupAndInviteUsers": "Lisavestlusrühm ja kutsu sinna kasutajaid",
|
"createGroupAndInviteUsers": "Lisa jututuba ja kutsu sinna kasutajaid",
|
||||||
"startConversation": "Alusta vestlust",
|
|
||||||
"blockedUsers": "Blokeeritud kasutajad",
|
"blockedUsers": "Blokeeritud kasutajad",
|
||||||
"groupCanBeFoundViaSearch": "Vestlusrühm on leitav otsinguga",
|
"groupCanBeFoundViaSearch": "Jututuba on leitav otsinguga",
|
||||||
"noUsersFoundWithQuery": "Päringuga „{query}“ ei leidunud kahkus ühtegi kasutajat. Palun kontrolli, et päringus poleks vigu.",
|
"noUsersFoundWithQuery": "Päringuga „{query}“ ei leidunud kahkus ühtegi kasutajat. Palun kontrolli, et päringus poleks vigu.",
|
||||||
"@noUsersFoundWithQuery": {
|
"@noUsersFoundWithQuery": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2501,7 +2218,7 @@
|
||||||
"commandHint_sendraw": "Saada json oma algupärasel kujul",
|
"commandHint_sendraw": "Saada json oma algupärasel kujul",
|
||||||
"wrongRecoveryKey": "Vabandust..., see ei tundu olema korrektne taastevõti.",
|
"wrongRecoveryKey": "Vabandust..., see ei tundu olema korrektne taastevõti.",
|
||||||
"blockUsername": "Eira kasutajanime",
|
"blockUsername": "Eira kasutajanime",
|
||||||
"groupName": "Vestlusrühma nimi",
|
"groupName": "Jututoa nimi",
|
||||||
"databaseMigrationTitle": "Andmebaas on optimeeritud",
|
"databaseMigrationTitle": "Andmebaas on optimeeritud",
|
||||||
"searchChatsRooms": "Otsi #vestlusi, @kasutajaid...",
|
"searchChatsRooms": "Otsi #vestlusi, @kasutajaid...",
|
||||||
"databaseMigrationBody": "Palun oota üks hetk. Natuke võib kuluda aega.",
|
"databaseMigrationBody": "Palun oota üks hetk. Natuke võib kuluda aega.",
|
||||||
|
|
@ -2509,30 +2226,15 @@
|
||||||
"publicSpaces": "Avalikud kogukonnad",
|
"publicSpaces": "Avalikud kogukonnad",
|
||||||
"passwordIsWrong": "Sinu sisestatud salasõna on vale",
|
"passwordIsWrong": "Sinu sisestatud salasõna on vale",
|
||||||
"pleaseEnterYourCurrentPassword": "Palun sisesta oma praegune salasõna",
|
"pleaseEnterYourCurrentPassword": "Palun sisesta oma praegune salasõna",
|
||||||
"publicLink": "Avalik link",
|
|
||||||
"nothingFound": "Ei leidnud mitte midagi...",
|
"nothingFound": "Ei leidnud mitte midagi...",
|
||||||
"decline": "Keeldu",
|
|
||||||
"newPassword": "Uus salasõna",
|
"newPassword": "Uus salasõna",
|
||||||
"passwordsDoNotMatch": "Salasõnad ei klapi omavahel",
|
"passwordsDoNotMatch": "Salasõnad ei klapi omavahel",
|
||||||
"subspace": "Jututuba või alamkogukond",
|
|
||||||
"select": "Vali",
|
"select": "Vali",
|
||||||
"pleaseChooseAStrongPassword": "Palun sisesta korralik salasõna",
|
"pleaseChooseAStrongPassword": "Palun sisesta korralik salasõna",
|
||||||
"addChatOrSubSpace": "Lisa vestlus või jututuba",
|
"addChatOrSubSpace": "Lisa vestlus või jututuba",
|
||||||
"leaveEmptyToClearStatus": "Senise oleku eemaldamiseks jäta väärtus tühjaks.",
|
"leaveEmptyToClearStatus": "Senise oleku eemaldamiseks jäta väärtus tühjaks.",
|
||||||
"joinSpace": "Liitu kogukonnaga",
|
"joinSpace": "Liitu kogukonnaga",
|
||||||
"searchForUsers": "Otsi kasutajat @kasutajanimi ...",
|
"searchForUsers": "Otsi kasutajat @kasutajanimi ...",
|
||||||
"databaseBuildErrorBody": "SQlite andmebaasi loomine ei õnnestu. Seetõttu üritab rakendus kasutada senist andmehoidlat. Palun teata sellest veast arendajatele siin: {url} märkides veateate: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"initAppError": "Rakenduse käivitamisel tekkis viga",
|
"initAppError": "Rakenduse käivitamisel tekkis viga",
|
||||||
"sessionLostBody": "Sinu sessioon on kadunud. Palun teata sellest veast arendajatele siin: {url} märkides veateate: {error}",
|
"sessionLostBody": "Sinu sessioon on kadunud. Palun teata sellest veast arendajatele siin: {url} märkides veateate: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
|
|
@ -2559,25 +2261,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"transparent": "Läbipaistev",
|
"transparent": "Läbipaistev",
|
||||||
"youInvitedToBy": "📩 Sa oled lingiga saanud kutse jututuppa:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceipts": "Saada lugemisteatisi",
|
"sendReadReceipts": "Saada lugemisteatisi",
|
||||||
"verifyOtherUserDescription": "Kui sa oled vestluse teise osapoole verifitseerinud, siis saad kindel olla, et tead, kellega suhtled. 💪\n\nKui alustad verifitseerimist, siis sinul ja teisel osapoolel tekib rakenduses hüpikaken. Seal kuvatakse emotikonide või numbrite jada, mida peate omavahel võrdlema.\n\nKõige lihtsam on seda teha kas omavahelise kohtumise ajal või videokõne kestel. 👭",
|
"verifyOtherUserDescription": "Kui sa oled vestluse teise osapoole verifitseerinud, siis saad kindel olla, et tead, kellega suhtled. 💪\n\nKui alustad verifitseerimist, siis sinul ja teisel osapoolel tekib rakenduses hüpikaken. Seal kuvatakse emotikonide või numbrite jada, mida peate omavahel võrdlema.\n\nKõige lihtsam on seda teha kas omavahelise kohtumise ajal või videokõne kestel. 👭",
|
||||||
"forwardMessageTo": "Kas edastame sõnumi jututuppa {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendTypingNotificationsDescription": "Muud vestluses osalejad saavad näha, kui sa oled uut sõnumit kirjutamas.",
|
"sendTypingNotificationsDescription": "Muud vestluses osalejad saavad näha, kui sa oled uut sõnumit kirjutamas.",
|
||||||
"sendReadReceiptsDescription": "Muud vestluses osalejad näevad, kas oled sõnumit lugenud.",
|
"sendReadReceiptsDescription": "Muud vestluses osalejad näevad, kas oled sõnumit lugenud.",
|
||||||
"formattedMessages": "Vormindatud sõnumid",
|
"formattedMessages": "Vormindatud sõnumid",
|
||||||
|
|
@ -2639,11 +2324,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"presenceStyle": "Olekuteated:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "Näita teiste kasutajate olekuteateid",
|
"presencesToggle": "Näita teiste kasutajate olekuteateid",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2670,16 +2350,6 @@
|
||||||
"globalChatId": "Üldine vestluse tunnus",
|
"globalChatId": "Üldine vestluse tunnus",
|
||||||
"accessAndVisibilityDescription": "Kes võib selle vestlusega liituda ja kuidas on võimalik seda vestlust leida.",
|
"accessAndVisibilityDescription": "Kes võib selle vestlusega liituda ja kuidas on võimalik seda vestlust leida.",
|
||||||
"hideRedactedMessagesBody": "Kui keegi muudab sõnumit, siis teda enam ei kuvataks vestluses.",
|
"hideRedactedMessagesBody": "Kui keegi muudab sõnumit, siis teda enam ei kuvataks vestluses.",
|
||||||
"userWouldLikeToChangeTheChat": "{user} soovib liituda vestlusega.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideMemberChangesInPublicChats": "Peida avalike vestluste liikmelisuse muutused",
|
|
||||||
"notifyMeFor": "Teavita mind kui",
|
|
||||||
"usersMustKnock": "Kasutajad peavad uksele koputama",
|
"usersMustKnock": "Kasutajad peavad uksele koputama",
|
||||||
"noOneCanJoin": "Mitte keegi ei saa liituda",
|
"noOneCanJoin": "Mitte keegi ei saa liituda",
|
||||||
"knocking": "Koputus uksele",
|
"knocking": "Koputus uksele",
|
||||||
|
|
@ -2693,17 +2363,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"publicChatAddresses": "Vestluse avalik aadress",
|
"publicChatAddresses": "Vestluse avalik aadress",
|
||||||
"minimumPowerLevel": "{level} on väikseim võimalik õiguste tase.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noDatabaseEncryption": "Andmebaasi krüptimine pole sellel platvormil toetatud",
|
"noDatabaseEncryption": "Andmebaasi krüptimine pole sellel platvormil toetatud",
|
||||||
"noPublicLinkHasBeenCreatedYet": "Avalikult kasutatavat linki pole veel olemas",
|
|
||||||
"knock": "Koputa uksele",
|
"knock": "Koputa uksele",
|
||||||
"appLockDescription": "Kui sa rakendust parasjagu ei kasuta, siis lukusta ta PIN-koodiga",
|
"appLockDescription": "Kui sa rakendust parasjagu ei kasuta, siis lukusta ta PIN-koodiga",
|
||||||
"accessAndVisibility": "Ligipääsetavus ja nähtavus",
|
"accessAndVisibility": "Ligipääsetavus ja nähtavus",
|
||||||
|
|
@ -2712,11 +2372,9 @@
|
||||||
"customEmojisAndStickersBody": "Lisa või jaga kohandatud emotikone või kleepsupakke, mida võiks kasutada igas vestluses.",
|
"customEmojisAndStickersBody": "Lisa või jaga kohandatud emotikone või kleepsupakke, mida võiks kasutada igas vestluses.",
|
||||||
"hideRedactedMessages": "Peida muudetud sõnumid",
|
"hideRedactedMessages": "Peida muudetud sõnumid",
|
||||||
"hideInvalidOrUnknownMessageFormats": "Peida vigase või tundmatu vorminguga sõnumid",
|
"hideInvalidOrUnknownMessageFormats": "Peida vigase või tundmatu vorminguga sõnumid",
|
||||||
"hideMemberChangesInPublicChatsBody": "Parema loetavuse nimel ära näita vestluse ajajoonel avaliku jututoaga liitumisi ja sealt lahkumisi.",
|
|
||||||
"overview": "Ülevaade",
|
"overview": "Ülevaade",
|
||||||
"passwordRecoverySettings": "Salasõna taastamise seadistused",
|
"passwordRecoverySettings": "Salasõna taastamise seadistused",
|
||||||
"createNewAddress": "Loo uus aadress",
|
"createNewAddress": "Loo uus aadress",
|
||||||
"userRole": "Kasutaja roll",
|
|
||||||
"thereAreCountUsersBlocked": "Hetkel on {count} blokeeritud kasutajat.",
|
"thereAreCountUsersBlocked": "Hetkel on {count} blokeeritud kasutajat.",
|
||||||
"@thereAreCountUsersBlocked": {
|
"@thereAreCountUsersBlocked": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2737,12 +2395,11 @@
|
||||||
"gallery": "Galerii",
|
"gallery": "Galerii",
|
||||||
"files": "Failid",
|
"files": "Failid",
|
||||||
"swipeRightToLeftToReply": "Vastamiseks viipa paremalt vasakule",
|
"swipeRightToLeftToReply": "Vastamiseks viipa paremalt vasakule",
|
||||||
"alwaysUse24HourFormat": "false",
|
"alwaysUse24HourFormat": "väär",
|
||||||
"@alwaysUse24HourFormat": {
|
"@alwaysUse24HourFormat": {
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
},
|
},
|
||||||
"noMoreChatsFound": "Rohkem vestlusi ei leidu...",
|
"noMoreChatsFound": "Rohkem vestlusi ei leidu...",
|
||||||
"joinedChats": "Vestlusi, millega oled liitunud",
|
|
||||||
"unread": "Lugemata",
|
"unread": "Lugemata",
|
||||||
"space": "Kogukond",
|
"space": "Kogukond",
|
||||||
"spaces": "Kogukonnad",
|
"spaces": "Kogukonnad",
|
||||||
|
|
@ -2752,18 +2409,6 @@
|
||||||
"space": {}
|
"space": {}
|
||||||
},
|
},
|
||||||
"markAsUnread": "Märgi mitteloetuks",
|
"markAsUnread": "Märgi mitteloetuks",
|
||||||
"countChatsAndCountParticipants": "{chats} vestlust ja {participants} osalejat",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userLevel": "{level} - kasutaja",
|
"userLevel": "{level} - kasutaja",
|
||||||
"@userLevel": {
|
"@userLevel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2797,7 +2442,7 @@
|
||||||
"changeGeneralChatSettings": "Muuda vestluse üldiseid seadistusi",
|
"changeGeneralChatSettings": "Muuda vestluse üldiseid seadistusi",
|
||||||
"inviteOtherUsers": "Kutsu teisi osalejaid sellesse vestlusesse",
|
"inviteOtherUsers": "Kutsu teisi osalejaid sellesse vestlusesse",
|
||||||
"changeTheChatPermissions": "Muuda vestluse õigusi",
|
"changeTheChatPermissions": "Muuda vestluse õigusi",
|
||||||
"changeTheDescriptionOfTheGroup": "Muuda vestluse kirjeldust",
|
"changeTheDescriptionOfTheGroup": "Muuda vestluse/jututoa kirjeldust",
|
||||||
"chatPermissionsDescription": "Määra erinevatele kasutajatele selles vestluses vajalikud õigused. Tüüpiliselt on need 0, 50 ja 100 (vastavalt kasutajad, moderaatorid ja peakasutajad), kuid igasugused vahepealsed variatsioonid on ka võimalikud.",
|
"chatPermissionsDescription": "Määra erinevatele kasutajatele selles vestluses vajalikud õigused. Tüüpiliselt on need 0, 50 ja 100 (vastavalt kasutajad, moderaatorid ja peakasutajad), kuid igasugused vahepealsed variatsioonid on ka võimalikud.",
|
||||||
"invitedBy": "📩 Kutsujaks {user}",
|
"invitedBy": "📩 Kutsujaks {user}",
|
||||||
"@invitedBy": {
|
"@invitedBy": {
|
||||||
|
|
@ -2820,9 +2465,6 @@
|
||||||
"sendCanceled": "Saatmine on katkestatud",
|
"sendCanceled": "Saatmine on katkestatud",
|
||||||
"noChatsFoundHere": "Siin ei leidu veel ühtegi vestlust. Alusta uut vestlust klõpsides allpool asuvat nuppu. ⤵️",
|
"noChatsFoundHere": "Siin ei leidu veel ühtegi vestlust. Alusta uut vestlust klõpsides allpool asuvat nuppu. ⤵️",
|
||||||
"loginWithMatrixId": "Logi sisse Matrix-ID alusel",
|
"loginWithMatrixId": "Logi sisse Matrix-ID alusel",
|
||||||
"discoverHomeservers": "Leia koduservereid",
|
|
||||||
"whatIsAHomeserver": "Mis on koduserver?",
|
|
||||||
"homeserverDescription": "Sarnaselt e-postiteenuse pakkujale on kõik sinu sõnumid salvestatud koduserveris. Sa võid valida sellise koduserveri, nagu sulle meeldib ja nad kõik suudavad teiste koduserveritega suhelda. Lisateavet leiad veebisaidist https://matrix.org.",
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Ei tundu olema ühilduv koduserver. Kas võrguaadress on ikka õige?",
|
"doesNotSeemToBeAValidHomeserver": "Ei tundu olema ühilduv koduserver. Kas võrguaadress on ikka õige?",
|
||||||
"prepareSendingAttachment": "Valmistume manuse saatmiseks...",
|
"prepareSendingAttachment": "Valmistume manuse saatmiseks...",
|
||||||
"generatingVideoThumbnail": "Loome video pisipilti...",
|
"generatingVideoThumbnail": "Loome video pisipilti...",
|
||||||
|
|
@ -2906,7 +2548,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"waitingForServer": "Ootame serveri vastust...",
|
"waitingForServer": "Ootame serveri vastust...",
|
||||||
"appIntroduction": "FluffyChat võimaldab sul suhelda sõprade ja tuttavatega, kes kasutavad erinevaid sõnumikliente. Lisateavet leiad https://matrix.org saidist või lihtsalt klõpsi „Jätka“.",
|
|
||||||
"synchronizingPleaseWaitCounter": " Sünkroniseerime… ({percentage}%)",
|
"synchronizingPleaseWaitCounter": " Sünkroniseerime… ({percentage}%)",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2985,10 +2626,7 @@
|
||||||
"notSupportedOnThisDevice": "See pole antud seadmes toetatud",
|
"notSupportedOnThisDevice": "See pole antud seadmes toetatud",
|
||||||
"enterNewChat": "Liitu uue vestlusega",
|
"enterNewChat": "Liitu uue vestlusega",
|
||||||
"commandHint_roomupgrade": "Uuenda see jututuba antud jututoa versioonini",
|
"commandHint_roomupgrade": "Uuenda see jututuba antud jututoa versioonini",
|
||||||
"setCustomPermissionLevel": "Seadista kohandatud õiguste tase",
|
|
||||||
"setPermissionsLevelDescription": "Palun vali eelvalitud rollide seast või lisa õiguste tase vahemikus 0 kuni 100.",
|
|
||||||
"ignoreUser": "Eira kasutajat",
|
"ignoreUser": "Eira kasutajat",
|
||||||
"normalUser": "Tavakasutaja",
|
|
||||||
"approve": "Kiida heaks",
|
"approve": "Kiida heaks",
|
||||||
"pleaseWaitUntilInvited": "Palun oota seni, kuni keegi jututoast saadab sulle kutse.",
|
"pleaseWaitUntilInvited": "Palun oota seni, kuni keegi jututoast saadab sulle kutse.",
|
||||||
"youHaveKnocked": "Sa oled koputanud",
|
"youHaveKnocked": "Sa oled koputanud",
|
||||||
|
|
@ -3024,10 +2662,6 @@
|
||||||
"longPressToRecordVoiceMessage": "Pika vajutusega saad salvestada häälsõnumi.",
|
"longPressToRecordVoiceMessage": "Pika vajutusega saad salvestada häälsõnumi.",
|
||||||
"pause": "Peata",
|
"pause": "Peata",
|
||||||
"resume": "Jätka",
|
"resume": "Jätka",
|
||||||
"newSubSpace": "Uus alamkogukond",
|
|
||||||
"moveToDifferentSpace": "Tõsta teise kogukonda",
|
|
||||||
"moveUp": "Liiguta ülespoole",
|
|
||||||
"moveDown": "Liiguta allapoole",
|
|
||||||
"removeFromSpaceDescription": "See vestlus eemaldatakse nüüd kogukonnast, kuid on jätkuvalt nähtav sinu vestluste loendis.",
|
"removeFromSpaceDescription": "See vestlus eemaldatakse nüüd kogukonnast, kuid on jätkuvalt nähtav sinu vestluste loendis.",
|
||||||
"countChats": "{chats} vestlust",
|
"countChats": "{chats} vestlust",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3056,7 +2690,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Toeta meid rahaliselt",
|
|
||||||
"startedAPoll": "{username} koostas küsitluse.",
|
"startedAPoll": "{username} koostas küsitluse.",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3070,7 +2703,6 @@
|
||||||
"startPoll": "Koosta küsitlus",
|
"startPoll": "Koosta küsitlus",
|
||||||
"endPoll": "Lõpeta küsitlus",
|
"endPoll": "Lõpeta küsitlus",
|
||||||
"answersVisible": "Vastused on näha",
|
"answersVisible": "Vastused on näha",
|
||||||
"answersHidden": "Vastused on peidetud",
|
|
||||||
"pollQuestion": "Küsitluse küsimus",
|
"pollQuestion": "Küsitluse küsimus",
|
||||||
"answerOption": "Valikvastus",
|
"answerOption": "Valikvastus",
|
||||||
"addAnswerOption": "Lisa valikvastus",
|
"addAnswerOption": "Lisa valikvastus",
|
||||||
|
|
@ -3138,5 +2770,43 @@
|
||||||
"logs": "Logid",
|
"logs": "Logid",
|
||||||
"advancedConfigs": "Täiendav seadistus",
|
"advancedConfigs": "Täiendav seadistus",
|
||||||
"advancedConfigurations": "Täiendavad seadistused",
|
"advancedConfigurations": "Täiendavad seadistused",
|
||||||
"signInWithLabel": "Logi sisse kasutades:"
|
"signIn": "Logi sisse",
|
||||||
|
"createNewAccount": "Loo uus kasutajakonto",
|
||||||
|
"signUpGreeting": "FluffyChat kasutab hajutatud võrku! Vali server, kuhu tahad oma kasutajakonto lisada ning alustame!",
|
||||||
|
"signInGreeting": "Sul juba on Matrixi kasutajakonto olemas? Tere tulemast tagasi! Vali oma koduserver ja logi sisse.",
|
||||||
|
"appIntro": "FluffyChati abil saad suhelda oma sõpradega. See on turvaline ja hajutatud sõnumiklient [matrix]-i võrgus! Lisateavet leiad https://matrix.org saidist või lihtsalt liitu.",
|
||||||
|
"theProcessWasCanceled": "Protsess on katkestatud.",
|
||||||
|
"join": "Liitu",
|
||||||
|
"searchOrEnterHomeserverAddress": "Otsi koduserveri aadressi või sisesta see",
|
||||||
|
"matrixId": "Matrixi kasutajatunnus",
|
||||||
|
"setPowerLevel": "Seadista õigusi",
|
||||||
|
"makeModerator": "Määra moderaatoriks",
|
||||||
|
"makeAdmin": "Määra peakasutajaks",
|
||||||
|
"removeModeratorRights": "Eemalda moderaatori õigused",
|
||||||
|
"removeAdminRights": "Eemalda peakasutaja õigused",
|
||||||
|
"powerLevel": "Õiguste tase",
|
||||||
|
"setPowerLevelDescription": "Õiguste tase on üks võimalusi kirjeldamaks seda, mida kasutaja saab jututoas teha ning see tavaliselt väljendub numbriga vahemikust 0 kuni 100.",
|
||||||
|
"owner": "Omanik",
|
||||||
|
"mute": "Summuta",
|
||||||
|
"@mute": {
|
||||||
|
"description": "This should be a very short string because there is not much space in the button!"
|
||||||
|
},
|
||||||
|
"createNewChat": "Loo uus vestlus",
|
||||||
|
"reset": "Lähtesta",
|
||||||
|
"supportFluffyChat": "Toeta FluffyChati",
|
||||||
|
"support": "Toeta meid",
|
||||||
|
"iAlreadySupportFluffyChat": "Ma juba toetan FluffyChati arendust",
|
||||||
|
"fluffyChatSupportBannerMessage": "FluffyChat vajab SINU abi!\n❤️❤️❤️\nFluffyChat jääb alati vabaks ja vabalt saadavaks, aga arendus ja serveriteenused vajavad ikkagi rahastamist.\nMeie projekti tulevik sõltub sinust ja teistest kasutajatest, nagu sina.",
|
||||||
|
"skipSupportingFluffyChat": "Jäta FluffyChati toetamine vahele",
|
||||||
|
"iDoNotWantToSupport": "Ma ei soovi toetada",
|
||||||
|
"setLowPriority": "Märgi vähetähtsaks",
|
||||||
|
"unsetLowPriority": "Eemalda märkimine vähetähtsaks",
|
||||||
|
"removeCallFromChat": "Eemalda kõne vestlusest",
|
||||||
|
"removeCallFromChatDescription": "Kas sa soovid antud kõne selle vestluse kõikidelt kasutajatelt eemaldada?",
|
||||||
|
"removeCallForEveryone": "Eemalda kõne kõigilt",
|
||||||
|
"startVoiceCall": "Algata häälkõne",
|
||||||
|
"startVideoCall": "Algata videokõne",
|
||||||
|
"joinVoiceCall": "Liitu häälkõnega",
|
||||||
|
"joinVideoCall": "Liitu videokõnega",
|
||||||
|
"live": "Reaalajas"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -313,16 +313,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Baieztatu",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Konektatu",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kontaktua taldera gonbidatu da",
|
"contactHasBeenInvitedToTheGroup": "Kontaktua taldera gonbidatu da",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -392,33 +382,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}/{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{year}/{month}/{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"delete": "Ezabatu",
|
"delete": "Ezabatu",
|
||||||
"@delete": {
|
"@delete": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -474,11 +437,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Emote-laburdura eta irudi bat aukeratu behar dituzu!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Txata hutsik dago",
|
"emptyChat": "Txata hutsik dago",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -508,11 +466,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Sartu zure zerbitzaria",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fileName": "Fitxategiaren izena",
|
"fileName": "Fitxategiaren izena",
|
||||||
"@fileName": {
|
"@fileName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -589,11 +542,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identitatea",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"incorrectPassphraseOrKey": "Pasaesaldi edo berreskuratze-gakoa ez da zuzena",
|
"incorrectPassphraseOrKey": "Pasaesaldi edo berreskuratze-gakoa ez da zuzena",
|
||||||
"@incorrectPassphraseOrKey": {
|
"@incorrectPassphraseOrKey": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -714,11 +662,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Lizentzia",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Argia",
|
"lightTheme": "Argia",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -914,11 +857,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Batu berriro",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Kendu",
|
"remove": "Kendu",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -938,11 +876,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Kendu gailua",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Kendu txatean duen debekua",
|
"unbanFromChat": "Kendu txatean duen debekua",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -963,15 +896,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "{username}(e)k ikusi du",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Bidali",
|
"send": "Bidali",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -997,11 +921,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Bidali jatorrizkoa",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Bidali bideoa",
|
"sendVideo": "Bidali bideoa",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1061,11 +980,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setInvitationLink": "Gonbidapen-esteka ezarri",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Ezarri egoera",
|
"setStatus": "Ezarri egoera",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1310,11 +1224,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Horma-irudia:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"whoIsAllowedToJoinThisGroup": "Nor batu daiteke talde honetara",
|
"whoIsAllowedToJoinThisGroup": "Nor batu daiteke talde honetara",
|
||||||
"@whoIsAllowedToJoinThisGroup": {
|
"@whoIsAllowedToJoinThisGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1440,11 +1349,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Joan gela berrira",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"groups": "Taldeak",
|
"groups": "Taldeak",
|
||||||
"@groups": {
|
"@groups": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1460,16 +1364,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Niretzako gonbidapenak",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"notificationsEnabledForThisAccount": "Gaitu kontu honentzako jakinarazpenak",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} erabiltzaile idazten ari dira…",
|
"numUsersTyping": "{count} erabiltzaile idazten ari dira…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1492,36 +1386,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Aukeratu",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"saveFile": "Gorde fitxategia",
|
"saveFile": "Gorde fitxategia",
|
||||||
"@saveFile": {
|
"@saveFile": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Single Sign on",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unreadChats": "{unreadCount, plural, =1{irakurri gabeko txat 1} other {irakurri gabeko {unreadCount} txat}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"videoCallsBetaWarning": "Kontuan izan bideo-deiak beta fasean daudela. Litekeena da behar bezala erabili ezin izatea —erabili ahal badira—.",
|
"videoCallsBetaWarning": "Kontuan izan bideo-deiak beta fasean daudela. Litekeena da behar bezala erabili ezin izatea —erabili ahal badira—.",
|
||||||
"toggleMuted": "Ikusi / Ezkutatu mutututakoak",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"all": "Guztia",
|
"all": "Guztia",
|
||||||
"@all": {
|
"@all": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1533,13 +1403,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"experimentalVideoCalls": "Bideo-dei esperimentalak",
|
"experimentalVideoCalls": "Bideo-dei esperimentalak",
|
||||||
"emailOrUsername": "ePosta edo erabiltzaile-izena",
|
|
||||||
"enableMultiAccounts": "(BETA) Gaitu kontu bat baino gehiago gailu honetan",
|
"enableMultiAccounts": "(BETA) Gaitu kontu bat baino gehiago gailu honetan",
|
||||||
"openVideoCamera": "Ireki kamera bideorako",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"removeFromBundle": "Kendu sorta honetatik",
|
"removeFromBundle": "Kendu sorta honetatik",
|
||||||
"serverRequiresEmail": "Zerbitzari honek zure posta elektronikoa egiaztatu behar du izena eman dezazun.",
|
"serverRequiresEmail": "Zerbitzari honek zure posta elektronikoa egiaztatu behar du izena eman dezazun.",
|
||||||
"or": "Edo",
|
"or": "Edo",
|
||||||
|
|
@ -1591,16 +1455,6 @@
|
||||||
"messageType": "Mezu mota",
|
"messageType": "Mezu mota",
|
||||||
"time": "Ordua",
|
"time": "Ordua",
|
||||||
"dismiss": "Baztertu",
|
"dismiss": "Baztertu",
|
||||||
"switchToAccount": "Aldatu {number} kontura",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"previousAccount": "Aurreko kontua",
|
|
||||||
"edit": "Editatu",
|
"edit": "Editatu",
|
||||||
"@edit": {
|
"@edit": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1643,23 +1497,6 @@
|
||||||
"placeholder": {}
|
"placeholder": {}
|
||||||
},
|
},
|
||||||
"sendOnEnter": "Bidali enter sakatuz",
|
"sendOnEnter": "Bidali enter sakatuz",
|
||||||
"badServerVersionsException": "Zerbitzariak ondorengo ezaugarriak onartzen ditu:\n{serverVersions}\nBaina aplikazioak hauek onartzen ditu bakarrik: {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"botMessages": "Boten mezuak",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cantOpenUri": "Ezin da {uri} URIa ireki",
|
"cantOpenUri": "Ezin da {uri} URIa ireki",
|
||||||
"@cantOpenUri": {
|
"@cantOpenUri": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1694,7 +1531,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Txata gune honetara gehitu da",
|
|
||||||
"configureChat": "Txata konfiguratu",
|
"configureChat": "Txata konfiguratu",
|
||||||
"@configureChat": {
|
"@configureChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1705,21 +1541,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Kideen aldaketak",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "Ezarri alias nagusi bezala",
|
"setAsCanonicalAlias": "Ezarri alias nagusi bezala",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Ezarri zure emoteak",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"appLock": "Aplikazioa blokeatzea",
|
"appLock": "Aplikazioa blokeatzea",
|
||||||
"@appLock": {
|
"@appLock": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1772,16 +1598,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsUserName": "Erabiltzaile-izena dauka",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsDisplayName": "Ezizena dauka",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"locationDisabledNotice": "Kokapen zerbitzuak ezgaituta daude. Gaitu zure kokapena partekatu ahal izateko.",
|
"locationDisabledNotice": "Kokapen zerbitzuak ezgaituta daude. Gaitu zure kokapena partekatu ahal izateko.",
|
||||||
"@locationDisabledNotice": {
|
"@locationDisabledNotice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1842,15 +1658,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"videoWithSize": "Bideoa ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"openGallery": "Ireki bilduma",
|
"openGallery": "Ireki bilduma",
|
||||||
"pinMessage": "Finkatu gelan",
|
"pinMessage": "Finkatu gelan",
|
||||||
"reactedWith": "{sender}(e)k {reaction}(r)ekin erreakzionatu du",
|
"reactedWith": "{sender}(e)k {reaction}(r)ekin erreakzionatu du",
|
||||||
|
|
@ -1866,7 +1673,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"confirmEventUnpin": "Ziur zaude gertaera finaktzeari utzi nahi diozula?",
|
"confirmEventUnpin": "Ziur zaude gertaera finaktzeari utzi nahi diozula?",
|
||||||
"nextAccount": "Hurrengo kontua",
|
|
||||||
"markAsRead": "Markatu irakurritzat",
|
"markAsRead": "Markatu irakurritzat",
|
||||||
"yourChatBackupHasBeenSetUp": "Txaten babeskopiak ezarri dira.",
|
"yourChatBackupHasBeenSetUp": "Txaten babeskopiak ezarri dira.",
|
||||||
"clearArchive": "Ezabatu artxiboa",
|
"clearArchive": "Ezabatu artxiboa",
|
||||||
|
|
@ -2045,11 +1851,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Jendea",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Aukeratu sartzeko kode bat",
|
"pleaseChooseAPasscode": "Aukeratu sartzeko kode bat",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2084,16 +1885,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "Bidali pegatina",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Ezarri baimen-maila",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"shareLocation": "Partekatu kokapena",
|
"shareLocation": "Partekatu kokapena",
|
||||||
"@shareLocation": {
|
"@shareLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2119,16 +1910,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Ikusi / Ezkutatu gogokoak",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Markatu irakurrita / irakurri gabe",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Eskaera gehiegi. Saiatu berriro geroago!",
|
"tooManyRequestsWarning": "Eskaera gehiegi. Saiatu berriro geroago!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2173,17 +1954,9 @@
|
||||||
"messageInfo": "Mezuaren xehetasunak",
|
"messageInfo": "Mezuaren xehetasunak",
|
||||||
"sender": "Igorlea",
|
"sender": "Igorlea",
|
||||||
"removeFromSpace": "Kendu gunetik",
|
"removeFromSpace": "Kendu gunetik",
|
||||||
"addToSpaceDescription": "Hautatu gune bat txat hau bertara gehitzeko.",
|
|
||||||
"start": "Hasi",
|
"start": "Hasi",
|
||||||
"publish": "Argitaratu",
|
|
||||||
"reportUser": "Salatu erabiltzailea",
|
"reportUser": "Salatu erabiltzailea",
|
||||||
"openChat": "Ireki txata",
|
"openChat": "Ireki txata",
|
||||||
"addWidget": "Gehitu widgeta",
|
|
||||||
"widgetVideo": "Bideoa",
|
|
||||||
"widgetEtherpad": "Testu-oharra",
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"widgetCustom": "Norberak ezarritakoa",
|
|
||||||
"widgetName": "Izena",
|
|
||||||
"youJoinedTheChat": "Txatera batu zara",
|
"youJoinedTheChat": "Txatera batu zara",
|
||||||
"youAcceptedTheInvitation": "👍 Gonbidapena onartu duzu",
|
"youAcceptedTheInvitation": "👍 Gonbidapena onartu duzu",
|
||||||
"youBannedUser": "{user}(r)i debekua ezarri diozu",
|
"youBannedUser": "{user}(r)i debekua ezarri diozu",
|
||||||
|
|
@ -2243,15 +2016,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"youRejectedTheInvitation": "Gonbidapena baztertu duzu",
|
"youRejectedTheInvitation": "Gonbidapena baztertu duzu",
|
||||||
"separateChatTypes": "Bereizi banakako mezuak eta taldeak",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"widgetUrlError": "Ez da baliozko URLa.",
|
|
||||||
"widgetNameError": "Zehaztu ezizen bat.",
|
|
||||||
"errorAddingWidget": "Errorea widgeta gehitzerakoan.",
|
|
||||||
"pleaseEnterRecoveryKey": "Sartu berreskuratze-gakoa:",
|
|
||||||
"recoveryKey": "Berreskuratze-gakoa",
|
"recoveryKey": "Berreskuratze-gakoa",
|
||||||
"recoveryKeyLost": "Berreskuratze-gakoa galdu duzu?",
|
"recoveryKeyLost": "Berreskuratze-gakoa galdu duzu?",
|
||||||
"users": "Erabiltzaileak",
|
"users": "Erabiltzaileak",
|
||||||
|
|
@ -2260,7 +2024,6 @@
|
||||||
"dehydrateWarning": "Ekintza hau ezin da desegin. Egiaztatu babeskopia toki seguruan gorde duzula.",
|
"dehydrateWarning": "Ekintza hau ezin da desegin. Egiaztatu babeskopia toki seguruan gorde duzula.",
|
||||||
"hydrate": "Lehengoratu babeskopia bat erabiliz",
|
"hydrate": "Lehengoratu babeskopia bat erabiliz",
|
||||||
"pleaseEnterRecoveryKeyDescription": "Mezu zaharrak ikusi ahal izateko, sartu aurreko saioan sortu zen berreskuratze-gakoa. Berreskuratze-gakoa EZ da zure pasahitza.",
|
"pleaseEnterRecoveryKeyDescription": "Mezu zaharrak ikusi ahal izateko, sartu aurreko saioan sortu zen berreskuratze-gakoa. Berreskuratze-gakoa EZ da zure pasahitza.",
|
||||||
"indexedDbErrorLong": "Mezuen artxibatzea ez dago defektuz gaituta modu pribatua erabiltzean.\nGaitzeko:\n - about:config\n - dom.indexedDB.privateBrowsing.enabled aukerak true erakutsi dezala\nBestela ezin da FluffyChat erabili.",
|
|
||||||
"storeSecurlyOnThisDevice": "Gorde gailu honetan modu seguruan",
|
"storeSecurlyOnThisDevice": "Gorde gailu honetan modu seguruan",
|
||||||
"countFiles": "{count} fitxategi",
|
"countFiles": "{count} fitxategi",
|
||||||
"@countFiles": {
|
"@countFiles": {
|
||||||
|
|
@ -2275,37 +2038,14 @@
|
||||||
"storeInSecureStorageDescription": "Gorde berreskuratze-gakoa gailu honetako biltegiratze seguruan.",
|
"storeInSecureStorageDescription": "Gorde berreskuratze-gakoa gailu honetako biltegiratze seguruan.",
|
||||||
"storeInAppleKeyChain": "Gorde Apple KeyChain-en",
|
"storeInAppleKeyChain": "Gorde Apple KeyChain-en",
|
||||||
"unlockOldMessages": "Desblokeatu mezu zaharrak",
|
"unlockOldMessages": "Desblokeatu mezu zaharrak",
|
||||||
"dehydrateTorLong": "TOR erabiltzaileentzat gomendioa leihoa itxi baino lehen saioa esportatzea da.",
|
|
||||||
"hydrateTorLong": "Esportatu al zenuen zure saioa TOR erabili zenuen azken aldian? Inportatu segidan eta jarraitu txateatzen.",
|
|
||||||
"dehydrateTor": "TOR Erabiltzaileak: Esportatu saioa",
|
|
||||||
"hydrateTor": "TOR Erabiltzaileak: Inportatu esportatutako saioa",
|
|
||||||
"saveKeyManuallyDescription": "Gorde eskuz gako hau gailuko partekatze-menua edo arbela erabiliz.",
|
"saveKeyManuallyDescription": "Gorde eskuz gako hau gailuko partekatze-menua edo arbela erabiliz.",
|
||||||
"indexedDbErrorTitle": "Arazoak modu pribatuarekin",
|
|
||||||
"confirmMatrixId": "Baieztatu zure Matrix IDa kontua ezabatu ahal izateko.",
|
"confirmMatrixId": "Baieztatu zure Matrix IDa kontua ezabatu ahal izateko.",
|
||||||
"newSpace": "Gune berria",
|
"newSpace": "Gune berria",
|
||||||
"enterRoom": "Sartu gelara",
|
|
||||||
"whyIsThisMessageEncrypted": "Zergatik ezin da mezu hau irakurri?",
|
"whyIsThisMessageEncrypted": "Zergatik ezin da mezu hau irakurri?",
|
||||||
"allSpaces": "Gune guztiak",
|
"allSpaces": "Gune guztiak",
|
||||||
"newGroup": "Talde berria",
|
"newGroup": "Talde berria",
|
||||||
"enterSpace": "Sartu gunera",
|
|
||||||
"appearOnTopDetails": "Aplikazioa goikaldean agertzea baimentzen du (ez da beharrezkoa FluffyChat deitzeko kontutzat ezarri baduzu)",
|
|
||||||
"screenSharingTitle": "pantaila-partekatzea",
|
"screenSharingTitle": "pantaila-partekatzea",
|
||||||
"screenSharingDetail": "Pantaila FluffyChaten partekatzen ari zara",
|
"screenSharingDetail": "Pantaila FluffyChaten partekatzen ari zara",
|
||||||
"callingPermissions": "Deitzeko baimenak",
|
|
||||||
"callingAccount": "Deitzen ari den kontua",
|
|
||||||
"callingAccountDetails": "Baimendu FluffyChat Android gailuko telefono-markagailua erabiltzea.",
|
|
||||||
"appearOnTop": "Gainean erakutsi",
|
|
||||||
"otherCallingPermissions": "Mikrofono, kamera eta FluffyChaten beste baimen batzuk",
|
|
||||||
"numChats": "{number} txat",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Ezkutatu garrantzirik gabeko gertaerak",
|
|
||||||
"noKeyForThisMessage": "Mezua gailu honetan saioa hasi baino lehen bidali bazen gertatu daiteke.\n\nBeste aukera bat igorleak zure gailua blokeatu izana da, edo zerbaitek huts egin izana interneteko konexioan.\n\nMezua beste saio batean irakur dezakezu? Hala bada, mezua transferitu dezakezu! Zoaz Ezrpenetara > Gailuak eta baieztatu zure gailuek bata bestea egiaztatu dutela. Gela irekiko duzun hurrengo aldian eta bi saioak aurreko planoan irekita daudenean, gakoak automatikoki partekatuko dira.\n\nEz duzu gakorik galdu nahi saioa amaitu edo gailuak aldatzen dituzunean? Baieztatu ezarpenetan txaten babeskopiak gaituta dituzula.",
|
"noKeyForThisMessage": "Mezua gailu honetan saioa hasi baino lehen bidali bazen gertatu daiteke.\n\nBeste aukera bat igorleak zure gailua blokeatu izana da, edo zerbaitek huts egin izana interneteko konexioan.\n\nMezua beste saio batean irakur dezakezu? Hala bada, mezua transferitu dezakezu! Zoaz Ezrpenetara > Gailuak eta baieztatu zure gailuek bata bestea egiaztatu dutela. Gela irekiko duzun hurrengo aldian eta bi saioak aurreko planoan irekita daudenean, gakoak automatikoki partekatuko dira.\n\nEz duzu gakorik galdu nahi saioa amaitu edo gailuak aldatzen dituzunean? Baieztatu ezarpenetan txaten babeskopiak gaituta dituzula.",
|
||||||
"supposedMxid": "Hau {mxid} izan behar da",
|
"supposedMxid": "Hau {mxid} izan behar da",
|
||||||
"@supposedMxid": {
|
"@supposedMxid": {
|
||||||
|
|
@ -2333,7 +2073,6 @@
|
||||||
"doNotShowAgain": "Ez erakutsi berriro",
|
"doNotShowAgain": "Ez erakutsi berriro",
|
||||||
"fileIsTooBigForServer": "Ezin da bidali! Zerbitzariak gehienez {max}-ko eranskinak onartzen ditu.",
|
"fileIsTooBigForServer": "Ezin da bidali! Zerbitzariak gehienez {max}-ko eranskinak onartzen ditu.",
|
||||||
"noOtherDevicesFound": "Ez da beste gailurik aurkitu",
|
"noOtherDevicesFound": "Ez da beste gailurik aurkitu",
|
||||||
"startFirstChat": "Hasi zure lehen txata",
|
|
||||||
"newSpaceDescription": "Guneek txatak taldekatzea ahalbidetzen dute eta komunitate pribatu edo publikoak osatzea.",
|
"newSpaceDescription": "Guneek txatak taldekatzea ahalbidetzen dute eta komunitate pribatu edo publikoak osatzea.",
|
||||||
"disableEncryptionWarning": "Segurtasun arrazoiak direla-eta, ezin duzu lehendik zifratuta zegoen txat bateko zifratzea ezgaitu.",
|
"disableEncryptionWarning": "Segurtasun arrazoiak direla-eta, ezin duzu lehendik zifratuta zegoen txat bateko zifratzea ezgaitu.",
|
||||||
"encryptThisChat": "Zifratu txata",
|
"encryptThisChat": "Zifratu txata",
|
||||||
|
|
@ -2360,11 +2099,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"allRooms": "Talde-txat guztiak",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"jumpToLastReadMessage": "Joan irakurritako azken mezura",
|
"jumpToLastReadMessage": "Joan irakurritako azken mezura",
|
||||||
"reportErrorDescription": "😭 O ez! Zerbaitek huts egin du. Nahi izanez gero, eman garatzaileei errorearen berri.",
|
"reportErrorDescription": "😭 O ez! Zerbaitek huts egin du. Nahi izanez gero, eman garatzaileei errorearen berri.",
|
||||||
"cuddleContent": "{senderName}(e)k samurki besarkatu zaitu",
|
"cuddleContent": "{senderName}(e)k samurki besarkatu zaitu",
|
||||||
|
|
@ -2389,17 +2123,6 @@
|
||||||
"jump": "Joan",
|
"jump": "Joan",
|
||||||
"openLinkInBrowser": "Ireki esteka nabigatzailean",
|
"openLinkInBrowser": "Ireki esteka nabigatzailean",
|
||||||
"report": "salatu",
|
"report": "salatu",
|
||||||
"signInWithPassword": "Hasi saioa pasahitzarekin",
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Saiatu geroago edo aukeratu beste zerbitzari bat.",
|
|
||||||
"signInWith": "Hasi saioa {provider}(r)ekin",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notAnImage": "Ez da irudi-fitxategia.",
|
"notAnImage": "Ez da irudi-fitxategia.",
|
||||||
"importNow": "Inportatu orain",
|
"importNow": "Inportatu orain",
|
||||||
"importEmojis": "Inportatu emojiak",
|
"importEmojis": "Inportatu emojiak",
|
||||||
|
|
@ -2424,7 +2147,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"optionalRedactReason": "(Aukerakoa) Mezua atzera botatzearen arrazoia…",
|
"optionalRedactReason": "(Aukerakoa) Mezua atzera botatzearen arrazoia…",
|
||||||
"inviteContactToGroupQuestion": "{contact} \"{groupName}\" txatera gonbidatu nahi duzu?",
|
|
||||||
"redactedByBecause": "{username}(e)k atzera bota du \"{reason}\" dela-eta",
|
"redactedByBecause": "{username}(e)k atzera bota du \"{reason}\" dela-eta",
|
||||||
"@redactedByBecause": {
|
"@redactedByBecause": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2438,7 +2160,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"redactMessageDescription": "Mezua elkarrizketa honetako partaide guztientzat botako da atzera. Ezin da desegin.",
|
"redactMessageDescription": "Mezua elkarrizketa honetako partaide guztientzat botako da atzera. Ezin da desegin.",
|
||||||
"addChatDescription": "Gehitu txataren deskribapena…",
|
|
||||||
"directChat": "Banakako txata",
|
"directChat": "Banakako txata",
|
||||||
"wrongPinEntered": "PIN okerra! Saiatu berriro {seconds} segundu barru…",
|
"wrongPinEntered": "PIN okerra! Saiatu berriro {seconds} segundu barru…",
|
||||||
"@wrongPinEntered": {
|
"@wrongPinEntered": {
|
||||||
|
|
@ -2451,19 +2172,16 @@
|
||||||
},
|
},
|
||||||
"noChatDescriptionYet": "Ez da txaterako deskribapenik sortu oraindik.",
|
"noChatDescriptionYet": "Ez da txaterako deskribapenik sortu oraindik.",
|
||||||
"chatDescriptionHasBeenChanged": "Txataren deskribapena aldatu da",
|
"chatDescriptionHasBeenChanged": "Txataren deskribapena aldatu da",
|
||||||
"profileNotFound": "Ezin izan da erabiltzailea zerbitzarian aurkitu. Agian arazo bat dago konexioarekin edo erabiltzailea ez da existitzen.",
|
|
||||||
"shareInviteLink": "Partekatu gonbidapen-esteka",
|
"shareInviteLink": "Partekatu gonbidapen-esteka",
|
||||||
"emoteKeyboardNoRecents": "Oraintsu erabilitako emoteak hemen ageriko dira…",
|
"emoteKeyboardNoRecents": "Oraintsu erabilitako emoteak hemen ageriko dira…",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setTheme": "Ezarri gaia:",
|
|
||||||
"createGroup": "Sortu taldea",
|
"createGroup": "Sortu taldea",
|
||||||
"invite": "Gonbidatu",
|
"invite": "Gonbidatu",
|
||||||
"invalidInput": "Sartu duzunak ez du balio!",
|
"invalidInput": "Sartu duzunak ez du balio!",
|
||||||
"inviteGroupChat": "📨 Taldeko txatera gonbidapena",
|
"inviteGroupChat": "📨 Taldeko txatera gonbidapena",
|
||||||
"invitePrivateChat": "📨 Txat pribatura gonbidapena",
|
|
||||||
"banUserDescription": "Erabiltzailea txatetik kanporatu eta berriro sartzeko debekua ezarriko zaio; ezingo da berriro sartu debekua kendu arte.",
|
"banUserDescription": "Erabiltzailea txatetik kanporatu eta berriro sartzeko debekua ezarriko zaio; ezingo da berriro sartu debekua kendu arte.",
|
||||||
"removeDevicesDescription": "Gailu honetako saioa amaituko da eta ezingo duzu mezurik jaso aurrerantzean.",
|
"removeDevicesDescription": "Gailu honetako saioa amaituko da eta ezingo duzu mezurik jaso aurrerantzean.",
|
||||||
"unbanUserDescription": "Erabiltzailea txatera berriro sartu ahal izango da berak nahi izanez gero.",
|
"unbanUserDescription": "Erabiltzailea txatera berriro sartu ahal izango da berak nahi izanez gero.",
|
||||||
|
|
@ -2483,7 +2201,6 @@
|
||||||
"pleaseEnterANumber": "Sartu 0 baino zenbaki handiago bat",
|
"pleaseEnterANumber": "Sartu 0 baino zenbaki handiago bat",
|
||||||
"kickUserDescription": "Erabiltzailea txatetik kanporatu da baina ez zaio debekua ezarri. Txat publikoen kasuan, edozein momentutan batu daiteke berriro.",
|
"kickUserDescription": "Erabiltzailea txatetik kanporatu da baina ez zaio debekua ezarri. Txat publikoen kasuan, edozein momentutan batu daiteke berriro.",
|
||||||
"createGroupAndInviteUsers": "Sortu talde bat eta gonbidatu partaideak",
|
"createGroupAndInviteUsers": "Sortu talde bat eta gonbidatu partaideak",
|
||||||
"startConversation": "Hasi elkarrizketa",
|
|
||||||
"groupCanBeFoundViaSearch": "Bilaketa erabiliz aurkitu daiteke taldea",
|
"groupCanBeFoundViaSearch": "Bilaketa erabiliz aurkitu daiteke taldea",
|
||||||
"noUsersFoundWithQuery": "Zoritxarrez ez da \"{query}\" duen erabiltzailerik aurkitu. Egiaztatu zuzen idatzi duzula.",
|
"noUsersFoundWithQuery": "Zoritxarrez ez da \"{query}\" duen erabiltzailerik aurkitu. Egiaztatu zuzen idatzi duzula.",
|
||||||
"@noUsersFoundWithQuery": {
|
"@noUsersFoundWithQuery": {
|
||||||
|
|
@ -2508,11 +2225,9 @@
|
||||||
"publicSpaces": "Gune publikoak",
|
"publicSpaces": "Gune publikoak",
|
||||||
"passwordIsWrong": "Sartu duzun pasahitza okerra da",
|
"passwordIsWrong": "Sartu duzun pasahitza okerra da",
|
||||||
"pleaseEnterYourCurrentPassword": "Sartu oraingo pasahitza",
|
"pleaseEnterYourCurrentPassword": "Sartu oraingo pasahitza",
|
||||||
"publicLink": "Esteka publikoa",
|
|
||||||
"nothingFound": "Ez da ezer aurkitu…",
|
"nothingFound": "Ez da ezer aurkitu…",
|
||||||
"newPassword": "Pasahitz berria",
|
"newPassword": "Pasahitz berria",
|
||||||
"passwordsDoNotMatch": "Pasahitzak ez datoz bat",
|
"passwordsDoNotMatch": "Pasahitzak ez datoz bat",
|
||||||
"subspace": "Azpi-gunea",
|
|
||||||
"select": "Hautatu",
|
"select": "Hautatu",
|
||||||
"pleaseChooseAStrongPassword": "Aukeratu pasahitz sendo bat",
|
"pleaseChooseAStrongPassword": "Aukeratu pasahitz sendo bat",
|
||||||
"addChatOrSubSpace": "Gehitu txata edo azpi-gunea",
|
"addChatOrSubSpace": "Gehitu txata edo azpi-gunea",
|
||||||
|
|
@ -2520,19 +2235,6 @@
|
||||||
"joinSpace": "Batu gunera",
|
"joinSpace": "Batu gunera",
|
||||||
"searchForUsers": "Bilatu @erabiltzaileak…",
|
"searchForUsers": "Bilatu @erabiltzaileak…",
|
||||||
"thisDevice": "Gailu hau:",
|
"thisDevice": "Gailu hau:",
|
||||||
"decline": "Baztertu",
|
|
||||||
"databaseBuildErrorBody": "Ezin da SQlite datu-basea eraiki. Aplikazioa aurreko datu-basea erabiltzen saiatuko da oraingoz. Jakinarazi errorea garatzaileei {url} helbidean. Errorearen mezua ondorengoa da: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"initAppError": "Errorea aplikazioa abiaraztean",
|
"initAppError": "Errorea aplikazioa abiaraztean",
|
||||||
"sessionLostBody": "Zure saioa galdu da. Jakinarazi errorea garatzaileei {url} helbidean. Errorearen mezua ondorengoa da: {error}",
|
"sessionLostBody": "Zure saioa galdu da. Jakinarazi errorea garatzaileei {url} helbidean. Errorearen mezua ondorengoa da: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
|
|
@ -2558,14 +2260,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Esteka baten bidez gonbidatu zaituzte:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"transparent": "Gardena",
|
"transparent": "Gardena",
|
||||||
"sendReadReceipts": "Bidali irakurri izanaren agiria",
|
"sendReadReceipts": "Bidali irakurri izanaren agiria",
|
||||||
"formattedMessages": "Formatua duten mezuak",
|
"formattedMessages": "Formatua duten mezuak",
|
||||||
|
|
@ -2598,15 +2292,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sendReadReceiptsDescription": "Txateko beste partaideek mezu bat irakurri duzula ikus dezakete.",
|
"sendReadReceiptsDescription": "Txateko beste partaideek mezu bat irakurri duzula ikus dezakete.",
|
||||||
"forwardMessageTo": "Birbidali mezua {roomName}(e)ra?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"completedKeyVerification": "{sender}(e)k gakoen egiaztapena osatu du",
|
"completedKeyVerification": "{sender}(e)k gakoen egiaztapena osatu du",
|
||||||
"@completedKeyVerification": {
|
"@completedKeyVerification": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2644,11 +2329,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"presenceStyle": "Presentzia:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"incomingMessages": "Jasotako mezuak",
|
"incomingMessages": "Jasotako mezuak",
|
||||||
"hidePresences": "Ezkutatu Egoeren Zerrenda?",
|
"hidePresences": "Ezkutatu Egoeren Zerrenda?",
|
||||||
"discover": "Arakatu",
|
"discover": "Arakatu",
|
||||||
|
|
@ -2669,14 +2349,6 @@
|
||||||
},
|
},
|
||||||
"noDatabaseEncryption": "Plataforma honetan ezin da datu-basea zifratu",
|
"noDatabaseEncryption": "Plataforma honetan ezin da datu-basea zifratu",
|
||||||
"usersMustKnock": "Erabiltzaileek baimena eskatu behar dute",
|
"usersMustKnock": "Erabiltzaileek baimena eskatu behar dute",
|
||||||
"userWouldLikeToChangeTheChat": "{user}(e)k txatera batu nahiko luke.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"knock": "Eskatu baimena",
|
"knock": "Eskatu baimena",
|
||||||
"knocking": "Baimena eskatzen",
|
"knocking": "Baimena eskatzen",
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "Txata {server}(e)n bilaketa eginez aurkitu daiteke",
|
"chatCanBeDiscoveredViaSearchOnServer": "Txata {server}(e)n bilaketa eginez aurkitu daiteke",
|
||||||
|
|
@ -2702,24 +2374,10 @@
|
||||||
"hideRedactedMessagesBody": "Norbaitek mezuren bat atzera botaz gero, mezua txatetik kenduko da, abisurik gabe.",
|
"hideRedactedMessagesBody": "Norbaitek mezuren bat atzera botaz gero, mezua txatetik kenduko da, abisurik gabe.",
|
||||||
"hideInvalidOrUnknownMessageFormats": "Ezkutatu mezuen formatu ezezagun edo baliogabea",
|
"hideInvalidOrUnknownMessageFormats": "Ezkutatu mezuen formatu ezezagun edo baliogabea",
|
||||||
"overview": "Ikuspegi orokorra",
|
"overview": "Ikuspegi orokorra",
|
||||||
"notifyMeFor": "Jakinarazi…",
|
|
||||||
"passwordRecoverySettings": "Pasahitza berreskuratzeko ezarpenak",
|
"passwordRecoverySettings": "Pasahitza berreskuratzeko ezarpenak",
|
||||||
"hideMemberChangesInPublicChats": "Ezkutatu kideen egoera aldaketak txat publikoetan",
|
|
||||||
"globalChatId": "Txat ID orokorra",
|
"globalChatId": "Txat ID orokorra",
|
||||||
"calls": "Deiak",
|
"calls": "Deiak",
|
||||||
"hideMemberChangesInPublicChatsBody": "Ez erakutsi txataren denbora-lerroan norbait txat publikora batu edo txatetik irteten dela, irakurgaitasuna hobetzeko.",
|
|
||||||
"noOneCanJoin": "Ezin da inor batu",
|
"noOneCanJoin": "Ezin da inor batu",
|
||||||
"noPublicLinkHasBeenCreatedYet": "Oraindik ez da esteka publikorik sortu",
|
|
||||||
"userRole": "Erabiltzailearen rola",
|
|
||||||
"minimumPowerLevel": "{level} da gutxieneko botere-maila.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"publicChatAddresses": "Txataren helbide publikoak",
|
"publicChatAddresses": "Txataren helbide publikoak",
|
||||||
"createNewAddress": "Sortu helbide berria",
|
"createNewAddress": "Sortu helbide berria",
|
||||||
"files": "Fitxategiak",
|
"files": "Fitxategiak",
|
||||||
|
|
@ -2744,25 +2402,12 @@
|
||||||
"noMoreChatsFound": "Ez da beste txatik aurkitu...",
|
"noMoreChatsFound": "Ez da beste txatik aurkitu...",
|
||||||
"unread": "Irakurtzeke",
|
"unread": "Irakurtzeke",
|
||||||
"space": "Gunea",
|
"space": "Gunea",
|
||||||
"joinedChats": "Batu zaren txatak",
|
|
||||||
"goToSpace": "Joan {space} gunera",
|
"goToSpace": "Joan {space} gunera",
|
||||||
"@goToSpace": {
|
"@goToSpace": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"space": {}
|
"space": {}
|
||||||
},
|
},
|
||||||
"markAsUnread": "Markatu irakurri gabetzat",
|
"markAsUnread": "Markatu irakurri gabetzat",
|
||||||
"countChatsAndCountParticipants": "{chats} txat eta {participants} partaide",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"spaces": "Guneak",
|
"spaces": "Guneak",
|
||||||
"adminLevel": "{level} - Administratzailea",
|
"adminLevel": "{level} - Administratzailea",
|
||||||
"@adminLevel": {
|
"@adminLevel": {
|
||||||
|
|
@ -2819,10 +2464,7 @@
|
||||||
"chatPermissionsDescription": "Definitu zer botere-maila behar den txat honetako ekintza jakinetarako. 0, 50 eta 100 botere-mailek erabiltzaileak, moderatzaileak eta administratzaileak ordezkatzen dituzte, baina edozein graduazio posible da.",
|
"chatPermissionsDescription": "Definitu zer botere-maila behar den txat honetako ekintza jakinetarako. 0, 50 eta 100 botere-mailek erabiltzaileak, moderatzaileak eta administratzaileak ordezkatzen dituzte, baina edozein graduazio posible da.",
|
||||||
"sendCanceled": "Bidalketa bertan behera utzi da",
|
"sendCanceled": "Bidalketa bertan behera utzi da",
|
||||||
"noChatsFoundHere": "Ez da txatik aurkitu. Hasi norbaitekin txateatzen beheko botoia erabiliz. ⤵️",
|
"noChatsFoundHere": "Ez da txatik aurkitu. Hasi norbaitekin txateatzen beheko botoia erabiliz. ⤵️",
|
||||||
"homeserverDescription": "Zerbitzariak datuak gordetzen ditu, ePosta hornitzaileek mezuak gordetzen dituzten bezala. Nahi duzun zerbitzaria aukeratu dezakezu eta, hala ere, besteetako edonorekin hitz egin. Ikasi gehiago https://matrix.org webgunean.",
|
|
||||||
"loginWithMatrixId": "Hasi saioa Matrix IDarekin",
|
"loginWithMatrixId": "Hasi saioa Matrix IDarekin",
|
||||||
"discoverHomeservers": "Arakatu zerbitzariak",
|
|
||||||
"whatIsAHomeserver": "Zer da zerbitzari bat?",
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Ez dirudi zerbitzaria bateragarria denik. Zuzena da URLa?",
|
"doesNotSeemToBeAValidHomeserver": "Ez dirudi zerbitzaria bateragarria denik. Zuzena da URLa?",
|
||||||
"calculatingFileSize": "Fitxategiaren tamaina kalkulatzen…",
|
"calculatingFileSize": "Fitxategiaren tamaina kalkulatzen…",
|
||||||
"prepareSendingAttachment": "Eranskinaren bidalketa prestatzen…",
|
"prepareSendingAttachment": "Eranskinaren bidalketa prestatzen…",
|
||||||
|
|
@ -2917,7 +2559,6 @@
|
||||||
"roomNotificationSettings": "Gelen jakinarazpenen ezarpenak",
|
"roomNotificationSettings": "Gelen jakinarazpenen ezarpenak",
|
||||||
"otherNotificationSettings": "Beste jakinarazpenen ezarpenak",
|
"otherNotificationSettings": "Beste jakinarazpenen ezarpenak",
|
||||||
"waitingForServer": "Zerbitzariaren zain…",
|
"waitingForServer": "Zerbitzariaren zain…",
|
||||||
"appIntroduction": "FluffyChatek mezularitza-programa desberdinak erabiltzen dituzten lagunekin txateatzea ahalbidetzen dizu. Ikasi gehiago https://matrix.org estekan edo sakatu *Jarraitu*.",
|
|
||||||
"synchronizingPleaseWaitCounter": " Sinkronizatzen… (%{percentage})",
|
"synchronizingPleaseWaitCounter": " Sinkronizatzen… (%{percentage})",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2984,11 +2625,8 @@
|
||||||
"notSupportedOnThisDevice": "Ez da gailu honekin bateragarria",
|
"notSupportedOnThisDevice": "Ez da gailu honekin bateragarria",
|
||||||
"commandHint_roomupgrade": "Bertsio-berritu gela adierazitako gela-bertsiora",
|
"commandHint_roomupgrade": "Bertsio-berritu gela adierazitako gela-bertsiora",
|
||||||
"enterNewChat": "Sartu txat berrira",
|
"enterNewChat": "Sartu txat berrira",
|
||||||
"normalUser": "Erabiltzaile arrunta",
|
|
||||||
"notificationRuleRoomServerAclDescription": "Gela-zerbitzarirako sarbide-kontroleko zerrenden (ACL) jakinarazpenak ezkutatzen ditu.",
|
"notificationRuleRoomServerAclDescription": "Gela-zerbitzarirako sarbide-kontroleko zerrenden (ACL) jakinarazpenak ezkutatzen ditu.",
|
||||||
"ignoreUser": "Egin muzin erabiltzaileari",
|
"ignoreUser": "Egin muzin erabiltzaileari",
|
||||||
"setCustomPermissionLevel": "Ezarri baimen-maila propioak",
|
|
||||||
"setPermissionsLevelDescription": "Aukeratu defektuzko rola edo sartu baimen-maila pertsonalizatu bat 0 eta 100 artean.",
|
|
||||||
"approve": "Onetsi",
|
"approve": "Onetsi",
|
||||||
"youHaveKnocked": "Sartzeko baimena eskatu duzu",
|
"youHaveKnocked": "Sartzeko baimena eskatu duzu",
|
||||||
"pleaseWaitUntilInvited": "Orain itxaron gelako norbaitek gonbidatzen zaituen arte.",
|
"pleaseWaitUntilInvited": "Orain itxaron gelako norbaitek gonbidatzen zaituen arte.",
|
||||||
|
|
@ -3024,9 +2662,6 @@
|
||||||
"longPressToRecordVoiceMessage": "Sakatuta mantendu ahots-mezua grabatzeko.",
|
"longPressToRecordVoiceMessage": "Sakatuta mantendu ahots-mezua grabatzeko.",
|
||||||
"pause": "Gelditu",
|
"pause": "Gelditu",
|
||||||
"resume": "Jarraitu",
|
"resume": "Jarraitu",
|
||||||
"moveToDifferentSpace": "Beste gune batera mugitu",
|
|
||||||
"moveUp": "Eraman gora",
|
|
||||||
"moveDown": "Eraman behera",
|
|
||||||
"removeFromSpaceDescription": "Txata gunetik kenduko da, baina txaten zerrendan mantenduko da.",
|
"removeFromSpaceDescription": "Txata gunetik kenduko da, baina txaten zerrendan mantenduko da.",
|
||||||
"countChats": "{chats} txat",
|
"countChats": "{chats} txat",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3037,8 +2672,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Egin dohaintza",
|
|
||||||
"newSubSpace": "Azpi-gune berria",
|
|
||||||
"spaceMemberOf": "{spaces} guneko kidea",
|
"spaceMemberOf": "{spaces} guneko kidea",
|
||||||
"@spaceMemberOf": {
|
"@spaceMemberOf": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3070,7 +2703,6 @@
|
||||||
"startPoll": "Hasi bozketa",
|
"startPoll": "Hasi bozketa",
|
||||||
"endPoll": "Amaitu bozketa",
|
"endPoll": "Amaitu bozketa",
|
||||||
"answersVisible": "Erakutsi emaitzak",
|
"answersVisible": "Erakutsi emaitzak",
|
||||||
"answersHidden": "Ezkutatu emaitzak",
|
|
||||||
"pollQuestion": "Bozketako galdera",
|
"pollQuestion": "Bozketako galdera",
|
||||||
"answerOption": "Erantzun-aukera",
|
"answerOption": "Erantzun-aukera",
|
||||||
"addAnswerOption": "Gehitu erantzun-aukera",
|
"addAnswerOption": "Gehitu erantzun-aukera",
|
||||||
|
|
@ -3135,8 +2767,30 @@
|
||||||
"logs": "Erregistroak",
|
"logs": "Erregistroak",
|
||||||
"advancedConfigs": "Konfigurazio aurreratua",
|
"advancedConfigs": "Konfigurazio aurreratua",
|
||||||
"advancedConfigurations": "Konfigurazio aurreratua",
|
"advancedConfigurations": "Konfigurazio aurreratua",
|
||||||
"signInWithLabel": "Hasi saioa honakoarekin:",
|
|
||||||
"federationBaseUrl": "Federatzeko URL oinarria",
|
"federationBaseUrl": "Federatzeko URL oinarria",
|
||||||
"baseUrl": "URL oinarria",
|
"baseUrl": "URL oinarria",
|
||||||
"identityServer": "Identitate-zerbitzaria:"
|
"identityServer": "Identitate-zerbitzaria:",
|
||||||
}
|
"signIn": "Hasi saioa",
|
||||||
|
"createNewAccount": "Sortu kontu berria",
|
||||||
|
"signUpGreeting": "FluffyChat deszentralizatua da! Hautatu zure kontua zein zerbitzaritan sortu nahi duzun, eta hasi erabiltzen!",
|
||||||
|
"signInGreeting": "Baduzu dagoeneko Matrix kontu bat? Ongi etorri berriro ere! Hautatu zure zerbitzaria eta hasi saioa.",
|
||||||
|
"appIntro": "FluffyChat-i esker lagunekin txateatu dezakezu. [matrix]-erako mezularitza programa seguru eta deszentralizatua da! Nahi baduzu, irakurri gehiago https://matrix.org gunean, edo hasi saioa.",
|
||||||
|
"theProcessWasCanceled": "Eragiketa bertan behera utzi da.",
|
||||||
|
"join": "Batu",
|
||||||
|
"searchOrEnterHomeserverAddress": "Bilatu edo sartu zerbitzariaren helbidea",
|
||||||
|
"matrixId": "Matrix IDa",
|
||||||
|
"setPowerLevel": "Ezarri botere-maila",
|
||||||
|
"makeModerator": "Izendatu moderatzaile",
|
||||||
|
"makeAdmin": "Izendatu administrari",
|
||||||
|
"removeModeratorRights": "Kendu moderatzaile eskubideak",
|
||||||
|
"removeAdminRights": "Kendu administratzaile eskubideak",
|
||||||
|
"powerLevel": "Botere-maila",
|
||||||
|
"setPowerLevelDescription": "Botere-mailek zehazten dute kide batek zer egin dezakeen gela honetan, eta tartea 0tik 100era artekoa izan ohi da.",
|
||||||
|
"owner": "Jabea",
|
||||||
|
"mute": "Mututu",
|
||||||
|
"@mute": {
|
||||||
|
"description": "This should be a very short string because there is not much space in the button!"
|
||||||
|
},
|
||||||
|
"createNewChat": "Sortu txat berria",
|
||||||
|
"reset": "Berrezarri"
|
||||||
|
}
|
||||||
6181
lib/l10n/intl_fa.arb
6181
lib/l10n/intl_fa.arb
File diff suppressed because it is too large
Load diff
|
|
@ -121,18 +121,6 @@
|
||||||
},
|
},
|
||||||
"sendOnEnter": "Lähetä painamalla rivinvaihtonäppäintä",
|
"sendOnEnter": "Lähetä painamalla rivinvaihtonäppäintä",
|
||||||
"@sendOnEnter": {},
|
"@sendOnEnter": {},
|
||||||
"badServerVersionsException": "Kotipalvelin tukee Matrix Spec versio(it)a:\n{serverVersions}, mutta tämä sovellus tukee vain versio(it)a {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"badServerLoginTypesException": "Tämä kotipalvelin tukee sisäänkirjautumistapoja: \n{serverVersions},\nmutta tämä sovellus tukee vain -tapoja: \n{supportedVersions}",
|
"badServerLoginTypesException": "Tämä kotipalvelin tukee sisäänkirjautumistapoja: \n{serverVersions},\nmutta tämä sovellus tukee vain -tapoja: \n{supportedVersions}",
|
||||||
"@badServerLoginTypesException": {
|
"@badServerLoginTypesException": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -177,11 +165,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Bottien lähettämät viestit",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Peruuta",
|
"cancel": "Peruuta",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -372,8 +355,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Keskustelu on lisätty tähän tilaan",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "Keskustelut",
|
"chats": "Keskustelut",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -458,18 +439,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}.{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
||||||
"@dateAndTimeOfDay": {
|
"@dateAndTimeOfDay": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -482,21 +451,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{day}.{month}.{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Tämä poistaa tunnuksesi käytöstä. Tätä ei voi kumota! Oletko varma?",
|
"deactivateAccountWarning": "Tämä poistaa tunnuksesi käytöstä. Tätä ei voi kumota! Oletko varma?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -602,11 +556,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Emote-lyhytkoodi ja kuva on valittava!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Tyhjä keskustelu",
|
"emptyChat": "Tyhjä keskustelu",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -638,11 +587,6 @@
|
||||||
},
|
},
|
||||||
"homeserver": "Kotipalvelin",
|
"homeserver": "Kotipalvelin",
|
||||||
"@homeserver": {},
|
"@homeserver": {},
|
||||||
"enterYourHomeserver": "Syötä kotipalvelimesi",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Virhe paikannuksessa: {error}",
|
"errorObtainingLocation": "Virhe paikannuksessa: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -677,11 +621,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Mene uuteen huoneeseen",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Ryhmä",
|
"group": "Ryhmä",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -753,11 +692,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identiteetti",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Jätä huomioitta",
|
"ignore": "Jätä huomioitta",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -795,11 +729,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Kutsu minua varten",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} kutsui sinut FluffyChattiin.\n1. Viereaile sivulla: https://fluffychat.im ja asenna sovellus\n2. Rekisteröidy tai kirjaudu sisään\n3. Avaa kutsulinkki:\n{link}",
|
"inviteText": "{username} kutsui sinut FluffyChattiin.\n1. Viereaile sivulla: https://fluffychat.im ja asenna sovellus\n2. Rekisteröidy tai kirjaudu sisään\n3. Avaa kutsulinkki:\n{link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -860,11 +789,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Lisenssi",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Vaalea",
|
"lightTheme": "Vaalea",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1083,16 +1007,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Vahvista",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Sisältää käyttäjätunnuksen",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"countParticipants": "{count} osallistujaa",
|
"countParticipants": "{count} osallistujaa",
|
||||||
"@countParticipants": {
|
"@countParticipants": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1156,21 +1070,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"connect": "Yhdistä",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Yhteystieto on kutsuttu ryhmään",
|
"contactHasBeenInvitedToTheGroup": "Yhteystieto on kutsuttu ryhmään",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Sisältää näyttönimen",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Sisältö on ilmoitettu palvelimen ylläpitäjille",
|
"contentHasBeenReported": "Sisältö on ilmoitettu palvelimen ylläpitäjille",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1263,21 +1167,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Tämän tunnuksen ilmoitukset ovat käytössä",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"joinRoom": "Liity huoneeseen",
|
"joinRoom": "Liity huoneeseen",
|
||||||
"@joinRoom": {
|
"@joinRoom": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Jäsenmuutoksia",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"needPantalaimonWarning": "Tiedäthän tarvitsevasi toistaiseksi Pantalaimonin käyttääksesi päästä-päähän-salausta.",
|
"needPantalaimonWarning": "Tiedäthän tarvitsevasi toistaiseksi Pantalaimonin käyttääksesi päästä-päähän-salausta.",
|
||||||
"@needPantalaimonWarning": {
|
"@needPantalaimonWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1367,11 +1261,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Ihmiset",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Valitse kuva",
|
"pickImage": "Valitse kuva",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1391,11 +1280,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Valitse",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Valitse pääsykoodi",
|
"pleaseChooseAPasscode": "Valitse pääsykoodi",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1469,11 +1353,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Liity uudelleen",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Poista",
|
"remove": "Poista",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1493,25 +1372,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Poista laite",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Poista porttikielto keskusteluun",
|
"unbanFromChat": "Poista porttikielto keskusteluun",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Nähnyt {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendAMessage": "Lähetä viesti",
|
"sendAMessage": "Lähetä viesti",
|
||||||
"@sendAMessage": {
|
"@sendAMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1546,31 +1411,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Lähetä alkuperäinen",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "Aseta pääalias",
|
"setAsCanonicalAlias": "Aseta pääalias",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Aseta mukautetut emotet",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Aseta kutsulinkki",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Aseta oikeustasot",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Aseta tila",
|
"setStatus": "Aseta tila",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1595,11 +1440,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"singlesignon": "Kertakirjautuminen",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Ohita",
|
"skip": "Ohita",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1651,21 +1491,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleMuted": "Mykistetty-kytkin",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Liikaa pyyntöjä. Yritä myöhemmin uudelleen!",
|
"tooManyRequestsWarning": "Liikaa pyyntöjä. Yritä myöhemmin uudelleen!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleUnread": "Merkitse lukemattomaksi/luetuksi",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"transferFromAnotherDevice": "Siirrä toiselta laitteelta",
|
"transferFromAnotherDevice": "Siirrä toiselta laitteelta",
|
||||||
"@transferFromAnotherDevice": {
|
"@transferFromAnotherDevice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1823,11 +1653,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Taustakuva:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Varoitus!",
|
"warning": "Varoitus!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1875,8 +1700,6 @@
|
||||||
},
|
},
|
||||||
"removeFromSpace": "Poista tilasta",
|
"removeFromSpace": "Poista tilasta",
|
||||||
"@removeFromSpace": {},
|
"@removeFromSpace": {},
|
||||||
"addToSpaceDescription": "Valitse tila, johon tämä keskustelu lisätään.",
|
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"start": "Aloita",
|
"start": "Aloita",
|
||||||
"@start": {},
|
"@start": {},
|
||||||
"serverRequiresEmail": "Tämän palvelimen täytyy tarkistaa sähköposti-osoitteesi rekisteröitymistä varten.",
|
"serverRequiresEmail": "Tämän palvelimen täytyy tarkistaa sähköposti-osoitteesi rekisteröitymistä varten.",
|
||||||
|
|
@ -1980,11 +1803,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "Lähetä tarra",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"publicRooms": "Julkiset huoneet",
|
"publicRooms": "Julkiset huoneet",
|
||||||
"@publicRooms": {
|
"@publicRooms": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2052,15 +1870,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 lukematon keskustelu} other{{unreadCount} lukematonta keskustelua}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"videoCall": "Videopuhelu",
|
"videoCall": "Videopuhelu",
|
||||||
"@videoCall": {
|
"@videoCall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2082,11 +1891,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Suosikki-kytkin",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unmuteChat": "Poista keskustelun mykistys",
|
"unmuteChat": "Poista keskustelun mykistys",
|
||||||
"@unmuteChat": {
|
"@unmuteChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2150,22 +1954,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /discardsession"
|
"description": "Usage hint for the command /discardsession"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Avaa kamera videokuvausta varten",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"publish": "Julkaise",
|
|
||||||
"@publish": {},
|
|
||||||
"markAsRead": "Merkitse luetuksi",
|
"markAsRead": "Merkitse luetuksi",
|
||||||
"@markAsRead": {},
|
"@markAsRead": {},
|
||||||
"dismiss": "Hylkää",
|
"dismiss": "Hylkää",
|
||||||
|
|
@ -2202,41 +1990,8 @@
|
||||||
"@pinMessage": {},
|
"@pinMessage": {},
|
||||||
"confirmEventUnpin": "Haluatko varmasti irrottaa tapahtuman pysyvästi?",
|
"confirmEventUnpin": "Haluatko varmasti irrottaa tapahtuman pysyvästi?",
|
||||||
"@confirmEventUnpin": {},
|
"@confirmEventUnpin": {},
|
||||||
"widgetVideo": "Video",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"@widgetJitsi": {},
|
|
||||||
"widgetCustom": "Mukautettu",
|
|
||||||
"@widgetCustom": {},
|
|
||||||
"widgetName": "Nimi",
|
|
||||||
"@widgetName": {},
|
|
||||||
"widgetUrlError": "Epäkelvollinen URL.",
|
|
||||||
"@widgetUrlError": {},
|
|
||||||
"errorAddingWidget": "Virhe lisättäessä pienoissovellusta.",
|
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"nextAccount": "Seuraava tili",
|
|
||||||
"@nextAccount": {},
|
|
||||||
"switchToAccount": "Siirry tilille {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"experimentalVideoCalls": "Kokeelliset videopuhelut",
|
"experimentalVideoCalls": "Kokeelliset videopuhelut",
|
||||||
"@experimentalVideoCalls": {},
|
"@experimentalVideoCalls": {},
|
||||||
"emailOrUsername": "Sähköposti-osoite tai käyttäjätunnus",
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"previousAccount": "Edellinen tili",
|
|
||||||
"@previousAccount": {},
|
|
||||||
"widgetEtherpad": "Tekstimuotoinen muistiinpano",
|
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"widgetNameError": "Syötä näyttönimi.",
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"addWidget": "Lisää pienoissovellus",
|
|
||||||
"@addWidget": {},
|
|
||||||
"youRejectedTheInvitation": "Kieltäydyit kutsusta",
|
"youRejectedTheInvitation": "Kieltäydyit kutsusta",
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"youJoinedTheChat": "Liityit keskusteluun",
|
"youJoinedTheChat": "Liityit keskusteluun",
|
||||||
|
|
@ -2299,25 +2054,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"separateChatTypes": "Erota yksityiskeskustelut ryhmistä",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"dehydrateTor": "TOR-käyttäjät: vie istunto",
|
|
||||||
"@dehydrateTor": {},
|
|
||||||
"hydrateTor": "TOR-käyttäjät: tuo viety istunto",
|
|
||||||
"@hydrateTor": {},
|
|
||||||
"hydrateTorLong": "Veitkö edellisen istuntosi käyttäessäsi TORia? Tuo se nopeasti ja jatka jutustelua.",
|
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"pleaseEnterRecoveryKey": "Syötä palautusavaimesi:",
|
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"recoveryKey": "Palautusavain",
|
"recoveryKey": "Palautusavain",
|
||||||
"@recoveryKey": {},
|
"@recoveryKey": {},
|
||||||
"recoveryKeyLost": "Kadonnut palautusavain?",
|
"recoveryKeyLost": "Kadonnut palautusavain?",
|
||||||
"@recoveryKeyLost": {},
|
"@recoveryKeyLost": {},
|
||||||
"dehydrateTorLong": "Tor-käyttäjille suositellaan istunnon vientiä ennen ikkunan sulkemista.",
|
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"hydrate": "Palauta varmuuskopiotiedostosta",
|
"hydrate": "Palauta varmuuskopiotiedostosta",
|
||||||
"@hydrate": {},
|
"@hydrate": {},
|
||||||
"dehydrate": "Vie istunto ja tyhjennä laite",
|
"dehydrate": "Vie istunto ja tyhjennä laite",
|
||||||
|
|
@ -2332,8 +2072,6 @@
|
||||||
"@pleaseEnterRecoveryKeyDescription": {},
|
"@pleaseEnterRecoveryKeyDescription": {},
|
||||||
"unlockOldMessages": "Pura vanhojen viestien salaus",
|
"unlockOldMessages": "Pura vanhojen viestien salaus",
|
||||||
"@unlockOldMessages": {},
|
"@unlockOldMessages": {},
|
||||||
"indexedDbErrorLong": "Viestivarasto ei ole käytössä yksityisselauksessa oletuksena.\nKäythän osoitteessa\n - about:config\n - Aseta dom.indexedDB.privateBrowsing.enabled arvoon true\nMuuten FluffyChatin käyttäminen ei ole mahdollista.",
|
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"saveKeyManuallyDescription": "Tallenna tämä avain manuaalisesti käyttäen järjestelmän jakodialogia tai leikepöytää.",
|
"saveKeyManuallyDescription": "Tallenna tämä avain manuaalisesti käyttäen järjestelmän jakodialogia tai leikepöytää.",
|
||||||
"@saveKeyManuallyDescription": {},
|
"@saveKeyManuallyDescription": {},
|
||||||
"storeInAndroidKeystore": "Tallenna Android KeyStoreen",
|
"storeInAndroidKeystore": "Tallenna Android KeyStoreen",
|
||||||
|
|
@ -2350,8 +2088,6 @@
|
||||||
},
|
},
|
||||||
"storeInSecureStorageDescription": "Tallenna palautusavain tämän laitteen turvavarastoon.",
|
"storeInSecureStorageDescription": "Tallenna palautusavain tämän laitteen turvavarastoon.",
|
||||||
"@storeInSecureStorageDescription": {},
|
"@storeInSecureStorageDescription": {},
|
||||||
"indexedDbErrorTitle": "Yksityisen selauksen ongelmat",
|
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"user": "Käyttäjä",
|
"user": "Käyttäjä",
|
||||||
"@user": {},
|
"@user": {},
|
||||||
"custom": "Mukautettu",
|
"custom": "Mukautettu",
|
||||||
|
|
@ -2377,28 +2113,12 @@
|
||||||
"@commandHint_markasdm": {},
|
"@commandHint_markasdm": {},
|
||||||
"foregroundServiceRunning": "Tämä ilmoitus näkyy etualapalvelun ollessa käynnissä.",
|
"foregroundServiceRunning": "Tämä ilmoitus näkyy etualapalvelun ollessa käynnissä.",
|
||||||
"@foregroundServiceRunning": {},
|
"@foregroundServiceRunning": {},
|
||||||
"callingPermissions": "Puheluoikeudet",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"callingAccount": "Soittamistunnus",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"callingAccountDetails": "Sallii FluffyChatin käyttää Androidin omaa Puhelut-sovellusta.",
|
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"appearOnTop": "Näy päällä",
|
|
||||||
"@appearOnTop": {},
|
|
||||||
"appearOnTopDetails": "Sallii sovelluksen näkyä muiden sovellusten päällä (tätä ei tarvita, mikäli olet jo määrittänyt FluffyChatin puhelin-tunnukseksi)",
|
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"newSpace": "Uusi tila",
|
"newSpace": "Uusi tila",
|
||||||
"@newSpace": {},
|
"@newSpace": {},
|
||||||
"enterSpace": "Siirry tilaan",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"enterRoom": "Siirry huoneeseen",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"allSpaces": "Kaikki tilat",
|
"allSpaces": "Kaikki tilat",
|
||||||
"@allSpaces": {},
|
"@allSpaces": {},
|
||||||
"screenSharingTitle": "ruudunjako",
|
"screenSharingTitle": "ruudunjako",
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"otherCallingPermissions": "Mikrofoni, kamera ja muut FluffyChatin oikeudet",
|
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"newGroup": "Uusi ryhmä",
|
"newGroup": "Uusi ryhmä",
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"screenSharingDetail": "Jaat ruutuasi FluffyChatissä",
|
"screenSharingDetail": "Jaat ruutuasi FluffyChatissä",
|
||||||
|
|
@ -2432,21 +2152,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"numChats": "{number} keskustelua",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"commandHint_googly": "Lähetä askartelusilmiä",
|
"commandHint_googly": "Lähetä askartelusilmiä",
|
||||||
"@commandHint_googly": {},
|
"@commandHint_googly": {},
|
||||||
"commandHint_cuddle": "Lähetä kokovartaluhalaus",
|
"commandHint_cuddle": "Lähetä kokovartaluhalaus",
|
||||||
"@commandHint_cuddle": {},
|
"@commandHint_cuddle": {},
|
||||||
"hideUnimportantStateEvents": "Piilota ei-niin-tärkeät tilatapahtumat",
|
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"doNotShowAgain": "Älä näytä uudelleen",
|
"doNotShowAgain": "Älä näytä uudelleen",
|
||||||
"@doNotShowAgain": {},
|
"@doNotShowAgain": {},
|
||||||
"fileHasBeenSavedAt": "Tiedosto on tallennettu sijaintiin {path}",
|
"fileHasBeenSavedAt": "Tiedosto on tallennettu sijaintiin {path}",
|
||||||
|
|
@ -2460,13 +2169,6 @@
|
||||||
},
|
},
|
||||||
"disableEncryptionWarning": "Turvallisuuden vuoksi et voi poistaa salausta käytöstä huoneista, joissa se on aiemmin otettu käyttöön.",
|
"disableEncryptionWarning": "Turvallisuuden vuoksi et voi poistaa salausta käytöstä huoneista, joissa se on aiemmin otettu käyttöön.",
|
||||||
"@disableEncryptionWarning": {},
|
"@disableEncryptionWarning": {},
|
||||||
"allRooms": "Kaikki ryhmäkeskustelut",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"startFirstChat": "Aloita ensimmäinen keskustelusi",
|
|
||||||
"@startFirstChat": {},
|
|
||||||
"newSpaceDescription": "Tilat mahdollistavat keskusteluidesi keräämisen ja yksityisten tai julkisten yhteisöjen rakentamisen.",
|
"newSpaceDescription": "Tilat mahdollistavat keskusteluidesi keräämisen ja yksityisten tai julkisten yhteisöjen rakentamisen.",
|
||||||
"@newSpaceDescription": {},
|
"@newSpaceDescription": {},
|
||||||
"deviceKeys": "Laite-avaimet:",
|
"deviceKeys": "Laite-avaimet:",
|
||||||
|
|
@ -2504,10 +2206,6 @@
|
||||||
},
|
},
|
||||||
"sorryThatsNotPossible": "Anteeksi... se ei ole mahdollista",
|
"sorryThatsNotPossible": "Anteeksi... se ei ole mahdollista",
|
||||||
"@sorryThatsNotPossible": {},
|
"@sorryThatsNotPossible": {},
|
||||||
"signInWithPassword": "Kirjaudu sisään salasanalla",
|
|
||||||
"@signInWithPassword": {},
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Yritä myöhemmin uudelleen tai valitse toinen palvelin.",
|
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"setColorTheme": "Aseta väriteema:",
|
"setColorTheme": "Aseta väriteema:",
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"tryAgain": "Yritä uudelleen",
|
"tryAgain": "Yritä uudelleen",
|
||||||
|
|
@ -2533,23 +2231,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"signInWith": "Kirjaudu sisään palvelulla {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"optionalRedactReason": "(Vapaaehtoinen) Syy tämän viestin poistamiselle...",
|
"optionalRedactReason": "(Vapaaehtoinen) Syy tämän viestin poistamiselle...",
|
||||||
"@optionalRedactReason": {},
|
"@optionalRedactReason": {},
|
||||||
"archiveRoomDescription": "Keskustelu siirretään arkistoon. Muut käyttäjät näkevät sinun poistuneen keskustelusta.",
|
"archiveRoomDescription": "Keskustelu siirretään arkistoon. Muut käyttäjät näkevät sinun poistuneen keskustelusta.",
|
||||||
"@archiveRoomDescription": {},
|
"@archiveRoomDescription": {},
|
||||||
"exportEmotePack": "Vie emotepaketti .zip-tiedostona",
|
"exportEmotePack": "Vie emotepaketti .zip-tiedostona",
|
||||||
"@exportEmotePack": {},
|
"@exportEmotePack": {},
|
||||||
"inviteContactToGroupQuestion": "Tahdotko kutsua yhteystiedon {contact} keskusteluun \"{groupName}\"?",
|
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"redactedByBecause": "Poistanut {username} syystä: \"{reason}\"",
|
"redactedByBecause": "Poistanut {username} syystä: \"{reason}\"",
|
||||||
"@redactedByBecause": {
|
"@redactedByBecause": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2566,8 +2253,6 @@
|
||||||
"@redactMessageDescription": {},
|
"@redactMessageDescription": {},
|
||||||
"invalidInput": "Virheellinen syöte!",
|
"invalidInput": "Virheellinen syöte!",
|
||||||
"@invalidInput": {},
|
"@invalidInput": {},
|
||||||
"addChatDescription": "Lisää keskustelulle kuvaus...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"hasKnocked": "🚪 {user} on koputtanut",
|
"hasKnocked": "🚪 {user} on koputtanut",
|
||||||
"@hasKnocked": {
|
"@hasKnocked": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2591,8 +2276,6 @@
|
||||||
"@sendTypingNotifications": {},
|
"@sendTypingNotifications": {},
|
||||||
"inviteGroupChat": "📨 Kutsu ryhmäkeskusteluun",
|
"inviteGroupChat": "📨 Kutsu ryhmäkeskusteluun",
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"invitePrivateChat": "📨 Kutsu yksityiskeskusteluun",
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"importEmojis": "Tuo emojit",
|
"importEmojis": "Tuo emojit",
|
||||||
"@importEmojis": {},
|
"@importEmojis": {},
|
||||||
"noChatDescriptionYet": "Keskustelun kuvausta ei ole vielä luotu.",
|
"noChatDescriptionYet": "Keskustelun kuvausta ei ole vielä luotu.",
|
||||||
|
|
@ -2605,8 +2288,6 @@
|
||||||
"@roomUpgradeDescription": {},
|
"@roomUpgradeDescription": {},
|
||||||
"pleaseEnterANumber": "Syötä suurempi luku kuin 0",
|
"pleaseEnterANumber": "Syötä suurempi luku kuin 0",
|
||||||
"@pleaseEnterANumber": {},
|
"@pleaseEnterANumber": {},
|
||||||
"profileNotFound": "Käyttäjää ei löydy palvelimelta. Tämä voi olla yhteysongelma tai käyttäjä ei ole olemassa.",
|
|
||||||
"@profileNotFound": {},
|
|
||||||
"shareInviteLink": "Jaa kutsulinkki",
|
"shareInviteLink": "Jaa kutsulinkki",
|
||||||
"@shareInviteLink": {},
|
"@shareInviteLink": {},
|
||||||
"emoteKeyboardNoRecents": "Viimeaikoina käytetyt emotet tulevat näkymään täällä...",
|
"emoteKeyboardNoRecents": "Viimeaikoina käytetyt emotet tulevat näkymään täällä...",
|
||||||
|
|
@ -2614,8 +2295,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setTheme": "Aseta teema:",
|
|
||||||
"@setTheme": {},
|
|
||||||
"replace": "Korvaa",
|
"replace": "Korvaa",
|
||||||
"@replace": {},
|
"@replace": {},
|
||||||
"createGroup": "Luo ryhmä",
|
"createGroup": "Luo ryhmä",
|
||||||
|
|
@ -2686,20 +2365,10 @@
|
||||||
"@pause": {},
|
"@pause": {},
|
||||||
"resume": "Jatka",
|
"resume": "Jatka",
|
||||||
"@resume": {},
|
"@resume": {},
|
||||||
"moveUp": "Siirrä ylös",
|
|
||||||
"@moveUp": {},
|
|
||||||
"moveDown": "Siirrä alas",
|
|
||||||
"@moveDown": {},
|
|
||||||
"poll": "Kysely",
|
"poll": "Kysely",
|
||||||
"@poll": {},
|
"@poll": {},
|
||||||
"setCustomPermissionLevel": "Aseta mukautettu lupataso",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"setPermissionsLevelDescription": "Valitse alla oleva ennalta määritetty rooli tai anna mukautettu lupataso väliltä 0–100.",
|
|
||||||
"@setPermissionsLevelDescription": {},
|
|
||||||
"ignoreUser": "Jätä huomiotta",
|
"ignoreUser": "Jätä huomiotta",
|
||||||
"@ignoreUser": {},
|
"@ignoreUser": {},
|
||||||
"normalUser": "Peruskäyttäjä",
|
|
||||||
"@normalUser": {},
|
|
||||||
"aboutHomeserver": "Tietoja {homeserver}:sta",
|
"aboutHomeserver": "Tietoja {homeserver}:sta",
|
||||||
"@aboutHomeserver": {
|
"@aboutHomeserver": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2713,22 +2382,8 @@
|
||||||
"@commandHint_roomupgrade": {},
|
"@commandHint_roomupgrade": {},
|
||||||
"appLockDescription": "Lukitse sovellus kun sitä ei käytetä PIN-koodin kanssa",
|
"appLockDescription": "Lukitse sovellus kun sitä ei käytetä PIN-koodin kanssa",
|
||||||
"@appLockDescription": {},
|
"@appLockDescription": {},
|
||||||
"countChatsAndCountParticipants": "{chats} pikakeskustelut ja {participants} osallistujat",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noChatsFoundHere": "Täältä ei löytynyt vielä pikakeskusteluja. Aloita uusi pikakeskustelu jonkun kanssa alla olevalla painikkeella. ⤵️",
|
"noChatsFoundHere": "Täältä ei löytynyt vielä pikakeskusteluja. Aloita uusi pikakeskustelu jonkun kanssa alla olevalla painikkeella. ⤵️",
|
||||||
"@noChatsFoundHere": {},
|
"@noChatsFoundHere": {},
|
||||||
"joinedChats": "Liittyneet pikakeskustelut",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"space": "Tila",
|
"space": "Tila",
|
||||||
"@space": {},
|
"@space": {},
|
||||||
"spaces": "Tilat",
|
"spaces": "Tilat",
|
||||||
|
|
@ -2762,16 +2417,10 @@
|
||||||
"@blockedUsers": {},
|
"@blockedUsers": {},
|
||||||
"blockListDescription": "Voit estää sinua häiritsevät käyttäjät. Et voi vastaanottaa viestejä tai huonekutsuja henkilökohtaisella estolistallasi olevilta käyttäjiltä.",
|
"blockListDescription": "Voit estää sinua häiritsevät käyttäjät. Et voi vastaanottaa viestejä tai huonekutsuja henkilökohtaisella estolistallasi olevilta käyttäjiltä.",
|
||||||
"@blockListDescription": {},
|
"@blockListDescription": {},
|
||||||
"hideMemberChangesInPublicChats": "Piilota jäsenten muutokset julkisissa pikakeskusteluissa",
|
|
||||||
"@hideMemberChangesInPublicChats": {},
|
|
||||||
"hideMemberChangesInPublicChatsBody": "Älä näytä pikakeskustelun aikajanalla, jos joku liittyy julkiseen pikakeskusteluun tai poistuu siitä luettavuuden parantamiseksi.",
|
|
||||||
"@hideMemberChangesInPublicChatsBody": {},
|
|
||||||
"blockUsername": "Jätä käyttäjänimi huomiotta",
|
"blockUsername": "Jätä käyttäjänimi huomiotta",
|
||||||
"@blockUsername": {},
|
"@blockUsername": {},
|
||||||
"overview": "Yleiskatsaus",
|
"overview": "Yleiskatsaus",
|
||||||
"@overview": {},
|
"@overview": {},
|
||||||
"notifyMeFor": "Ilmoita minulle",
|
|
||||||
"@notifyMeFor": {},
|
|
||||||
"passwordRecoverySettings": "Salasanan palautusasetukset",
|
"passwordRecoverySettings": "Salasanan palautusasetukset",
|
||||||
"@passwordRecoverySettings": {},
|
"@passwordRecoverySettings": {},
|
||||||
"sendImages": "Lähetä {count} kuva",
|
"sendImages": "Lähetä {count} kuva",
|
||||||
|
|
@ -2783,11 +2432,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"presenceStyle": "Läsnäolo:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "Näytä muiden käyttäjien tilaviestit",
|
"presencesToggle": "Näytä muiden käyttäjien tilaviestit",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2802,14 +2446,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Sinut on kutsuttu linkin kautta kohteeseen:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"invitedBy": "📩 Kutsujana {user}",
|
"invitedBy": "📩 Kutsujana {user}",
|
||||||
"@invitedBy": {
|
"@invitedBy": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2822,16 +2458,6 @@
|
||||||
"@usersMustKnock": {},
|
"@usersMustKnock": {},
|
||||||
"noOneCanJoin": "Kukaan ei voi liittyä",
|
"noOneCanJoin": "Kukaan ei voi liittyä",
|
||||||
"@noOneCanJoin": {},
|
"@noOneCanJoin": {},
|
||||||
"userWouldLikeToChangeTheChat": "{user} haluaa liittyä pikakeskusteluun.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Julkista linkkiä ei ole vielä luotu",
|
|
||||||
"@noPublicLinkHasBeenCreatedYet": {},
|
|
||||||
"knock": "Koputa",
|
"knock": "Koputa",
|
||||||
"@knock": {},
|
"@knock": {},
|
||||||
"hidePresences": "Piilotetaanko tilaluettelo?",
|
"hidePresences": "Piilotetaanko tilaluettelo?",
|
||||||
|
|
@ -2884,8 +2510,6 @@
|
||||||
"@groupCanBeFoundViaSearch": {},
|
"@groupCanBeFoundViaSearch": {},
|
||||||
"wrongRecoveryKey": "Pahoittelut... tämä ei vaikuta olevan oikea palautusavain.",
|
"wrongRecoveryKey": "Pahoittelut... tämä ei vaikuta olevan oikea palautusavain.",
|
||||||
"@wrongRecoveryKey": {},
|
"@wrongRecoveryKey": {},
|
||||||
"startConversation": "Aloita keskustelu",
|
|
||||||
"@startConversation": {},
|
|
||||||
"commandHint_sendraw": "Lähetä raaka JSON",
|
"commandHint_sendraw": "Lähetä raaka JSON",
|
||||||
"@commandHint_sendraw": {},
|
"@commandHint_sendraw": {},
|
||||||
"databaseMigrationTitle": "Tietokanta on optimoitu",
|
"databaseMigrationTitle": "Tietokanta on optimoitu",
|
||||||
|
|
@ -2894,8 +2518,6 @@
|
||||||
"@databaseMigrationBody": {},
|
"@databaseMigrationBody": {},
|
||||||
"leaveEmptyToClearStatus": "Jätä tyhjäksi tyhjentääksesi tilasi.",
|
"leaveEmptyToClearStatus": "Jätä tyhjäksi tyhjentääksesi tilasi.",
|
||||||
"@leaveEmptyToClearStatus": {},
|
"@leaveEmptyToClearStatus": {},
|
||||||
"publicLink": "Julkinen linkki",
|
|
||||||
"@publicLink": {},
|
|
||||||
"publicChatAddresses": "Julkiset keskusteluosoitteet",
|
"publicChatAddresses": "Julkiset keskusteluosoitteet",
|
||||||
"@publicChatAddresses": {},
|
"@publicChatAddresses": {},
|
||||||
"createNewAddress": "Luo uusi osoite",
|
"createNewAddress": "Luo uusi osoite",
|
||||||
|
|
@ -2906,23 +2528,8 @@
|
||||||
"@publicSpaces": {},
|
"@publicSpaces": {},
|
||||||
"addChatOrSubSpace": "Lisää pikakeskustelu tai alitila",
|
"addChatOrSubSpace": "Lisää pikakeskustelu tai alitila",
|
||||||
"@addChatOrSubSpace": {},
|
"@addChatOrSubSpace": {},
|
||||||
"subspace": "Alitila",
|
|
||||||
"@subspace": {},
|
|
||||||
"decline": "Hylkää",
|
|
||||||
"@decline": {},
|
|
||||||
"initAppError": "Sovelluksen alustamisessa tapahtui virhe",
|
"initAppError": "Sovelluksen alustamisessa tapahtui virhe",
|
||||||
"@initAppError": {},
|
"@initAppError": {},
|
||||||
"userRole": "Käyttäjärooli",
|
|
||||||
"@userRole": {},
|
|
||||||
"minimumPowerLevel": "{level} on pienin tehotaso.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"searchIn": "Hae keskustelusta \"{chat}\"...",
|
"searchIn": "Hae keskustelusta \"{chat}\"...",
|
||||||
"@searchIn": {
|
"@searchIn": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2934,18 +2541,6 @@
|
||||||
},
|
},
|
||||||
"searchMore": "Hae lisää...",
|
"searchMore": "Hae lisää...",
|
||||||
"@searchMore": {},
|
"@searchMore": {},
|
||||||
"databaseBuildErrorBody": "SQlite-tietokantaa ei voida rakentaa. Sovellus yrittää toistaiseksi käyttää vanhaa tietokantaa. Ilmoita tästä virheestä kehittäjille osoitteessa {url}. Virheviesti on: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sessionLostBody": "Istuntosi on menetetty. Ilmoita tästä virheestä kehittäjille osoitteessa {url}. Virheviesti on: {error}",
|
"sessionLostBody": "Istuntosi on menetetty. Ilmoita tästä virheestä kehittäjille osoitteessa {url}. Virheviesti on: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2970,15 +2565,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"forwardMessageTo": "Lähetätkö viestin edelleen kohteeseen {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceipts": "Lähetä lukukuittaukset",
|
"sendReadReceipts": "Lähetä lukukuittaukset",
|
||||||
"@sendReadReceipts": {},
|
"@sendReadReceipts": {},
|
||||||
"sendTypingNotificationsDescription": "Muut keskustelun osallistujat näkevät, milloin olet kirjoittamassa uutta viestiä.",
|
"sendTypingNotificationsDescription": "Muut keskustelun osallistujat näkevät, milloin olet kirjoittamassa uutta viestiä.",
|
||||||
|
|
@ -3149,12 +2735,6 @@
|
||||||
"@sendCanceled": {},
|
"@sendCanceled": {},
|
||||||
"loginWithMatrixId": "Kirjaudu sisään Matrix-tunnuksella",
|
"loginWithMatrixId": "Kirjaudu sisään Matrix-tunnuksella",
|
||||||
"@loginWithMatrixId": {},
|
"@loginWithMatrixId": {},
|
||||||
"discoverHomeservers": "Tutustu kotipalvelimiin",
|
|
||||||
"@discoverHomeservers": {},
|
|
||||||
"whatIsAHomeserver": "Mikä on kotipalvelin?",
|
|
||||||
"@whatIsAHomeserver": {},
|
|
||||||
"homeserverDescription": "Kaikki tietosi tallennetaan kotipalvelimelle, aivan kuten sähköpostipalveluntarjoaja. Voit valita, mitä kotipalvelinta haluat käyttää, ja silti kommunikoida kaikkien kanssa. Lisätietoja osoitteessa https://matrix.org.",
|
|
||||||
"@homeserverDescription": {},
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Ei näytä olevan yhteensopiva kotipalvelin. Väärä URL-osoite?",
|
"doesNotSeemToBeAValidHomeserver": "Ei näytä olevan yhteensopiva kotipalvelin. Väärä URL-osoite?",
|
||||||
"@doesNotSeemToBeAValidHomeserver": {},
|
"@doesNotSeemToBeAValidHomeserver": {},
|
||||||
"calculatingFileSize": "Lasketaan tiedoston kokoa...",
|
"calculatingFileSize": "Lasketaan tiedoston kokoa...",
|
||||||
|
|
@ -3239,8 +2819,6 @@
|
||||||
"@appWantsToUseForLoginDescription": {},
|
"@appWantsToUseForLoginDescription": {},
|
||||||
"waitingForServer": "Odotetaan palvelinta...",
|
"waitingForServer": "Odotetaan palvelinta...",
|
||||||
"@waitingForServer": {},
|
"@waitingForServer": {},
|
||||||
"appIntroduction": "FluffyChatin avulla voit keskustella ystäviesi kanssa eri pikaviestimien kautta. Lue lisää osoitteesta https://matrix.org tai napauta *Jatka*.",
|
|
||||||
"@appIntroduction": {},
|
|
||||||
"newChatRequest": "📩 Uusi pikakeskustelupyyntö",
|
"newChatRequest": "📩 Uusi pikakeskustelupyyntö",
|
||||||
"@newChatRequest": {},
|
"@newChatRequest": {},
|
||||||
"contentNotificationSettings": "Sisältöilmoitusten asetukset",
|
"contentNotificationSettings": "Sisältöilmoitusten asetukset",
|
||||||
|
|
@ -3396,10 +2974,6 @@
|
||||||
"@noMessagesYet": {},
|
"@noMessagesYet": {},
|
||||||
"longPressToRecordVoiceMessage": "Pitkä painallus ääniviestin tallentamiseksi.",
|
"longPressToRecordVoiceMessage": "Pitkä painallus ääniviestin tallentamiseksi.",
|
||||||
"@longPressToRecordVoiceMessage": {},
|
"@longPressToRecordVoiceMessage": {},
|
||||||
"newSubSpace": "Uusi alitila",
|
|
||||||
"@newSubSpace": {},
|
|
||||||
"moveToDifferentSpace": "Siirry eri tilaan",
|
|
||||||
"@moveToDifferentSpace": {},
|
|
||||||
"removeFromSpaceDescription": "Pikakeskustelu poistetaan tilasta, mutta se näkyy edelleen pikakeskusteluluettelossasi.",
|
"removeFromSpaceDescription": "Pikakeskustelu poistetaan tilasta, mutta se näkyy edelleen pikakeskusteluluettelossasi.",
|
||||||
"@removeFromSpaceDescription": {},
|
"@removeFromSpaceDescription": {},
|
||||||
"countChats": "{chats} pikakeskustelua",
|
"countChats": "{chats} pikakeskustelua",
|
||||||
|
|
@ -3429,8 +3003,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Lahjoita",
|
|
||||||
"@donate": {},
|
|
||||||
"startedAPoll": "{username} aloitti kyselyn.",
|
"startedAPoll": "{username} aloitti kyselyn.",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3446,8 +3018,6 @@
|
||||||
"@endPoll": {},
|
"@endPoll": {},
|
||||||
"answersVisible": "Vastaukset näkyvissä",
|
"answersVisible": "Vastaukset näkyvissä",
|
||||||
"@answersVisible": {},
|
"@answersVisible": {},
|
||||||
"answersHidden": "Vastaukset piilotettu",
|
|
||||||
"@answersHidden": {},
|
|
||||||
"pollQuestion": "Kyselykysymys",
|
"pollQuestion": "Kyselykysymys",
|
||||||
"@pollQuestion": {},
|
"@pollQuestion": {},
|
||||||
"answerOption": "Vastausvaihtoehto",
|
"answerOption": "Vastausvaihtoehto",
|
||||||
|
|
@ -3484,4 +3054,4 @@
|
||||||
"@thread": {},
|
"@thread": {},
|
||||||
"backToMainChat": "Takaisin pääpikakeskusteluun",
|
"backToMainChat": "Takaisin pääpikakeskusteluun",
|
||||||
"@backToMainChat": {}
|
"@backToMainChat": {}
|
||||||
}
|
}
|
||||||
|
|
@ -29,8 +29,6 @@
|
||||||
},
|
},
|
||||||
"confirmMatrixId": "Paki-kumpirma ang iyong Matrix ID para burahin ang iyong account.",
|
"confirmMatrixId": "Paki-kumpirma ang iyong Matrix ID para burahin ang iyong account.",
|
||||||
"@confirmMatrixId": {},
|
"@confirmMatrixId": {},
|
||||||
"addChatDescription": "Magdagdag ng deskripsyon ng chat...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"admin": "Admin",
|
"admin": "Admin",
|
||||||
"@admin": {
|
"@admin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -207,8 +205,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Nadagdag ang chat sa space na ito",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "Mga Chat",
|
"chats": "Mga Chat",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -317,18 +313,6 @@
|
||||||
},
|
},
|
||||||
"sendOnEnter": "Ipadala sa pagpindot ng enter",
|
"sendOnEnter": "Ipadala sa pagpindot ng enter",
|
||||||
"@sendOnEnter": {},
|
"@sendOnEnter": {},
|
||||||
"badServerVersionsException": "Ang homeserver ay sinusuportahan ang mga Spec bersyon:\n{serverVersions}\nNgunit sinusuportahan lang ng app ang {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Pagbawalan sa chat",
|
"banFromChat": "Pagbawalan sa chat",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -339,11 +323,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Mga mensahe ng bot",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Kanselahin",
|
"cancel": "Kanselahin",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -510,11 +489,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Kumpirmahin",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"compareNumbersMatch": "Paki-kumpara ang mga numero",
|
"compareNumbersMatch": "Paki-kumpara ang mga numero",
|
||||||
"@compareNumbersMatch": {
|
"@compareNumbersMatch": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -580,11 +554,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"allRooms": "Lahat ng Mga Group Chat",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"downloadFile": "I-download ang file",
|
"downloadFile": "I-download ang file",
|
||||||
"@downloadFile": {
|
"@downloadFile": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -728,16 +697,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"connect": "Kumonekta",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsDisplayName": "Naglalaman ng display name",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"create": "Gumawa",
|
"create": "Gumawa",
|
||||||
"@create": {
|
"@create": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -755,33 +714,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}/{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{month}/{day}/{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Ide-deactivate nito ang iyong user account. Hindi na ito maaaring bawiin! Sigurado ka?",
|
"deactivateAccountWarning": "Ide-deactivate nito ang iyong user account. Hindi na ito maaaring bawiin! Sigurado ka?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -833,11 +765,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Kailangan mong pumili ng emote shortcode at isang larawan!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"enableEmotesGlobally": "I-enable ang emote pack globally",
|
"enableEmotesGlobally": "I-enable ang emote pack globally",
|
||||||
"@enableEmotesGlobally": {
|
"@enableEmotesGlobally": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -859,11 +786,6 @@
|
||||||
},
|
},
|
||||||
"homeserver": "Homeserver",
|
"homeserver": "Homeserver",
|
||||||
"@homeserver": {},
|
"@homeserver": {},
|
||||||
"enterYourHomeserver": "Ilagay ang iyong homeserver",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"extremeOffensive": "Lubhang nakakasakit",
|
"extremeOffensive": "Lubhang nakakasakit",
|
||||||
"@extremeOffensive": {
|
"@extremeOffensive": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -889,11 +811,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsUserName": "Naglalaman ng username",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Inulat ang nilalaman sa mga pangangasiwa ng server",
|
"contentHasBeenReported": "Inulat ang nilalaman sa mga pangangasiwa ng server",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -976,18 +893,6 @@
|
||||||
},
|
},
|
||||||
"space": "Espasyo",
|
"space": "Espasyo",
|
||||||
"@space": {},
|
"@space": {},
|
||||||
"countChatsAndCountParticipants": "{chats} mga chat at {participants} mga kasali",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"guestsAreForbidden": "Pinagbabawal ang mga bisita",
|
"guestsAreForbidden": "Pinagbabawal ang mga bisita",
|
||||||
"@guestsAreForbidden": {
|
"@guestsAreForbidden": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1013,11 +918,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Pumunta sa bagong room",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Grupo",
|
"group": "Grupo",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1027,8 +927,6 @@
|
||||||
"@swipeRightToLeftToReply": {},
|
"@swipeRightToLeftToReply": {},
|
||||||
"noMoreChatsFound": "Wala nang mga chat na nahanap…",
|
"noMoreChatsFound": "Wala nang mga chat na nahanap…",
|
||||||
"@noMoreChatsFound": {},
|
"@noMoreChatsFound": {},
|
||||||
"joinedChats": "Mga nasaling chat",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"unread": "Hindi nabasa",
|
"unread": "Hindi nabasa",
|
||||||
"@unread": {},
|
"@unread": {},
|
||||||
"spaces": "Mga Espasyo",
|
"spaces": "Mga Espasyo",
|
||||||
|
|
@ -1060,4 +958,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -131,18 +131,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Le serveur d'accueil prend en charge les versions des spécifications :\n{serverVersions}\nMais cette application ne prend en charge que {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Bannir de la discussion",
|
"banFromChat": "Bannir de la discussion",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -175,11 +163,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Messages de bot",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -393,8 +376,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "La discussion a été ajoutée à cet espace",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "Discussions",
|
"chats": "Discussions",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -511,31 +492,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Confirmer",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Se connecter",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Le contact a été invité au groupe",
|
"contactHasBeenInvitedToTheGroup": "Le contact a été invité au groupe",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Contient un nom d'affichage",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Contient un nom d'utilisateur·ice",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Le contenu a été signalé aux administrateurs du serveur",
|
"contentHasBeenReported": "Le contenu a été signalé aux administrateurs du serveur",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -615,33 +576,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}/{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}/{month}/{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Cette opération va désactiver votre compte. Une fois cette action effectuée, aucun retour en arrière n'est possible ! Êtes-vous sûr·e ?",
|
"deactivateAccountWarning": "Cette opération va désactiver votre compte. Une fois cette action effectuée, aucun retour en arrière n'est possible ! Êtes-vous sûr·e ?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -747,11 +681,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Vous devez sélectionner un raccourci d'émoticône et une image !",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Discussion vide",
|
"emptyChat": "Discussion vide",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -801,11 +730,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Renseignez votre serveur d'accueil",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Erreur lors de l'obtention de la localisation : {error}",
|
"errorObtainingLocation": "Erreur lors de l'obtention de la localisation : {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -855,11 +779,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Aller dans le nouveau salon",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Groupe",
|
"group": "Groupe",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -931,11 +850,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identité",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Ignorer",
|
"ignore": "Ignorer",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -997,11 +911,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Inviter pour moi",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} vous a invité·e sur FluffyChat.\n1. Visiter fluffychat.im et installer l'application\n2. Inscrivez-vous ou connectez-vous\n3. Ouvrez le lien d'invitation :\n{link}",
|
"inviteText": "{username} vous a invité·e sur FluffyChat.\n1. Visiter fluffychat.im et installer l'application\n2. Inscrivez-vous ou connectez-vous\n3. Ouvrez le lien d'invitation :\n{link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1081,11 +990,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licence",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Clair",
|
"lightTheme": "Clair",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1139,11 +1043,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Changements de membres",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Mentionner",
|
"mention": "Mentionner",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1251,11 +1150,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Notifications activées pour ce compte",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} utilisateur·ices écrivent…",
|
"numUsersTyping": "{count} utilisateur·ices écrivent…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1355,11 +1249,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Personnes",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Choisir une image",
|
"pickImage": "Choisir une image",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1379,11 +1268,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Veuillez choisir",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Veuillez choisir un code d’accès",
|
"pleaseChooseAPasscode": "Veuillez choisir un code d’accès",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1477,11 +1361,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Rejoindre de nouveau",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Supprimer",
|
"remove": "Supprimer",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1501,11 +1380,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Supprimer l'appareil",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Débannissement de la discussion",
|
"unbanFromChat": "Débannissement de la discussion",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1561,15 +1435,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Vu par {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Envoyer",
|
"send": "Envoyer",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1604,16 +1469,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Envoyer le fichier original",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Envoyer un autocollant",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Envoyer une vidéo",
|
"sendVideo": "Envoyer une vidéo",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1678,21 +1533,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Définir des émoticônes personnalisées",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Créer un lien d'invitation",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Définir le niveau de permissions",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Définir le statut",
|
"setStatus": "Définir le statut",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1727,11 +1567,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Authentification unique",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Ignorer",
|
"skip": "Ignorer",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1802,21 +1637,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Activer/désactiver en favori",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Activer/désactiver la sourdine",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Marquer comme lu / non lu",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Trop de requêtes. Veuillez réessayer plus tard !",
|
"tooManyRequestsWarning": "Trop de requêtes. Veuillez réessayer plus tard !",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1883,15 +1703,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 discussion non lue} other{{unreadCount} discussions non lues}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} et {count} autres sont en train d'écrire…",
|
"userAndOthersAreTyping": "{username} et {count} autres sont en train d'écrire…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2016,11 +1827,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Image de fond :",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Attention !",
|
"warning": "Attention !",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2128,8 +1934,6 @@
|
||||||
"@messageInfo": {},
|
"@messageInfo": {},
|
||||||
"removeFromSpace": "Supprimer de l’espace",
|
"removeFromSpace": "Supprimer de l’espace",
|
||||||
"@removeFromSpace": {},
|
"@removeFromSpace": {},
|
||||||
"addToSpaceDescription": "Sélectionnez un espace pour y ajouter cette discussion.",
|
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"start": "Commencer",
|
"start": "Commencer",
|
||||||
"@start": {},
|
"@start": {},
|
||||||
"commandHint_create": "Créer un groupe de discussion vide\nUtilisez --no-encryption pour désactiver le chiffrement",
|
"commandHint_create": "Créer un groupe de discussion vide\nUtilisez --no-encryption pour désactiver le chiffrement",
|
||||||
|
|
@ -2152,22 +1956,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /dm"
|
"description": "Usage hint for the command /dm"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Ouvrir la caméra pour une vidéo",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"publish": "Publier",
|
|
||||||
"@publish": {},
|
|
||||||
"videoWithSize": "Vidéo ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dismiss": "Rejeter",
|
"dismiss": "Rejeter",
|
||||||
"@dismiss": {},
|
"@dismiss": {},
|
||||||
"markAsRead": "Marquer comme lu",
|
"markAsRead": "Marquer comme lu",
|
||||||
|
|
@ -2206,39 +1994,6 @@
|
||||||
"@videoCallsBetaWarning": {},
|
"@videoCallsBetaWarning": {},
|
||||||
"experimentalVideoCalls": "Appels vidéo expérimentaux",
|
"experimentalVideoCalls": "Appels vidéo expérimentaux",
|
||||||
"@experimentalVideoCalls": {},
|
"@experimentalVideoCalls": {},
|
||||||
"emailOrUsername": "Courriel ou identifiant",
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"switchToAccount": "Passer au compte {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nextAccount": "Compte suivant",
|
|
||||||
"@nextAccount": {},
|
|
||||||
"previousAccount": "Compte précédent",
|
|
||||||
"@previousAccount": {},
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"@widgetJitsi": {},
|
|
||||||
"widgetCustom": "Personnalisé",
|
|
||||||
"@widgetCustom": {},
|
|
||||||
"widgetUrlError": "Ceci n'est pas un lien valide.",
|
|
||||||
"@widgetUrlError": {},
|
|
||||||
"widgetNameError": "Veuillez fournir un nom d'affichage.",
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"errorAddingWidget": "Erreur lors de l'ajout du widget.",
|
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"widgetEtherpad": "Note textuelle",
|
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"addWidget": "Ajouter un widget",
|
|
||||||
"@addWidget": {},
|
|
||||||
"widgetName": "Nom",
|
|
||||||
"@widgetName": {},
|
|
||||||
"widgetVideo": "Vidéo",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"youRejectedTheInvitation": "Vous avez rejeté l'invitation",
|
"youRejectedTheInvitation": "Vous avez rejeté l'invitation",
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"youJoinedTheChat": "Vous avez rejoint la discussion",
|
"youJoinedTheChat": "Vous avez rejoint la discussion",
|
||||||
|
|
@ -2301,11 +2056,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"separateChatTypes": "Séparer les discussions directes et les groupes",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"users": "Utilisateurs/trices",
|
"users": "Utilisateurs/trices",
|
||||||
"@users": {},
|
"@users": {},
|
||||||
"storeInAndroidKeystore": "Stocker dans Android KeyStore",
|
"storeInAndroidKeystore": "Stocker dans Android KeyStore",
|
||||||
|
|
@ -2320,30 +2070,16 @@
|
||||||
"@hydrate": {},
|
"@hydrate": {},
|
||||||
"dehydrateWarning": "Cette action ne peut pas être annulée. Assurez-vous d'enregistrer convenablement le fichier de sauvegarde.",
|
"dehydrateWarning": "Cette action ne peut pas être annulée. Assurez-vous d'enregistrer convenablement le fichier de sauvegarde.",
|
||||||
"@dehydrateWarning": {},
|
"@dehydrateWarning": {},
|
||||||
"dehydrateTorLong": "Pour les utilisateurs/trices de TOR, il est recommandé d'exporter la session avant de fermer la fenêtre.",
|
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"recoveryKey": "Clé de récupération",
|
"recoveryKey": "Clé de récupération",
|
||||||
"@recoveryKey": {},
|
"@recoveryKey": {},
|
||||||
"recoveryKeyLost": "Clé de récupération perdue ?",
|
"recoveryKeyLost": "Clé de récupération perdue ?",
|
||||||
"@recoveryKeyLost": {},
|
"@recoveryKeyLost": {},
|
||||||
"indexedDbErrorLong": "Le stockage des messages n'est malheureusement pas activé par défaut en mode privé.\nVeuillez consulter :\n - about:config\n - Définir dom.indexedDB.privateBrowsing.enabled à « vrai ».\nSinon, il n'est pas possible d'exécuter FluffyChat.",
|
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"saveKeyManuallyDescription": "Enregistrer cette clé manuellement en déclenchant la boîte de dialogue de partage du système ou le presse-papiers.",
|
"saveKeyManuallyDescription": "Enregistrer cette clé manuellement en déclenchant la boîte de dialogue de partage du système ou le presse-papiers.",
|
||||||
"@saveKeyManuallyDescription": {},
|
"@saveKeyManuallyDescription": {},
|
||||||
"storeInSecureStorageDescription": "Stocker la clé de récupération dans un espace sécurisé de cet appareil.",
|
"storeInSecureStorageDescription": "Stocker la clé de récupération dans un espace sécurisé de cet appareil.",
|
||||||
"@storeInSecureStorageDescription": {},
|
"@storeInSecureStorageDescription": {},
|
||||||
"indexedDbErrorTitle": "Problèmes relatifs au mode privé",
|
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"dehydrate": "Exporter la session et effacer l'appareil",
|
"dehydrate": "Exporter la session et effacer l'appareil",
|
||||||
"@dehydrate": {},
|
"@dehydrate": {},
|
||||||
"dehydrateTor": "Utilisateurs/trices de TOR : Exporter la session",
|
|
||||||
"@dehydrateTor": {},
|
|
||||||
"hydrateTor": "Utilisateurs/trices de TOR : Importer une session exportée",
|
|
||||||
"@hydrateTor": {},
|
|
||||||
"hydrateTorLong": "Vous avez exporté votre session la dernière fois sur TOR ? Importez-la rapidement et continuez à discuter.",
|
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"pleaseEnterRecoveryKey": "Veuillez saisir votre clé de récupération :",
|
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"pleaseEnterRecoveryKeyDescription": "Pour déverrouiller vos anciens messages, veuillez entrer votre clé de récupération qui a été générée lors d'une session précédente. Votre clé de récupération n'est PAS votre mot de passe.",
|
"pleaseEnterRecoveryKeyDescription": "Pour déverrouiller vos anciens messages, veuillez entrer votre clé de récupération qui a été générée lors d'une session précédente. Votre clé de récupération n'est PAS votre mot de passe.",
|
||||||
"@pleaseEnterRecoveryKeyDescription": {},
|
"@pleaseEnterRecoveryKeyDescription": {},
|
||||||
"unlockOldMessages": "Déverrouiller les anciens messages",
|
"unlockOldMessages": "Déverrouiller les anciens messages",
|
||||||
|
|
@ -2360,8 +2096,6 @@
|
||||||
},
|
},
|
||||||
"noKeyForThisMessage": "Cela peut se produire si le message a été envoyé avant que vous ne vous soyez connecté à votre compte sur cet appareil.\n\nIl est également possible que l'expéditeur ait bloqué votre appareil ou qu'un problème de connexion Internet se soit produit.\n\nÊtes-vous capable de lire le message sur une autre session ? Vous pouvez alors transférer le message à partir de celle-ci ! Allez dans Paramètres > Appareils et assurez-vous que vos appareils se sont vérifiés mutuellement. Lorsque vous ouvrirez le salon la fois suivante et que les deux sessions seront au premier plan, les clés seront transmises automatiquement.\n\nVous ne voulez pas perdre les clés en vous déconnectant ou en changeant d'appareil ? Assurez-vous que vous avez activé la sauvegarde de la discussion dans les paramètres.",
|
"noKeyForThisMessage": "Cela peut se produire si le message a été envoyé avant que vous ne vous soyez connecté à votre compte sur cet appareil.\n\nIl est également possible que l'expéditeur ait bloqué votre appareil ou qu'un problème de connexion Internet se soit produit.\n\nÊtes-vous capable de lire le message sur une autre session ? Vous pouvez alors transférer le message à partir de celle-ci ! Allez dans Paramètres > Appareils et assurez-vous que vos appareils se sont vérifiés mutuellement. Lorsque vous ouvrirez le salon la fois suivante et que les deux sessions seront au premier plan, les clés seront transmises automatiquement.\n\nVous ne voulez pas perdre les clés en vous déconnectant ou en changeant d'appareil ? Assurez-vous que vous avez activé la sauvegarde de la discussion dans les paramètres.",
|
||||||
"@noKeyForThisMessage": {},
|
"@noKeyForThisMessage": {},
|
||||||
"enterRoom": "Entrer dans le salon",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"allSpaces": "Tous les espaces",
|
"allSpaces": "Tous les espaces",
|
||||||
"@allSpaces": {},
|
"@allSpaces": {},
|
||||||
"commandHint_markasdm": "Marquer comme salon de messages directs pour l'identifiant Matrix indiqué",
|
"commandHint_markasdm": "Marquer comme salon de messages directs pour l'identifiant Matrix indiqué",
|
||||||
|
|
@ -2387,35 +2121,10 @@
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"screenSharingDetail": "Vous partagez votre écran dans FuffyChat",
|
"screenSharingDetail": "Vous partagez votre écran dans FuffyChat",
|
||||||
"@screenSharingDetail": {},
|
"@screenSharingDetail": {},
|
||||||
"callingPermissions": "Permissions d'appel",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"callingAccount": "Compte d'appel",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"callingAccountDetails": "Permet à FluffyChat d'utiliser l'application de numérotation native d'Android.",
|
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"appearOnTop": "Apparaître en haut",
|
|
||||||
"@appearOnTop": {},
|
|
||||||
"appearOnTopDetails": "Permet à l'application d'apparaître en haut de l'écran (non nécessaire si vous avez déjà configuré Fluffychat comme compte d'appel)",
|
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"otherCallingPermissions": "Microphone, caméra et autres autorisations de FluffyChat",
|
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"newGroup": "Nouveau groupe",
|
"newGroup": "Nouveau groupe",
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"newSpace": "Nouvel espace",
|
"newSpace": "Nouvel espace",
|
||||||
"@newSpace": {},
|
"@newSpace": {},
|
||||||
"enterSpace": "Entrer dans l’espace",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"numChats": "{number} discussions",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Masquer les événements d'état sans importance",
|
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"doNotShowAgain": "Ne plus afficher",
|
"doNotShowAgain": "Ne plus afficher",
|
||||||
"@doNotShowAgain": {},
|
"@doNotShowAgain": {},
|
||||||
"commandHint_googly": "Envoyer des yeux écarquillés",
|
"commandHint_googly": "Envoyer des yeux écarquillés",
|
||||||
|
|
@ -2466,8 +2175,6 @@
|
||||||
"@sorryThatsNotPossible": {},
|
"@sorryThatsNotPossible": {},
|
||||||
"deviceKeys": "Clés de l’appareil :",
|
"deviceKeys": "Clés de l’appareil :",
|
||||||
"@deviceKeys": {},
|
"@deviceKeys": {},
|
||||||
"startFirstChat": "Commencez votre première discussion",
|
|
||||||
"@startFirstChat": {},
|
|
||||||
"newSpaceDescription": "Les espaces vous permettent de consolider vos conversations et de construire des communautés privées ou publiques.",
|
"newSpaceDescription": "Les espaces vous permettent de consolider vos conversations et de construire des communautés privées ou publiques.",
|
||||||
"@newSpaceDescription": {},
|
"@newSpaceDescription": {},
|
||||||
"disableEncryptionWarning": "Pour des raisons de sécurité, vous ne pouvez pas désactiver le chiffrement dans une discussion s'il a été activé avant.",
|
"disableEncryptionWarning": "Pour des raisons de sécurité, vous ne pouvez pas désactiver le chiffrement dans une discussion s'il a été activé avant.",
|
||||||
|
|
@ -2493,17 +2200,10 @@
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"readUpToHere": "Lisez jusqu’ici",
|
"readUpToHere": "Lisez jusqu’ici",
|
||||||
"@readUpToHere": {},
|
"@readUpToHere": {},
|
||||||
"allRooms": "Tous les groupes de discussion",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"chatPermissions": "Permissions du salon",
|
"chatPermissions": "Permissions du salon",
|
||||||
"@chatPermissions": {},
|
"@chatPermissions": {},
|
||||||
"importFromZipFile": "Importer depuis un fichier .zip",
|
"importFromZipFile": "Importer depuis un fichier .zip",
|
||||||
"@importFromZipFile": {},
|
"@importFromZipFile": {},
|
||||||
"inviteContactToGroupQuestion": "Voulez-vous inviter {contact} au salon \"{groupName}\" ?",
|
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"importEmojis": "Importer des Emojis",
|
"importEmojis": "Importer des Emojis",
|
||||||
"@importEmojis": {},
|
"@importEmojis": {},
|
||||||
"notAnImage": "Pas un fichier image.",
|
"notAnImage": "Pas un fichier image.",
|
||||||
|
|
@ -2533,8 +2233,6 @@
|
||||||
"@directChat": {},
|
"@directChat": {},
|
||||||
"optionalRedactReason": "(Facultatif) Raison de la suppression de ce message...",
|
"optionalRedactReason": "(Facultatif) Raison de la suppression de ce message...",
|
||||||
"@optionalRedactReason": {},
|
"@optionalRedactReason": {},
|
||||||
"subspace": "Sous-espace",
|
|
||||||
"@subspace": {},
|
|
||||||
"sendTypingNotifications": "Envoyer des notifications de frappe",
|
"sendTypingNotifications": "Envoyer des notifications de frappe",
|
||||||
"@sendTypingNotifications": {},
|
"@sendTypingNotifications": {},
|
||||||
"replace": "Remplacer",
|
"replace": "Remplacer",
|
||||||
|
|
@ -2550,14 +2248,10 @@
|
||||||
"@chatDescription": {},
|
"@chatDescription": {},
|
||||||
"invalidServerName": "Nom de serveur invalide",
|
"invalidServerName": "Nom de serveur invalide",
|
||||||
"@invalidServerName": {},
|
"@invalidServerName": {},
|
||||||
"addChatDescription": "Ajouter une description à la discussion...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"shareInviteLink": "Partager un lien d'invitation",
|
"shareInviteLink": "Partager un lien d'invitation",
|
||||||
"@shareInviteLink": {},
|
"@shareInviteLink": {},
|
||||||
"openLinkInBrowser": "Ouvrir le lien dans le navigateur",
|
"openLinkInBrowser": "Ouvrir le lien dans le navigateur",
|
||||||
"@openLinkInBrowser": {},
|
"@openLinkInBrowser": {},
|
||||||
"setTheme": "Définir le thème :",
|
|
||||||
"@setTheme": {},
|
|
||||||
"setColorTheme": "Définir la couleur du thème :",
|
"setColorTheme": "Définir la couleur du thème :",
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"databaseMigrationBody": "Veuillez patienter. Cela peut prendre un moment.",
|
"databaseMigrationBody": "Veuillez patienter. Cela peut prendre un moment.",
|
||||||
|
|
@ -2568,8 +2262,6 @@
|
||||||
"@passwordsDoNotMatch": {},
|
"@passwordsDoNotMatch": {},
|
||||||
"passwordIsWrong": "Votre mot de passe saisi est erroné",
|
"passwordIsWrong": "Votre mot de passe saisi est erroné",
|
||||||
"@passwordIsWrong": {},
|
"@passwordIsWrong": {},
|
||||||
"publicLink": "Lien public",
|
|
||||||
"@publicLink": {},
|
|
||||||
"joinSpace": "Rejoindre l'espace",
|
"joinSpace": "Rejoindre l'espace",
|
||||||
"@joinSpace": {},
|
"@joinSpace": {},
|
||||||
"publicSpaces": "Espaces publics",
|
"publicSpaces": "Espaces publics",
|
||||||
|
|
@ -2584,20 +2276,6 @@
|
||||||
"@sendTypingNotificationsDescription": {},
|
"@sendTypingNotificationsDescription": {},
|
||||||
"verifyOtherDevice": "🔐 Vérifier l'autre appareil",
|
"verifyOtherDevice": "🔐 Vérifier l'autre appareil",
|
||||||
"@verifyOtherDevice": {},
|
"@verifyOtherDevice": {},
|
||||||
"databaseBuildErrorBody": "La base de données SQlite ne peut pas être créée. L'application essaie d'utiliser la base de données existante pour le moment. Veuillez signaler cette erreur aux développeurs à {url}. Le message d'erreur est le suivant : {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"startConversation": "Démarrer la conversation",
|
|
||||||
"@startConversation": {},
|
|
||||||
"formattedMessagesDescription": "Affichez le contenu formaté des messages comme du texte en gras à l'aide de markdown.",
|
"formattedMessagesDescription": "Affichez le contenu formaté des messages comme du texte en gras à l'aide de markdown.",
|
||||||
"@formattedMessagesDescription": {},
|
"@formattedMessagesDescription": {},
|
||||||
"incomingMessages": "Messages entrants",
|
"incomingMessages": "Messages entrants",
|
||||||
|
|
@ -2611,24 +2289,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Veuillez réessayer plus tard ou choisir un autre serveur.",
|
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"inviteGroupChat": "📨 Inviter à une discussion de groupe",
|
"inviteGroupChat": "📨 Inviter à une discussion de groupe",
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"invitePrivateChat": "📨 Inviter à une discussion privée",
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"jump": "Sauter",
|
"jump": "Sauter",
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"signInWithPassword": "Se connecter avec mot de passe",
|
|
||||||
"@signInWithPassword": {},
|
|
||||||
"hideMemberChangesInPublicChats": "Masquer les modifications de membres dans les discussions publiques",
|
|
||||||
"@hideMemberChangesInPublicChats": {},
|
|
||||||
"hideMemberChangesInPublicChatsBody": "Ne pas afficher dans la chronologie de la discussion si quelqu'un rejoint ou quitte une discussion publique afin d'améliorer la lisibilité.",
|
|
||||||
"@hideMemberChangesInPublicChatsBody": {},
|
|
||||||
"overview": "Aperçu",
|
"overview": "Aperçu",
|
||||||
"@overview": {},
|
"@overview": {},
|
||||||
"notifyMeFor": "Me notifier pour",
|
|
||||||
"@notifyMeFor": {},
|
|
||||||
"passwordRecoverySettings": "Paramètres de récupération de mot de passe",
|
"passwordRecoverySettings": "Paramètres de récupération de mot de passe",
|
||||||
"@passwordRecoverySettings": {},
|
"@passwordRecoverySettings": {},
|
||||||
"hasKnocked": "🚪 {user} a frappé",
|
"hasKnocked": "🚪 {user} a frappé",
|
||||||
|
|
@ -2736,34 +2402,11 @@
|
||||||
},
|
},
|
||||||
"setChatDescription": "Définir la description de la discussion",
|
"setChatDescription": "Définir la description de la discussion",
|
||||||
"@setChatDescription": {},
|
"@setChatDescription": {},
|
||||||
"presenceStyle": "Statut :",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "Afficher les messages de statut des autres utilisateurs/trices",
|
"presencesToggle": "Afficher les messages de statut des autres utilisateurs/trices",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Vous avez été invité par lien à :\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userWouldLikeToChangeTheChat": "{user} souhaite rejoindre la discussion.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Aucun lien public n'a encore été crée",
|
|
||||||
"@noPublicLinkHasBeenCreatedYet": {},
|
|
||||||
"gallery": "Galerie",
|
"gallery": "Galerie",
|
||||||
"@gallery": {},
|
"@gallery": {},
|
||||||
"files": "Fichiers",
|
"files": "Fichiers",
|
||||||
|
|
@ -2789,15 +2432,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"forwardMessageTo": "Transférer le message à {roomName} ?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceiptsDescription": "Les autres participants à une discussion peuvent voir si vous avez lu un message.",
|
"sendReadReceiptsDescription": "Les autres participants à une discussion peuvent voir si vous avez lu un message.",
|
||||||
"@sendReadReceiptsDescription": {},
|
"@sendReadReceiptsDescription": {},
|
||||||
"formattedMessages": "Messages formatés",
|
"formattedMessages": "Messages formatés",
|
||||||
|
|
@ -2847,15 +2481,6 @@
|
||||||
"@restricted": {},
|
"@restricted": {},
|
||||||
"knockRestricted": "Frapper à la porte limité",
|
"knockRestricted": "Frapper à la porte limité",
|
||||||
"@knockRestricted": {},
|
"@knockRestricted": {},
|
||||||
"signInWith": "Se connecter avec {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"groupCanBeFoundViaSearch": "Le groupe peut être trouvé via la recherche",
|
"groupCanBeFoundViaSearch": "Le groupe peut être trouvé via la recherche",
|
||||||
"@groupCanBeFoundViaSearch": {},
|
"@groupCanBeFoundViaSearch": {},
|
||||||
"groupName": "Nom du groupe",
|
"groupName": "Nom du groupe",
|
||||||
|
|
@ -2866,24 +2491,10 @@
|
||||||
"@block": {},
|
"@block": {},
|
||||||
"removeDevicesDescription": "Vous serez déconnecté de cet appareil et ne pourrez plus recevoir de messages.",
|
"removeDevicesDescription": "Vous serez déconnecté de cet appareil et ne pourrez plus recevoir de messages.",
|
||||||
"@removeDevicesDescription": {},
|
"@removeDevicesDescription": {},
|
||||||
"userRole": "Rôle de l'utilisateur/trice",
|
|
||||||
"@userRole": {},
|
|
||||||
"createNewAddress": "Créer une nouvelle adresse",
|
"createNewAddress": "Créer une nouvelle adresse",
|
||||||
"@createNewAddress": {},
|
"@createNewAddress": {},
|
||||||
"publicChatAddresses": "Addresses de discussion publiques",
|
"publicChatAddresses": "Addresses de discussion publiques",
|
||||||
"@publicChatAddresses": {},
|
"@publicChatAddresses": {},
|
||||||
"countChatsAndCountParticipants": "{chats} discussions et {participants} participants",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"space": "Espace",
|
"space": "Espace",
|
||||||
"@space": {},
|
"@space": {},
|
||||||
"spaces": "Espaces",
|
"spaces": "Espaces",
|
||||||
|
|
@ -2892,8 +2503,6 @@
|
||||||
"@noMoreChatsFound": {},
|
"@noMoreChatsFound": {},
|
||||||
"unread": "Non lu",
|
"unread": "Non lu",
|
||||||
"@unread": {},
|
"@unread": {},
|
||||||
"joinedChats": "Discussions rejointes",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"commandHint_sendraw": "Envoyer du JSON brut",
|
"commandHint_sendraw": "Envoyer du JSON brut",
|
||||||
"@commandHint_sendraw": {},
|
"@commandHint_sendraw": {},
|
||||||
"databaseMigrationTitle": "La base de données est optimisée",
|
"databaseMigrationTitle": "La base de données est optimisée",
|
||||||
|
|
@ -2942,8 +2551,6 @@
|
||||||
"@newPassword": {},
|
"@newPassword": {},
|
||||||
"pleaseChooseAStrongPassword": "Veuillez choisir un mot de passe fort",
|
"pleaseChooseAStrongPassword": "Veuillez choisir un mot de passe fort",
|
||||||
"@pleaseChooseAStrongPassword": {},
|
"@pleaseChooseAStrongPassword": {},
|
||||||
"decline": "Refuser",
|
|
||||||
"@decline": {},
|
|
||||||
"initAppError": "Une erreur est survenue pendant l'initialisation de l'application",
|
"initAppError": "Une erreur est survenue pendant l'initialisation de l'application",
|
||||||
"@initAppError": {},
|
"@initAppError": {},
|
||||||
"markAsUnread": "Marquer comme non lu",
|
"markAsUnread": "Marquer comme non lu",
|
||||||
|
|
@ -2971,15 +2578,6 @@
|
||||||
"@roomUpgradeDescription": {},
|
"@roomUpgradeDescription": {},
|
||||||
"learnMore": "En savoir plus",
|
"learnMore": "En savoir plus",
|
||||||
"@learnMore": {},
|
"@learnMore": {},
|
||||||
"minimumPowerLevel": "{level} est le niveau minimum de droits.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"restoreSessionBody": "L'application tente maintenant de restaurer votre session depuis la sauvegarde. Veuillez signaler cette erreur aux développeurs à {url}. Le message d'erreur est le suivant : {error}",
|
"restoreSessionBody": "L'application tente maintenant de restaurer votre session depuis la sauvegarde. Veuillez signaler cette erreur aux développeurs à {url}. Le message d'erreur est le suivant : {error}",
|
||||||
"@restoreSessionBody": {
|
"@restoreSessionBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2992,8 +2590,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"profileNotFound": "Cet utilisateur/trice n'a pu être trouvé sur le serveur. Peut-être est-ce un problème de connexion ou l'utilisateur/trice n'existe pas.",
|
|
||||||
"@profileNotFound": {},
|
|
||||||
"archiveRoomDescription": "La discussion sera déplacée dans les archives. Les autres utilisateurs/trices pourront voir que vous avez quitté la discussion.",
|
"archiveRoomDescription": "La discussion sera déplacée dans les archives. Les autres utilisateurs/trices pourront voir que vous avez quitté la discussion.",
|
||||||
"@archiveRoomDescription": {},
|
"@archiveRoomDescription": {},
|
||||||
"noUsersFoundWithQuery": "Malheureusement, aucun utilisateur/trice n'a pu être trouvé avec \"{query}\". Veuillez vérifier si vous n'avez pas fait de faute de frappe.",
|
"noUsersFoundWithQuery": "Malheureusement, aucun utilisateur/trice n'a pu être trouvé avec \"{query}\". Veuillez vérifier si vous n'avez pas fait de faute de frappe.",
|
||||||
|
|
@ -3089,14 +2685,8 @@
|
||||||
},
|
},
|
||||||
"loginWithMatrixId": "Connexion avec l'identifiant Matrix",
|
"loginWithMatrixId": "Connexion avec l'identifiant Matrix",
|
||||||
"@loginWithMatrixId": {},
|
"@loginWithMatrixId": {},
|
||||||
"setCustomPermissionLevel": "Définir un niveau d’autorisation",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"setPermissionsLevelDescription": "Veuillez choisir un rôle prédéfini ci-dessous ou saisir un niveau d’autorisation entre 0 et 100.",
|
|
||||||
"@setPermissionsLevelDescription": {},
|
|
||||||
"ignoreUser": "Ignorer l'utilisateur",
|
"ignoreUser": "Ignorer l'utilisateur",
|
||||||
"@ignoreUser": {},
|
"@ignoreUser": {},
|
||||||
"normalUser": "Utilisateur standard",
|
|
||||||
"@normalUser": {},
|
|
||||||
"checkList": "Check-list",
|
"checkList": "Check-list",
|
||||||
"@checkList": {},
|
"@checkList": {},
|
||||||
"countInvited": "{count} invité(e/s)",
|
"countInvited": "{count} invité(e/s)",
|
||||||
|
|
@ -3117,8 +2707,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"homeserverDescription": "Toutes vos données sont stockées sur le serveur de votre fournisseur matrix, comme chez un fournisseur d'e-mails. Vous pouvez choisir le serveur que vous souhaitez utiliser, tout en pouvant communiquer avec tout le monde. Pour en savoir plus, rendez-vous sur https://matrix.org.",
|
|
||||||
"@homeserverDescription": {},
|
|
||||||
"calculatingFileSize": "Calcul en cours...",
|
"calculatingFileSize": "Calcul en cours...",
|
||||||
"@calculatingFileSize": {},
|
"@calculatingFileSize": {},
|
||||||
"prepareSendingAttachment": "Préparation à l'envoi...",
|
"prepareSendingAttachment": "Préparation à l'envoi...",
|
||||||
|
|
@ -3164,4 +2752,4 @@
|
||||||
"@addLink": {},
|
"@addLink": {},
|
||||||
"allowMultipleAnswers": "Autoriser plusieurs réponses",
|
"allowMultipleAnswers": "Autoriser plusieurs réponses",
|
||||||
"@allowMultipleAnswers": {}
|
"@allowMultipleAnswers": {}
|
||||||
}
|
}
|
||||||
|
|
@ -14,11 +14,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Cúlbhrat:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"verify": "Deimhnigh",
|
"verify": "Deimhnigh",
|
||||||
"@verify": {
|
"@verify": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -110,11 +105,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"rejoin": "Téigh ar ais isteach",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reject": "Diúltaigh",
|
"reject": "Diúltaigh",
|
||||||
"@reject": {
|
"@reject": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -145,11 +135,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Daoine",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"password": "Pasfhocal",
|
"password": "Pasfhocal",
|
||||||
"@password": {
|
"@password": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -269,11 +254,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Ceadúnas",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"leave": "Fág",
|
"leave": "Fág",
|
||||||
"@leave": {
|
"@leave": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -294,11 +274,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Aitheantas",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"id": "ID",
|
"id": "ID",
|
||||||
"@id": {
|
"@id": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -360,33 +335,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{day}/{month}/{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithoutYear": "{day}/{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
||||||
"@dateAndTimeOfDay": {
|
"@dateAndTimeOfDay": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -399,11 +347,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"containsUserName": "Coinníonn sé ainm úsáideora",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"configureChat": "Cumraigh comhrá",
|
"configureChat": "Cumraigh comhrá",
|
||||||
"@configureChat": {
|
"@configureChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -462,11 +405,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Teachtaireachtaí bota",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"blocked": "Bactha",
|
"blocked": "Bactha",
|
||||||
"@blocked": {
|
"@blocked": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -602,7 +540,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"areGuestsAllowedToJoin": "An bhfuil cead ag aoi-úsáideoirí a bheith páirteach",
|
"areGuestsAllowedToJoin": "An bhfuil cead ag úsáideoirí aoi páirt a ghlacadh?",
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -653,11 +591,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Cuir isteach do fhreastalaí baile",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emoteInvalid": "Gearrchód emote neamhbhailí!",
|
"emoteInvalid": "Gearrchód emote neamhbhailí!",
|
||||||
"@emoteInvalid": {
|
"@emoteInvalid": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -763,7 +696,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Cuireadh comhrá leis an spás seo",
|
|
||||||
"chatBackupDescription": "Tá do theachtaireachtaí slán le heochair aisghabhála. Déan cinnte nach gcaillfidh tú í.",
|
"chatBackupDescription": "Tá do theachtaireachtaí slán le heochair aisghabhála. Déan cinnte nach gcaillfidh tú í.",
|
||||||
"@chatBackupDescription": {
|
"@chatBackupDescription": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -917,11 +849,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Coinníonn sé ainm taispeána",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"commandHint_plain": "Seol téacs neamhfhoirmithe",
|
"commandHint_plain": "Seol téacs neamhfhoirmithe",
|
||||||
"@commandHint_plain": {
|
"@commandHint_plain": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -982,21 +909,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleUnread": "Marcáil Léite/Neamhléite",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Scoránaigh mar ciúnaithe",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleFavorite": "Scoránaigh mar ceann is fearr leat",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"theyMatch": "Tá siad céanna",
|
"theyMatch": "Tá siad céanna",
|
||||||
"@theyMatch": {
|
"@theyMatch": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1032,16 +944,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "Seol greamán",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendOriginal": "Seol an bunchóip",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendMessages": "Seol teachtaireachtaí",
|
"sendMessages": "Seol teachtaireachtaí",
|
||||||
"@sendMessages": {
|
"@sendMessages": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1082,11 +984,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"removeDevice": "Bain gléas",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"redactMessage": "Bain teachtaireacht amach",
|
"redactMessage": "Bain teachtaireacht amach",
|
||||||
"@redactMessage": {
|
"@redactMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1102,11 +999,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Roghnaigh le do thoil",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"play": "Seinn {fileName}",
|
"play": "Seinn {fileName}",
|
||||||
"@play": {
|
"@play": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1151,11 +1043,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Athruithe ball",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"loadMore": "Lódáil níos mó…",
|
"loadMore": "Lódáil níos mó…",
|
||||||
"@loadMore": {
|
"@loadMore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1256,16 +1143,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"connect": "Ceangail",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"confirm": "Dearbhaigh",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"close": "Dún",
|
"close": "Dún",
|
||||||
"@close": {
|
"@close": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1472,11 +1349,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Téigh go dtí an seomra nua",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Earráid maidir le suíomh a fháil: {error}",
|
"errorObtainingLocation": "Earráid maidir le suíomh a fháil: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1515,11 +1387,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Caithfidh tú gearrchód straoiseoige agus íomhá a roghnú!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emotePacks": "Pacáistí straoiseoige don seomra",
|
"emotePacks": "Pacáistí straoiseoige don seomra",
|
||||||
"@emotePacks": {
|
"@emotePacks": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1575,18 +1442,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"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": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"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": "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": {
|
"@badServerLoginTypesException": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1687,15 +1542,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 comhrá neamhléite} other{{unreadCount} comhráite neamhléite}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"unknownEncryptionAlgorithm": "Algartam criptithe anaithnid",
|
"unknownEncryptionAlgorithm": "Algartam criptithe anaithnid",
|
||||||
"@unknownEncryptionAlgorithm": {
|
"@unknownEncryptionAlgorithm": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1742,21 +1588,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setPermissionsLevel": "Socraigh leibhéal ceadanna",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Socraigh nasc cuiridh",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setCustomEmotes": "Socraigh straoiseoga saincheaptha",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "Socraigh mar phríomh-ailias",
|
"setAsCanonicalAlias": "Socraigh mar phríomh-ailias",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1855,7 +1686,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseEnterYourPin": "Cuir isteach d'uimhir PIN le do thoil",
|
"pleaseEnterYourPin": "Cuir isteach do uap le do thoil",
|
||||||
"@pleaseEnterYourPin": {
|
"@pleaseEnterYourPin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1930,11 +1761,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Fógraí cumasaithe don chuntas seo",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"noRoomsFound": "Níor aimsíodh aon seomraí…",
|
"noRoomsFound": "Níor aimsíodh aon seomraí…",
|
||||||
"@noRoomsFound": {
|
"@noRoomsFound": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1945,11 +1771,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Tabhair cuireadh dom",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"weSentYouAnEmail": "Sheolamar ríomhphost chugat",
|
"weSentYouAnEmail": "Sheolamar ríomhphost chugat",
|
||||||
"@weSentYouAnEmail": {
|
"@weSentYouAnEmail": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2039,11 +1860,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Sínigh Aonair ar",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sentAnAudio": "🎤 sheol {username} fuaim",
|
"sentAnAudio": "🎤 sheol {username} fuaim",
|
||||||
"@sentAnAudio": {
|
"@sentAnAudio": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2071,15 +1887,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Le feiceáil ag {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"roomHasBeenUpgraded": "Uasghrádaíodh an seomra",
|
"roomHasBeenUpgraded": "Uasghrádaíodh an seomra",
|
||||||
"@roomHasBeenUpgraded": {
|
"@roomHasBeenUpgraded": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2099,14 +1906,8 @@
|
||||||
"description": "Usage hint for the command /clearcache"
|
"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": "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.",
|
||||||
"emailOrUsername": "Ríomhphost nó ainm úsáideora",
|
|
||||||
"repeatPassword": "Scríobh an pasfhocal arís",
|
"repeatPassword": "Scríobh an pasfhocal arís",
|
||||||
"yourChatBackupHasBeenSetUp": "Bunaíodh do chúltaca comhrá.",
|
"yourChatBackupHasBeenSetUp": "Bunaíodh do chúltaca comhrá.",
|
||||||
"openVideoCamera": "Oscail físcheamara",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fileHasBeenSavedAt": "Sábháladh an comhad ag {path}",
|
"fileHasBeenSavedAt": "Sábháladh an comhad ag {path}",
|
||||||
"@fileHasBeenSavedAt": {
|
"@fileHasBeenSavedAt": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2118,12 +1919,9 @@
|
||||||
},
|
},
|
||||||
"editBundlesForAccount": "Cuir cuachta in eagar don chuntas seo",
|
"editBundlesForAccount": "Cuir cuachta in eagar don chuntas seo",
|
||||||
"globalChatId": "Aitheantas comhrá domhanda",
|
"globalChatId": "Aitheantas comhrá domhanda",
|
||||||
"hideMemberChangesInPublicChatsBody": "Ná taispeáin san amlíne comhrá má théann duine isteach i gcomhrá poiblí nó má fhágann sé nó sí é chun inléiteacht a fheabhsú.",
|
|
||||||
"pleaseEnterRecoveryKey": "Cuir isteach d'eochair athshlánaithe le do thoil:",
|
|
||||||
"sender": "Seoltóir",
|
"sender": "Seoltóir",
|
||||||
"noOneCanJoin": "Ní féidir le duine ar bith páirt a ghlacadh",
|
"noOneCanJoin": "Ní féidir le duine ar bith páirt a ghlacadh",
|
||||||
"noOtherDevicesFound": "Níor aimsíodh aon ghléas eile",
|
"noOtherDevicesFound": "Níor aimsíodh aon ghléas eile",
|
||||||
"profileNotFound": "Níorbh fhéidir an t-úsáideoir a aimsiú ar an bhfreastalaí. B'fhéidir go bhfuil fadhb nasctha ann nó nach bhfuil an t-úsáideoir ann.",
|
|
||||||
"inviteGroupChat": "📨 Cuireadh chuig comhrá grúpa",
|
"inviteGroupChat": "📨 Cuireadh chuig comhrá grúpa",
|
||||||
"knocking": "Cnagadh",
|
"knocking": "Cnagadh",
|
||||||
"addChatOrSubSpace": "Cuir comhrá nó fo-spás leis",
|
"addChatOrSubSpace": "Cuir comhrá nó fo-spás leis",
|
||||||
|
|
@ -2159,9 +1957,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addToSpaceDescription": "Roghnaigh spás chun an comhrá seo a chur leis.",
|
|
||||||
"markAsRead": "Marcáil mar léite",
|
"markAsRead": "Marcáil mar léite",
|
||||||
"enterRoom": "Iontráil seomra",
|
|
||||||
"deviceKeys": "Eochracha gléis:",
|
"deviceKeys": "Eochracha gléis:",
|
||||||
"allSpaces": "Gach spás",
|
"allSpaces": "Gach spás",
|
||||||
"searchForUsers": "Cuardaigh @users...",
|
"searchForUsers": "Cuardaigh @users...",
|
||||||
|
|
@ -2192,41 +1988,17 @@
|
||||||
"unbanUserDescription": "Beidh an t-úsáideoir in ann dul isteach sa chomhrá arís má dhéanann siad iarracht.",
|
"unbanUserDescription": "Beidh an t-úsáideoir in ann dul isteach sa chomhrá arís má dhéanann siad iarracht.",
|
||||||
"pleaseEnterYourCurrentPassword": "Iontráil do phasfhocal reatha le do thoil",
|
"pleaseEnterYourCurrentPassword": "Iontráil do phasfhocal reatha le do thoil",
|
||||||
"newPassword": "Pasfhocal nua",
|
"newPassword": "Pasfhocal nua",
|
||||||
"subspace": "Fospás",
|
|
||||||
"decline": "Meath",
|
|
||||||
"forwardMessageTo": "Seol teachtaireacht ar aghaidh chuig {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceipts": "Seol admhálacha léite",
|
"sendReadReceipts": "Seol admhálacha léite",
|
||||||
"formattedMessagesDescription": "Taispeáin ábhar saibhir teachtaireachta cosúil le téacs trom ag baint úsáide as marcáil síos.",
|
"formattedMessagesDescription": "Taispeáin ábhar saibhir teachtaireachta cosúil le téacs trom ag baint úsáide as marcáil síos.",
|
||||||
"verifyOtherUser": "🔐 Fíoraigh úsáideoir eile",
|
"verifyOtherUser": "🔐 Fíoraigh úsáideoir eile",
|
||||||
"dehydrateTorLong": "Maidir le húsáideoirí TOR, moltar an seisiún a onnmhairiú roimh dhúnadh an fhuinneog.",
|
|
||||||
"numChats": "Comhráite {number}",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hidePresences": "Folaigh Liosta Stádais?",
|
"hidePresences": "Folaigh Liosta Stádais?",
|
||||||
"jump": "Léim",
|
"jump": "Léim",
|
||||||
"reportErrorDescription": "😭 Ó, a mhac go deo. Chuaigh rud éigin mícheart. Más mian leat, is féidir leat an fabht seo a thuairisciú do na forbróirí.",
|
"reportErrorDescription": "😭 Ó, a mhac go deo. Chuaigh rud éigin mícheart. Más mian leat, is féidir leat an fabht seo a thuairisciú do na forbróirí.",
|
||||||
"setTheme": "Socraigh téama:",
|
|
||||||
"invalidInput": "Ionchur neamhbhailí!",
|
"invalidInput": "Ionchur neamhbhailí!",
|
||||||
"kickUserDescription": "Ciceáiltear an t-úsáideoir as an gcomhrá ach níl cosc air. I gcomhráite poiblí, is féidir leis an úsáideoir teacht ar ais ag am ar bith.",
|
"kickUserDescription": "Ciceáiltear an t-úsáideoir as an gcomhrá ach níl cosc air. I gcomhráite poiblí, is féidir leis an úsáideoir teacht ar ais ag am ar bith.",
|
||||||
"startConversation": "Tosaigh comhrá",
|
|
||||||
"commandHint_sendraw": "Seol json amh",
|
"commandHint_sendraw": "Seol json amh",
|
||||||
"leaveEmptyToClearStatus": "Fág folamh chun do stádas a ghlanadh.",
|
"leaveEmptyToClearStatus": "Fág folamh chun do stádas a ghlanadh.",
|
||||||
"pleaseChooseAStrongPassword": "Roghnaigh pasfhocal láidir",
|
"pleaseChooseAStrongPassword": "Roghnaigh pasfhocal láidir",
|
||||||
"publicLink": "Nasc poiblí",
|
|
||||||
"joinSpace": "Glac páirt sa spás",
|
"joinSpace": "Glac páirt sa spás",
|
||||||
"initAppError": "Tharla earráid agus an feidhmchlár á thosú",
|
"initAppError": "Tharla earráid agus an feidhmchlár á thosú",
|
||||||
"requestedKeyVerification": "D'iarr {sender} fíorú eochrach",
|
"requestedKeyVerification": "D'iarr {sender} fíorú eochrach",
|
||||||
|
|
@ -2241,8 +2013,6 @@
|
||||||
"incomingMessages": "Teachtaireachtaí isteach",
|
"incomingMessages": "Teachtaireachtaí isteach",
|
||||||
"transparent": "Trédhearcach",
|
"transparent": "Trédhearcach",
|
||||||
"voiceCall": "Glao gutha",
|
"voiceCall": "Glao gutha",
|
||||||
"widgetVideo": "Físeán",
|
|
||||||
"errorAddingWidget": "Earráid agus an ghiuirléid á cur leis.",
|
|
||||||
"emojis": "Emojis",
|
"emojis": "Emojis",
|
||||||
"reportUser": "Déan tuairisc ar úsáideoir",
|
"reportUser": "Déan tuairisc ar úsáideoir",
|
||||||
"custom": "Saincheaptha",
|
"custom": "Saincheaptha",
|
||||||
|
|
@ -2260,7 +2030,6 @@
|
||||||
"newGroup": "Grúpa nua",
|
"newGroup": "Grúpa nua",
|
||||||
"newSpace": "Spás nua",
|
"newSpace": "Spás nua",
|
||||||
"confirmMatrixId": "Deimhnigh d’ID Maitrís chun do chuntas a scriosadh.",
|
"confirmMatrixId": "Deimhnigh d’ID Maitrís chun do chuntas a scriosadh.",
|
||||||
"hideMemberChangesInPublicChats": "Cuir athruithe ball i gcomhráite poiblí i bhfolach",
|
|
||||||
"confirmEventUnpin": "An bhfuil tú cinnte an t-imeacht a dhíphionnáil go buan?",
|
"confirmEventUnpin": "An bhfuil tú cinnte an t-imeacht a dhíphionnáil go buan?",
|
||||||
"hugContent": "Tugann {senderName} barróg duit",
|
"hugContent": "Tugann {senderName} barróg duit",
|
||||||
"@hugContent": {
|
"@hugContent": {
|
||||||
|
|
@ -2273,37 +2042,12 @@
|
||||||
},
|
},
|
||||||
"unread": "Neamhléite",
|
"unread": "Neamhléite",
|
||||||
"noChatsFoundHere": "Níor aimsíodh aon chomhrá anseo fós. Cuir tús le comhrá nua le duine éigin tríd an gcnaipe thíos a úsáid. ⤵️",
|
"noChatsFoundHere": "Níor aimsíodh aon chomhrá anseo fós. Cuir tús le comhrá nua le duine éigin tríd an gcnaipe thíos a úsáid. ⤵️",
|
||||||
"separateChatTypes": "Comhráite Díreacha agus Grúpaí ar Leith",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"videoWithSize": "Físeán ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"messageInfo": "Eolas teachtaireachta",
|
"messageInfo": "Eolas teachtaireachta",
|
||||||
"messageType": "Cineál Teachtaireachta",
|
"messageType": "Cineál Teachtaireachta",
|
||||||
"pleaseEnterRecoveryKeyDescription": "Chun do sheanteachtaireachtaí a dhíghlasáil, cuir isteach d'eochair athshlánaithe a gineadh i seisiún eile. NÍ do phasfhocal í d'eochair athshlánaithe.",
|
"pleaseEnterRecoveryKeyDescription": "Chun do sheanteachtaireachtaí a dhíghlasáil, cuir isteach d'eochair athshlánaithe a gineadh i seisiún eile. NÍ do phasfhocal í d'eochair athshlánaithe.",
|
||||||
"openChat": "Oscail Comhrá",
|
"openChat": "Oscail Comhrá",
|
||||||
"unsupportedAndroidVersionLong": "Éilíonn an ghné seo leagan Android níos nuaí. Seiceáil le haghaidh nuashonruithe nó tacaíocht Lineage OS.",
|
"unsupportedAndroidVersionLong": "Éilíonn an ghné seo leagan Android níos nuaí. Seiceáil le haghaidh nuashonruithe nó tacaíocht Lineage OS.",
|
||||||
"experimentalVideoCalls": "Glaonna físe turgnamhacha",
|
"experimentalVideoCalls": "Glaonna físe turgnamhacha",
|
||||||
"switchToAccount": "Athraigh go cuntas {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"addWidget": "Cuir giuirléid leis",
|
|
||||||
"widgetUrlError": "Ní URL bailí é seo.",
|
|
||||||
"invitedBy": "📩 Cuireadh ó {user}",
|
"invitedBy": "📩 Cuireadh ó {user}",
|
||||||
"@invitedBy": {
|
"@invitedBy": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2328,14 +2072,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"userWouldLikeToChangeTheChat": "Ba mhaith le {user} páirt a ghlacadh sa chomhrá.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"knock": "Cnoc Mhuire",
|
"knock": "Cnoc Mhuire",
|
||||||
"storeInSecureStorageDescription": "Stóráil an eochair aisghabhála i stóráil slán an ghléis seo.",
|
"storeInSecureStorageDescription": "Stóráil an eochair aisghabhála i stóráil slán an ghléis seo.",
|
||||||
"countFiles": "Comhaid {count}",
|
"countFiles": "Comhaid {count}",
|
||||||
|
|
@ -2348,12 +2084,6 @@
|
||||||
},
|
},
|
||||||
"foregroundServiceRunning": "Tá an fógra seo le feiceáil nuair atá an tseirbhís tulra ag rith.",
|
"foregroundServiceRunning": "Tá an fógra seo le feiceáil nuair atá an tseirbhís tulra ag rith.",
|
||||||
"screenSharingDetail": "Tá do scáileán á roinnt agat i FuffyChat",
|
"screenSharingDetail": "Tá do scáileán á roinnt agat i FuffyChat",
|
||||||
"callingPermissions": "Ceadanna a ghlaoch",
|
|
||||||
"callingAccount": "Cuntas ag glaoch",
|
|
||||||
"callingAccountDetails": "Ceadaíonn FluffyChat an aip dhiailiú android dúchais a úsáid.",
|
|
||||||
"appearOnTopDetails": "Ceadaíonn sé don aip a bheith ar bharr (ní gá má tá socrú Fluffychat agat cheana féin mar chuntas glao)",
|
|
||||||
"otherCallingPermissions": "Micreafón, ceamara agus ceadanna FluffyChat eile",
|
|
||||||
"hideUnimportantStateEvents": "Folaigh imeachtaí stáit gan tábhacht",
|
|
||||||
"disableEncryptionWarning": "Ar chúiseanna slándála ní féidir leat criptiú a dhíchumasú i gcomhrá, áit ar cumasaíodh é roimhe seo.",
|
"disableEncryptionWarning": "Ar chúiseanna slándála ní féidir leat criptiú a dhíchumasú i gcomhrá, áit ar cumasaíodh é roimhe seo.",
|
||||||
"sorryThatsNotPossible": "Tá brón orm... nach féidir a dhéanamh",
|
"sorryThatsNotPossible": "Tá brón orm... nach féidir a dhéanamh",
|
||||||
"reopenChat": "Comhrá a athoscailt",
|
"reopenChat": "Comhrá a athoscailt",
|
||||||
|
|
@ -2370,18 +2100,6 @@
|
||||||
"jumpToLastReadMessage": "Léim go dtí an teachtaireacht léite is déanaí",
|
"jumpToLastReadMessage": "Léim go dtí an teachtaireacht léite is déanaí",
|
||||||
"readUpToHere": "Léigh suas go dtí seo",
|
"readUpToHere": "Léigh suas go dtí seo",
|
||||||
"openLinkInBrowser": "Oscail nasc sa bhrabhsálaí",
|
"openLinkInBrowser": "Oscail nasc sa bhrabhsálaí",
|
||||||
"signInWithPassword": "Sínigh isteach le pasfhocal",
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Bain triail eile as níos déanaí nó roghnaigh freastalaí eile.",
|
|
||||||
"signInWith": "Sínigh isteach le:",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"invitePrivateChat": "📨 Cuireadh chuig comhrá príobháideach",
|
|
||||||
"wrongPinEntered": "Tháinig biorán mícheart isteach! Bain triail eile as i {seconds} soicind...",
|
"wrongPinEntered": "Tháinig biorán mícheart isteach! Bain triail eile as i {seconds} soicind...",
|
||||||
"@wrongPinEntered": {
|
"@wrongPinEntered": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2425,18 +2143,6 @@
|
||||||
},
|
},
|
||||||
"passwordIsWrong": "Tá do phasfhocal iontrála mícheart",
|
"passwordIsWrong": "Tá do phasfhocal iontrála mícheart",
|
||||||
"files": "Comhaid",
|
"files": "Comhaid",
|
||||||
"databaseBuildErrorBody": "Ní féidir bunachar sonraí SQlite a thógáil. Déanann an aip iarracht an bunachar sonraí oidhreachta a úsáid anois. Tuairiscigh an earráid seo do na forbróirí ag {url}. Is í an teachtaireacht earráide: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sessionLostBody": "Cailltear do sheisiún. Tuairiscigh an earráid seo do na forbróirí ag {url}. Is í an teachtaireacht earráide: {error}",
|
"sessionLostBody": "Cailltear do sheisiún. Tuairiscigh an earráid seo do na forbróirí ag {url}. Is í an teachtaireacht earráide: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2515,9 +2221,6 @@
|
||||||
"changelog": "ChangelogName",
|
"changelog": "ChangelogName",
|
||||||
"sendCanceled": "Cealaíodh seoladh",
|
"sendCanceled": "Cealaíodh seoladh",
|
||||||
"loginWithMatrixId": "Logáil isteach le Matrix-ID",
|
"loginWithMatrixId": "Logáil isteach le Matrix-ID",
|
||||||
"discoverHomeservers": "Faigh amach faoi fhreastalaithe baile",
|
|
||||||
"whatIsAHomeserver": "Cad is freastalaí baile ann?",
|
|
||||||
"homeserverDescription": "Stóráiltear do chuid sonraí go léir ar an bhfreastalaí baile, díreach cosúil le soláthraí ríomhphoist. Is féidir leat an freastalaí baile is mian leat a úsáid a roghnú, agus is féidir leat cumarsáid a dhéanamh le gach duine fós. Foghlaim níos mó ag https://matrix.org.",
|
|
||||||
"calculatingFileSize": "Méid an chomhaid á ríomh...",
|
"calculatingFileSize": "Méid an chomhaid á ríomh...",
|
||||||
"sendingAttachment": "Iatán á sheoladh...",
|
"sendingAttachment": "Iatán á sheoladh...",
|
||||||
"generatingVideoThumbnail": "Mionsamhail físe á cruthú...",
|
"generatingVideoThumbnail": "Mionsamhail físe á cruthú...",
|
||||||
|
|
@ -2585,9 +2288,8 @@
|
||||||
"invite": "Tabhair cuireadh",
|
"invite": "Tabhair cuireadh",
|
||||||
"publicSpaces": "Spásanna poiblí",
|
"publicSpaces": "Spásanna poiblí",
|
||||||
"whyIsThisMessageEncrypted": "Cén fáth nach féidir an teachtaireacht seo a léamh?",
|
"whyIsThisMessageEncrypted": "Cén fáth nach féidir an teachtaireacht seo a léamh?",
|
||||||
"pinMessage": "PIN go seomra",
|
"pinMessage": "Bioráin chuig an seomra",
|
||||||
"dehydrate": "Easpórtáil seisiún agus gléas wipe",
|
"dehydrate": "Easpórtáil seisiún agus gléas wipe",
|
||||||
"dehydrateTor": "Úsáideoirí TOR: Seisiún easpórtála",
|
|
||||||
"commandHint_markasdm": "Marcáil mar sheomra teachtaireachta dírí don ID Maitrís tugtha",
|
"commandHint_markasdm": "Marcáil mar sheomra teachtaireachta dírí don ID Maitrís tugtha",
|
||||||
"googlyEyesContent": "Seolann {senderName} súile googly chugat",
|
"googlyEyesContent": "Seolann {senderName} súile googly chugat",
|
||||||
"@googlyEyesContent": {
|
"@googlyEyesContent": {
|
||||||
|
|
@ -2600,11 +2302,9 @@
|
||||||
},
|
},
|
||||||
"commandHint_cuddle": "Seol cuddle",
|
"commandHint_cuddle": "Seol cuddle",
|
||||||
"commandHint_hug": "Seol barróg",
|
"commandHint_hug": "Seol barróg",
|
||||||
"startFirstChat": "Cuir tús le do chéad chomhrá",
|
|
||||||
"encryptThisChat": "Criptigh an comhrá seo",
|
"encryptThisChat": "Criptigh an comhrá seo",
|
||||||
"importNow": "Iompórtáil anois",
|
"importNow": "Iompórtáil anois",
|
||||||
"sendTypingNotifications": "Seol fógraí clóscríofa",
|
"sendTypingNotifications": "Seol fógraí clóscríofa",
|
||||||
"addChatDescription": "Cuir cur síos ar an gcomhrá leis...",
|
|
||||||
"chatPermissions": "Ceadanna comhrá",
|
"chatPermissions": "Ceadanna comhrá",
|
||||||
"emoteKeyboardNoRecents": "Beidh mothúcháin a úsáideadh le déanaí le feiceáil anseo ...",
|
"emoteKeyboardNoRecents": "Beidh mothúcháin a úsáideadh le déanaí le feiceáil anseo ...",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
|
|
@ -2613,7 +2313,6 @@
|
||||||
},
|
},
|
||||||
"chatDescriptionHasBeenChanged": "Athraíodh cur síos ar an gcomhrá",
|
"chatDescriptionHasBeenChanged": "Athraíodh cur síos ar an gcomhrá",
|
||||||
"pushNotificationsNotAvailable": "Níl fógraí brú ar fáil",
|
"pushNotificationsNotAvailable": "Níl fógraí brú ar fáil",
|
||||||
"publish": "Foilsigh",
|
|
||||||
"changeGeneralChatSettings": "Athraigh socruithe ginearálta comhrá",
|
"changeGeneralChatSettings": "Athraigh socruithe ginearálta comhrá",
|
||||||
"sendRoomNotifications": "Seol fógraí @room",
|
"sendRoomNotifications": "Seol fógraí @room",
|
||||||
"changeTheDescriptionOfTheGroup": "Athraigh an cur síos ar an gcomhrá",
|
"changeTheDescriptionOfTheGroup": "Athraigh an cur síos ar an gcomhrá",
|
||||||
|
|
@ -2635,20 +2334,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"countChatsAndCountParticipants": "{chats} comhrá agus {participants} rannpháirtí",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "Níor aimsíodh a thuilleadh comhráite...",
|
"noMoreChatsFound": "Níor aimsíodh a thuilleadh comhráite...",
|
||||||
"joinedChats": "Glacadh páirt i gcomhráite",
|
|
||||||
"space": "Spás",
|
"space": "Spás",
|
||||||
"spaces": "Spásanna",
|
"spaces": "Spásanna",
|
||||||
"directChat": "Comhrá díreach",
|
"directChat": "Comhrá díreach",
|
||||||
|
|
@ -2666,11 +2352,6 @@
|
||||||
},
|
},
|
||||||
"recoveryKey": "Eochair athshlánaithe",
|
"recoveryKey": "Eochair athshlánaithe",
|
||||||
"setChatDescription": "Socraigh cur síos ar an gcomhrá",
|
"setChatDescription": "Socraigh cur síos ar an gcomhrá",
|
||||||
"presenceStyle": "Láithreacht:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "Taispeáin teachtaireachtaí stádais ó úsáideoirí eile",
|
"presencesToggle": "Taispeáin teachtaireachtaí stádais ó úsáideoirí eile",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2680,12 +2361,7 @@
|
||||||
"removeFromSpace": "Bain as spás",
|
"removeFromSpace": "Bain as spás",
|
||||||
"placeCall": "Cuir glaoch",
|
"placeCall": "Cuir glaoch",
|
||||||
"unsupportedAndroidVersion": "Leagan Android gan tacaíocht",
|
"unsupportedAndroidVersion": "Leagan Android gan tacaíocht",
|
||||||
"previousAccount": "Cuntas roimhe seo",
|
|
||||||
"widgetJitsi": "Jitsi le chéile",
|
|
||||||
"widgetCustom": "Saincheaptha",
|
|
||||||
"widgetName": "Ainm",
|
|
||||||
"usersMustKnock": "Ní mór d'úsáideoirí cnag a chur ar",
|
"usersMustKnock": "Ní mór d'úsáideoirí cnag a chur ar",
|
||||||
"noPublicLinkHasBeenCreatedYet": "Níor cruthaíodh aon nasc poiblí go fóill",
|
|
||||||
"storeSecurlyOnThisDevice": "Stóráil go daingean ar an ngléas seo",
|
"storeSecurlyOnThisDevice": "Stóráil go daingean ar an ngléas seo",
|
||||||
"userLevel": "{level} - Úsáideoir",
|
"userLevel": "{level} - Úsáideoir",
|
||||||
"@userLevel": {
|
"@userLevel": {
|
||||||
|
|
@ -2710,9 +2386,7 @@
|
||||||
"createGroup": "Cruthaigh grúpa",
|
"createGroup": "Cruthaigh grúpa",
|
||||||
"noChatDescriptionYet": "Níl aon chur síos ar an gcomhrá cruthaithe fós.",
|
"noChatDescriptionYet": "Níl aon chur síos ar an gcomhrá cruthaithe fós.",
|
||||||
"shareInviteLink": "Roinn an nasc cuireadh",
|
"shareInviteLink": "Roinn an nasc cuireadh",
|
||||||
"notifyMeFor": "Cuir in iúl dom le haghaidh",
|
|
||||||
"passwordRecoverySettings": "Socruithe athshlánaithe pasfhocal",
|
"passwordRecoverySettings": "Socruithe athshlánaithe pasfhocal",
|
||||||
"widgetEtherpad": "Nóta téacs",
|
|
||||||
"youKickedAndBanned": "🙅 Chiceáil tú agus chuir tú cosc ar {user}",
|
"youKickedAndBanned": "🙅 Chiceáil tú agus chuir tú cosc ar {user}",
|
||||||
"@youKickedAndBanned": {
|
"@youKickedAndBanned": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2725,7 +2399,6 @@
|
||||||
"createNewAddress": "Cruthaigh seoladh nua",
|
"createNewAddress": "Cruthaigh seoladh nua",
|
||||||
"groupName": "Ainm an ghrúpa",
|
"groupName": "Ainm an ghrúpa",
|
||||||
"bundleName": "Ainm an bheartáin",
|
"bundleName": "Ainm an bheartáin",
|
||||||
"enterSpace": "Iontráil spás",
|
|
||||||
"wasDirectChatDisplayName": "Comhrá folamh (bhí {oldDisplayName})",
|
"wasDirectChatDisplayName": "Comhrá folamh (bhí {oldDisplayName})",
|
||||||
"@wasDirectChatDisplayName": {
|
"@wasDirectChatDisplayName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2738,7 +2411,6 @@
|
||||||
"oneClientLoggedOut": "Tá duine de do chliaint logáilte amach",
|
"oneClientLoggedOut": "Tá duine de do chliaint logáilte amach",
|
||||||
"overview": "Forbhreathnú",
|
"overview": "Forbhreathnú",
|
||||||
"unverified": "Neamhfhíoraithe",
|
"unverified": "Neamhfhíoraithe",
|
||||||
"widgetNameError": "Tabhair ainm taispeána, le do thoil.",
|
|
||||||
"youRejectedTheInvitation": "Dhiúltaigh tú don chuireadh",
|
"youRejectedTheInvitation": "Dhiúltaigh tú don chuireadh",
|
||||||
"youHaveWithdrawnTheInvitationFor": "Tharraing tú siar an cuireadh do {user}",
|
"youHaveWithdrawnTheInvitationFor": "Tharraing tú siar an cuireadh do {user}",
|
||||||
"@youHaveWithdrawnTheInvitationFor": {
|
"@youHaveWithdrawnTheInvitationFor": {
|
||||||
|
|
@ -2748,14 +2420,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Tugadh cuireadh duit trí nasc chuig:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"youInvitedUser": "📩 Thug tú cuireadh do {user}",
|
"youInvitedUser": "📩 Thug tú cuireadh do {user}",
|
||||||
"@youInvitedUser": {
|
"@youInvitedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2768,7 +2432,6 @@
|
||||||
"saveKeyManuallyDescription": "Sábháil an eochair seo de láimh trí dialóg nó gearrthaisce comhroinnte an chórais a spreagadh.",
|
"saveKeyManuallyDescription": "Sábháil an eochair seo de láimh trí dialóg nó gearrthaisce comhroinnte an chórais a spreagadh.",
|
||||||
"storeInAndroidKeystore": "Stóráil i Android KeyStore",
|
"storeInAndroidKeystore": "Stóráil i Android KeyStore",
|
||||||
"storeInAppleKeyChain": "Stóráil i Apple KeyChain",
|
"storeInAppleKeyChain": "Stóráil i Apple KeyChain",
|
||||||
"appearOnTop": "Le feiceáil ar an mbarr",
|
|
||||||
"newSpaceDescription": "Ligeann spásanna duit do chomhráite a chomhdhlúthú agus pobail phríobháideacha nó phoiblí a thógáil.",
|
"newSpaceDescription": "Ligeann spásanna duit do chomhráite a chomhdhlúthú agus pobail phríobháideacha nó phoiblí a thógáil.",
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "Is féidir comhrá a aimsiú tríd an gcuardach ar {server}",
|
"chatCanBeDiscoveredViaSearchOnServer": "Is féidir comhrá a aimsiú tríd an gcuardach ar {server}",
|
||||||
"@chatCanBeDiscoveredViaSearchOnServer": {
|
"@chatCanBeDiscoveredViaSearchOnServer": {
|
||||||
|
|
@ -2796,33 +2459,15 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /discardsession"
|
"description": "Usage hint for the command /discardsession"
|
||||||
},
|
},
|
||||||
"allRooms": "Gach Comhrá Grúpa",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"block": "Bloc",
|
"block": "Bloc",
|
||||||
"blockListDescription": "Is féidir leat bac a chur ar úsáideoirí atá ag cur isteach ort. Ní bheidh tú in ann teachtaireachtaí nó cuireadh seomra ar bith a fháil ó na húsáideoirí ar do liosta bloc pearsanta.",
|
"blockListDescription": "Is féidir leat bac a chur ar úsáideoirí atá ag cur isteach ort. Ní bheidh tú in ann teachtaireachtaí nó cuireadh seomra ar bith a fháil ó na húsáideoirí ar do liosta bloc pearsanta.",
|
||||||
"blockUsername": "Déan neamhaird de ainm úsáideora",
|
"blockUsername": "Déan neamhaird de ainm úsáideora",
|
||||||
"inviteContactToGroupQuestion": "Ar mhaith leat cuireadh a thabhairt do {contact} chuig an gcomhrá \"{groupName}\"?",
|
|
||||||
"tryAgain": "Bain triail eile as",
|
"tryAgain": "Bain triail eile as",
|
||||||
"optionalRedactReason": "(Roghnach) An chúis leis an teachtaireacht seo a chur in eagar...",
|
"optionalRedactReason": "(Roghnach) An chúis leis an teachtaireacht seo a chur in eagar...",
|
||||||
"dehydrateWarning": "Ní féidir an gníomh seo a chealú. Cinntigh go stórálann tú an comhad cúltaca go sábháilte.",
|
"dehydrateWarning": "Ní féidir an gníomh seo a chealú. Cinntigh go stórálann tú an comhad cúltaca go sábháilte.",
|
||||||
"hydrateTor": "Úsáideoirí TOR: Iompórtáil easpórtáil seisiún",
|
|
||||||
"hydrateTorLong": "An ndearna tú do sheisiún a easpórtáil an uair dheireanach ar TOR? Iompórtáil go tapa é agus leanúint ar aghaidh ag comhrá.",
|
|
||||||
"hydrate": "Athchóirigh ó chomhad cúltaca",
|
"hydrate": "Athchóirigh ó chomhad cúltaca",
|
||||||
"commandHint_googly": "Seol roinnt súile googly",
|
"commandHint_googly": "Seol roinnt súile googly",
|
||||||
"notAnImage": "Ní comhad íomhá é.",
|
"notAnImage": "Ní comhad íomhá é.",
|
||||||
"userRole": "Ról an úsáideora",
|
|
||||||
"minimumPowerLevel": "Is é {level} an t-íosleibhéal cumhachta.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"isReadyForKeyVerification": "Tá {sender} réidh le haghaidh fíorú eochair",
|
"isReadyForKeyVerification": "Tá {sender} réidh le haghaidh fíorú eochair",
|
||||||
"@isReadyForKeyVerification": {
|
"@isReadyForKeyVerification": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2863,9 +2508,6 @@
|
||||||
},
|
},
|
||||||
"sendReadReceiptsDescription": "Is féidir le rannpháirtithe eile i gcomhrá a fheiceáil nuair a bhíonn teachtaireacht léite agat.",
|
"sendReadReceiptsDescription": "Is féidir le rannpháirtithe eile i gcomhrá a fheiceáil nuair a bhíonn teachtaireacht léite agat.",
|
||||||
"doesNotSeemToBeAValidHomeserver": "Ní cosúil gur freastalaí baile comhoiriúnach é. URL mícheart?",
|
"doesNotSeemToBeAValidHomeserver": "Ní cosúil gur freastalaí baile comhoiriúnach é. URL mícheart?",
|
||||||
"indexedDbErrorTitle": "Saincheisteanna mód príobháideach",
|
|
||||||
"indexedDbErrorLong": "Ar an drochuair níl an stóráil teachtaireachta cumasaithe sa mhód príobháideach de réir réamhshocraithe.\nTabhair cuairt le do thoil\n - faoi: config\n - socraithe dom.indexedDB.privateBrowsing.enabled go fíor\nSeachas sin, ní féidir FluffyChat a rith.",
|
|
||||||
"nextAccount": "An chéad chuntas eile",
|
|
||||||
"youJoinedTheChat": "Chuaigh tú isteach sa chomhrá",
|
"youJoinedTheChat": "Chuaigh tú isteach sa chomhrá",
|
||||||
"youAcceptedTheInvitation": "👍 Ghlac tú leis an gcuireadh",
|
"youAcceptedTheInvitation": "👍 Ghlac tú leis an gcuireadh",
|
||||||
"screenSharingTitle": "comhroinnt scáileáin",
|
"screenSharingTitle": "comhroinnt scáileáin",
|
||||||
|
|
@ -2898,7 +2540,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"appIntroduction": "Ligeann FluffyChat duit comhrá a dhéanamh le do chairde thar theachtairí éagsúla. Foghlaim tuilleadh ag https://matrix.org nó tapáil *Ar aghaidh*.",
|
|
||||||
"appWantsToUseForLoginDescription": "Ligeann tú leis seo don aip agus don suíomh Gréasáin faisnéis a roinnt fút.",
|
"appWantsToUseForLoginDescription": "Ligeann tú leis seo don aip agus don suíomh Gréasáin faisnéis a roinnt fút.",
|
||||||
"synchronizingPleaseWaitCounter": " Ag sioncronú… ({percentage}%)",
|
"synchronizingPleaseWaitCounter": " Ag sioncronú… ({percentage}%)",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
|
|
@ -2991,10 +2632,7 @@
|
||||||
"optionalMessage": "Teachtaireacht (Roghnach)…",
|
"optionalMessage": "Teachtaireacht (Roghnach)…",
|
||||||
"enterNewChat": "Cuir isteach comhrá nua",
|
"enterNewChat": "Cuir isteach comhrá nua",
|
||||||
"commandHint_roomupgrade": "Uasghrádaigh an seomra seo go dtí an leagan seomra a thugtar",
|
"commandHint_roomupgrade": "Uasghrádaigh an seomra seo go dtí an leagan seomra a thugtar",
|
||||||
"setCustomPermissionLevel": "Socraigh leibhéal ceadanna saincheaptha",
|
|
||||||
"setPermissionsLevelDescription": "Roghnaigh ról réamhshainithe thíos nó cuir isteach leibhéal ceadanna saincheaptha idir 0 agus 100.",
|
|
||||||
"ignoreUser": "Déan neamhaird den úsáideoir",
|
"ignoreUser": "Déan neamhaird den úsáideoir",
|
||||||
"normalUser": "Gnáthúsáideoir",
|
|
||||||
"approve": "Ceadaigh",
|
"approve": "Ceadaigh",
|
||||||
"youHaveKnocked": "Bhuail tú",
|
"youHaveKnocked": "Bhuail tú",
|
||||||
"pleaseWaitUntilInvited": "Fan anois, le do thoil, go dtí go dtabharfaidh duine éigin ón seomra cuireadh duit.",
|
"pleaseWaitUntilInvited": "Fan anois, le do thoil, go dtí go dtabharfaidh duine éigin ón seomra cuireadh duit.",
|
||||||
|
|
@ -3030,10 +2668,6 @@
|
||||||
"longPressToRecordVoiceMessage": "Brúigh go fada chun teachtaireacht gutha a thaifeadadh.",
|
"longPressToRecordVoiceMessage": "Brúigh go fada chun teachtaireacht gutha a thaifeadadh.",
|
||||||
"pause": "Sos",
|
"pause": "Sos",
|
||||||
"resume": "Atosú",
|
"resume": "Atosú",
|
||||||
"newSubSpace": "Fo-spás nua",
|
|
||||||
"moveToDifferentSpace": "Bog go spás difriúil",
|
|
||||||
"moveUp": "Bog suas",
|
|
||||||
"moveDown": "Bog síos",
|
|
||||||
"removeFromSpaceDescription": "Bainfear an comhrá as an spás ach beidh sé fós le feiceáil i do liosta comhrá.",
|
"removeFromSpaceDescription": "Bainfear an comhrá as an spás ach beidh sé fós le feiceáil i do liosta comhrá.",
|
||||||
"countChats": "comhráite {chats}",
|
"countChats": "comhráite {chats}",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3062,7 +2696,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Tabhair Síntiús",
|
|
||||||
"startedAPoll": "Chuir {username} tús le pobalbhreith.",
|
"startedAPoll": "Chuir {username} tús le pobalbhreith.",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3076,7 +2709,6 @@
|
||||||
"startPoll": "Tosaigh pobalbhreith",
|
"startPoll": "Tosaigh pobalbhreith",
|
||||||
"endPoll": "Deireadh leis an pobalbhreith",
|
"endPoll": "Deireadh leis an pobalbhreith",
|
||||||
"answersVisible": "Freagraí le feiceáil",
|
"answersVisible": "Freagraí le feiceáil",
|
||||||
"answersHidden": "Freagraí i bhfolach",
|
|
||||||
"pollQuestion": "Ceist pobalbhreithe",
|
"pollQuestion": "Ceist pobalbhreithe",
|
||||||
"answerOption": "Rogha freagartha",
|
"answerOption": "Rogha freagartha",
|
||||||
"addAnswerOption": "Cuir rogha freagra leis",
|
"addAnswerOption": "Cuir rogha freagra leis",
|
||||||
|
|
@ -3144,5 +2776,43 @@
|
||||||
"logs": "Logaí",
|
"logs": "Logaí",
|
||||||
"advancedConfigs": "Cumraíochtaí Ardleibhéil",
|
"advancedConfigs": "Cumraíochtaí Ardleibhéil",
|
||||||
"advancedConfigurations": "Cumraíochtaí ardleibhéil",
|
"advancedConfigurations": "Cumraíochtaí ardleibhéil",
|
||||||
"signInWithLabel": "Sínigh isteach le:"
|
"signIn": "Sínigh isteach",
|
||||||
|
"createNewAccount": "Cruthaigh cuntas nua",
|
||||||
|
"signUpGreeting": "Tá FluffyChat díláraithe! Roghnaigh freastalaí inar mian leat do chuntas a chruthú agus déanaimis é!",
|
||||||
|
"signInGreeting": "An bhfuil cuntas agat i Matrix cheana féin? Fáilte ar ais! Roghnaigh do fhreastalaí baile agus sínigh isteach.",
|
||||||
|
"appIntro": "Le FluffyChat is féidir leat comhrá a dhéanamh le do chairde. Is teachtaire [maitrís] díláraithe slán é! Foghlaim tuilleadh ar https://matrix.org más maith leat nó cláraigh.",
|
||||||
|
"theProcessWasCanceled": "Cuireadh an próiseas ar ceal.",
|
||||||
|
"join": "Téigh i",
|
||||||
|
"searchOrEnterHomeserverAddress": "Cuardaigh nó cuir isteach seoladh an fhreastalaí baile",
|
||||||
|
"matrixId": "Aitheantas Maitrís",
|
||||||
|
"setPowerLevel": "Socraigh leibhéal cumhachta",
|
||||||
|
"makeModerator": "Déan modhnóir",
|
||||||
|
"makeAdmin": "Déan riarthóir",
|
||||||
|
"removeModeratorRights": "Bain cearta an mhodhnóra",
|
||||||
|
"removeAdminRights": "Bain cearta riarthóra",
|
||||||
|
"powerLevel": "Leibhéal cumhachta",
|
||||||
|
"setPowerLevelDescription": "Sainmhíníonn leibhéil chumhachta cad a cheadaítear do bhall a dhéanamh sa seomra seo agus is gnách go mbíonn siad idir 0 agus 100.",
|
||||||
|
"owner": "Úinéir",
|
||||||
|
"mute": "Balbhaigh",
|
||||||
|
"@mute": {
|
||||||
|
"description": "This should be a very short string because there is not much space in the button!"
|
||||||
|
},
|
||||||
|
"createNewChat": "Cruthaigh comhrá nua",
|
||||||
|
"reset": "Athshocraigh",
|
||||||
|
"supportFluffyChat": "Tacaigh le FluffyChat",
|
||||||
|
"support": "Tacaíocht",
|
||||||
|
"fluffyChatSupportBannerMessage": "Tá DO chabhair ag teastáil ó FluffyChat!\n❤️❤️❤️\nBeidh FluffyChat saor in aisce i gcónaí, ach cosnaíonn forbairt agus óstáil airgead fós.\nBraitheann todhchaí an tionscadail ar thacaíocht ó dhaoine cosúil leatsa.",
|
||||||
|
"skipSupportingFluffyChat": "Seachain tacú le FluffyChat",
|
||||||
|
"iDoNotWantToSupport": "Nílim ag iarraidh tacú leis",
|
||||||
|
"iAlreadySupportFluffyChat": "Tacaím le FluffyChat cheana féin",
|
||||||
|
"setLowPriority": "Socraigh tosaíocht íseal",
|
||||||
|
"unsetLowPriority": "Díshuiteáil tosaíocht íseal",
|
||||||
|
"removeCallFromChat": "Bain glao den chomhrá",
|
||||||
|
"removeCallFromChatDescription": "Ar mhaith leat an glao a bhaint den chomhrá do gach ball?",
|
||||||
|
"removeCallForEveryone": "Bain glao do gach duine",
|
||||||
|
"startVoiceCall": "Tosaigh glao gutha",
|
||||||
|
"startVideoCall": "Tosaigh glao físe",
|
||||||
|
"joinVoiceCall": "Glac páirt i nglao gutha",
|
||||||
|
"joinVideoCall": "Glac páirt i nglao físe",
|
||||||
|
"live": "Beo"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"areGuestsAllowedToJoin": "Permitir o acceso de convidadas",
|
"areGuestsAllowedToJoin": "Poden entrar as usuarias convidadas?",
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -129,18 +129,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "O servidor soporta as seguintes características:\n{serverVersions}\nPero esta app só soporta {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Vetar na conversa",
|
"banFromChat": "Vetar na conversa",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -173,11 +161,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Mensaxes de Bot",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -506,31 +489,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Confirmar",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Conectar",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "O contacto foi convidado ao grupo",
|
"contactHasBeenInvitedToTheGroup": "O contacto foi convidado ao grupo",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Contén nome público",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Contén nome de usuaria",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "O contido foi denunciado á administración do servidor",
|
"contentHasBeenReported": "O contido foi denunciado á administración do servidor",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -610,33 +573,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}-{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}-{month}-{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Esto desactivará a conta. Esto non ten volta atrás. Estás segura?",
|
"deactivateAccountWarning": "Esto desactivará a conta. Esto non ten volta atrás. Estás segura?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -742,11 +678,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Escribe un atallo e asocialle unha imaxe!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Conversa baleira",
|
"emptyChat": "Conversa baleira",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -796,11 +727,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Escribe o teu servidor de inicio",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Erro ao obter a localización: {error}",
|
"errorObtainingLocation": "Erro ao obter a localización: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -850,11 +776,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Ir á nova sala",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Grupo",
|
"group": "Grupo",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -926,11 +847,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identidade",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Ignorar",
|
"ignore": "Ignorar",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -992,11 +908,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Convite para min",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} convidoute a FluffyChat.\n1. Visita fluffychat.im e instala a app\n2. Crea unha conta ou Accede\n3. Abre a ligazón do convite: \n {link}",
|
"inviteText": "{username} convidoute a FluffyChat.\n1. Visita fluffychat.im e instala a app\n2. Crea unha conta ou Accede\n3. Abre a ligazón do convite: \n {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1076,11 +987,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licenza",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Claro",
|
"lightTheme": "Claro",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1134,11 +1040,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Cambios de participantes",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Mención",
|
"mention": "Mención",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1246,11 +1147,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Notificacións activadas para a conta",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} usuarias están escribindo…",
|
"numUsersTyping": "{count} usuarias están escribindo…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1350,11 +1246,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Persoas",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Elixe unha imaxe",
|
"pickImage": "Elixe unha imaxe",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1374,11 +1265,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Por favor elixe",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Escolle un código de acceso",
|
"pleaseChooseAPasscode": "Escolle un código de acceso",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1472,11 +1358,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Volta a unirte",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Quitar",
|
"remove": "Quitar",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1496,11 +1377,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Quitar dispositivo",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Retirar veto na conversa",
|
"unbanFromChat": "Retirar veto na conversa",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1556,15 +1432,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Visto por {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Enviar",
|
"send": "Enviar",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1599,16 +1466,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Enviar orixinal",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Enviar adhesivo",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Enviar vídeo",
|
"sendVideo": "Enviar vídeo",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1673,21 +1530,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Establecer emotes personalizados",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Establecer ligazón do convite",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Establecer nivel de permisos",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Establecer estado",
|
"setStatus": "Establecer estado",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1722,11 +1564,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Conexión Unificada SSO",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Saltar",
|
"skip": "Saltar",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1797,21 +1634,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Marcar Favorito",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Cambia Noificacións",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Marcar como Lido/Non lido",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Demasiadas solicitudes. Inténtao máis tarde!",
|
"tooManyRequestsWarning": "Demasiadas solicitudes. Inténtao máis tarde!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1878,15 +1700,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 conversa sen ler} other{{unreadCount} conversas sen ler}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} e {count} máis están escribindo…",
|
"userAndOthersAreTyping": "{username} e {count} máis están escribindo…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2011,11 +1824,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Imaxe de fondo:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Aviso!",
|
"warning": "Aviso!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2081,7 +1889,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Engadiuse a conversa a este espazo",
|
|
||||||
"addToSpace": "Engadir ao espazo",
|
"addToSpace": "Engadir ao espazo",
|
||||||
"scanQrCode": "Escanear código QR",
|
"scanQrCode": "Escanear código QR",
|
||||||
"sendOnEnter": "Enter para enviar",
|
"sendOnEnter": "Enter para enviar",
|
||||||
|
|
@ -2098,7 +1905,6 @@
|
||||||
"time": "Hora",
|
"time": "Hora",
|
||||||
"sender": "Remitente",
|
"sender": "Remitente",
|
||||||
"openGallery": "Galería pública",
|
"openGallery": "Galería pública",
|
||||||
"addToSpaceDescription": "Elixe un espazo ao que engadir esta conversa.",
|
|
||||||
"messageType": "Tipo de mensaxe",
|
"messageType": "Tipo de mensaxe",
|
||||||
"removeFromSpace": "Retirar do espazo",
|
"removeFromSpace": "Retirar do espazo",
|
||||||
"start": "Comezar",
|
"start": "Comezar",
|
||||||
|
|
@ -2122,21 +1928,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /dm"
|
"description": "Usage hint for the command /dm"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Abrir a cámara para un vídeo",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"videoWithSize": "Vídeo ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"publish": "Publicar",
|
|
||||||
"dismiss": "Desbotar",
|
"dismiss": "Desbotar",
|
||||||
"markAsRead": "Marcar como lido",
|
"markAsRead": "Marcar como lido",
|
||||||
"reportUser": "Denunciar usuaria",
|
"reportUser": "Denunciar usuaria",
|
||||||
|
|
@ -2162,36 +1953,10 @@
|
||||||
"pinMessage": "Fixar na sala",
|
"pinMessage": "Fixar na sala",
|
||||||
"confirmEventUnpin": "Tes a certeza de querer desafixar o evento?",
|
"confirmEventUnpin": "Tes a certeza de querer desafixar o evento?",
|
||||||
"experimentalVideoCalls": "Chamadas de vídeo en probas",
|
"experimentalVideoCalls": "Chamadas de vídeo en probas",
|
||||||
"emailOrUsername": "Email ou nome de usuaria",
|
|
||||||
"switchToAccount": "Cambiar á conta {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"previousAccount": "Conta anterior",
|
|
||||||
"nextAccount": "Conta seguinte",
|
|
||||||
"bundleName": "Nome do feixe",
|
"bundleName": "Nome do feixe",
|
||||||
"widgetVideo": "Vídeo",
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"widgetCustom": "Personalizado",
|
|
||||||
"widgetName": "Nome",
|
|
||||||
"widgetUrlError": "Non é un URL válido.",
|
|
||||||
"widgetNameError": "Escribe un nome público.",
|
|
||||||
"addWidget": "Engadir widget",
|
|
||||||
"widgetEtherpad": "Nota de texto",
|
|
||||||
"errorAddingWidget": "Erro ao engadir o widget.",
|
|
||||||
"editBundlesForAccount": "Editar os feixes desta conta",
|
"editBundlesForAccount": "Editar os feixes desta conta",
|
||||||
"addToBundle": "Engadir ao feixe",
|
"addToBundle": "Engadir ao feixe",
|
||||||
"removeFromBundle": "Eliminar deste feixe",
|
"removeFromBundle": "Eliminar deste feixe",
|
||||||
"separateChatTypes": "Separar Conversas directas e Grupos",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"youRejectedTheInvitation": "Rexeitaches o convite",
|
"youRejectedTheInvitation": "Rexeitaches o convite",
|
||||||
"youBannedUser": "Vetaches a {user}",
|
"youBannedUser": "Vetaches a {user}",
|
||||||
"@youBannedUser": {
|
"@youBannedUser": {
|
||||||
|
|
@ -2255,7 +2020,6 @@
|
||||||
"storeInAndroidKeystore": "Gardar en Android KeyStore",
|
"storeInAndroidKeystore": "Gardar en Android KeyStore",
|
||||||
"storeInAppleKeyChain": "Gardar en Apple KeyChain",
|
"storeInAppleKeyChain": "Gardar en Apple KeyChain",
|
||||||
"recoveryKeyLost": "Perdeches a chave de recuperación?",
|
"recoveryKeyLost": "Perdeches a chave de recuperación?",
|
||||||
"pleaseEnterRecoveryKey": "Escribe a túa chave de recuperación:",
|
|
||||||
"recoveryKey": "Chave de recuperación",
|
"recoveryKey": "Chave de recuperación",
|
||||||
"storeSecurlyOnThisDevice": "Gardar de xeito seguro no dispositivo",
|
"storeSecurlyOnThisDevice": "Gardar de xeito seguro no dispositivo",
|
||||||
"pleaseEnterRecoveryKeyDescription": "Para desbloquear as mensaxes antigas, escribe a chave de recuperación creada nunha sesión existente. A chave de recuperación NON é o teu contrasinal.",
|
"pleaseEnterRecoveryKeyDescription": "Para desbloquear as mensaxes antigas, escribe a chave de recuperación creada nunha sesión existente. A chave de recuperación NON é o teu contrasinal.",
|
||||||
|
|
@ -2270,15 +2034,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"unlockOldMessages": "Desbloquear mensaxes antigas",
|
"unlockOldMessages": "Desbloquear mensaxes antigas",
|
||||||
"dehydrateTorLong": "Para usuarias de TOR, é recomendable exportar a sesión antes de pechar a xanela.",
|
|
||||||
"hydrateTor": "Usuarias TOR: Importar a sesión exportada",
|
|
||||||
"hydrateTorLong": "Exportaches a túa sesión a última vez en TOR? Importaa rápidamente e segue conversando.",
|
|
||||||
"hydrate": "Restablecer desde copia de apoio",
|
"hydrate": "Restablecer desde copia de apoio",
|
||||||
"dehydrateWarning": "Esta acción non é reversible. Pon coidado en gardar o ficheiro de apoio.",
|
"dehydrateWarning": "Esta acción non é reversible. Pon coidado en gardar o ficheiro de apoio.",
|
||||||
"dehydrate": "Exportar sesión e eliminar dispositivo",
|
"dehydrate": "Exportar sesión e eliminar dispositivo",
|
||||||
"dehydrateTor": "Usuarias TOR: Exportar sesión",
|
|
||||||
"indexedDbErrorTitle": "Problemas no modo privado",
|
|
||||||
"indexedDbErrorLong": "A almacenaxe de mensaxes non está activada por defecto no modo privado.\nMira en\n- about:config\n- establece dom.indexedDB.privateBrowsing.enabled como true\nSe non, non é posible executar FluffyChat.",
|
|
||||||
"user": "Usuaria",
|
"user": "Usuaria",
|
||||||
"custom": "Personal",
|
"custom": "Personal",
|
||||||
"confirmMatrixId": "Confirma o teu ID Matrix para poder eliminar a conta.",
|
"confirmMatrixId": "Confirma o teu ID Matrix para poder eliminar a conta.",
|
||||||
|
|
@ -2295,30 +2053,12 @@
|
||||||
"commandHint_markasgroup": "Marcar como grupo",
|
"commandHint_markasgroup": "Marcar como grupo",
|
||||||
"whyIsThisMessageEncrypted": "Por que non podo ler esta mensaxe?",
|
"whyIsThisMessageEncrypted": "Por que non podo ler esta mensaxe?",
|
||||||
"noKeyForThisMessage": "Pode ser que a mensaxe fose enviada antes de que ti accedeses á túa conta neste dispositivo.\n\nTamén é posible que a remitente non validase o teu dispositivo ou tamén que algo fallase na conexión a internet.\n\nPodes ler a mensaxe noutro dispositivo? Entón podes transferila desde el! Vai a Axustes > Dispositivos e comproba que tes tódolos dispositivos verificados. Entón cando abras a sala a próxima vez a sincronización realizarase e as chaves transmitiranse automáticamente.\n\nNon desexas perder as chaves cando pechas sesión ou cambias de dispositivo? Comproba nos axustes que activaches a copia de apoio das conversas.",
|
"noKeyForThisMessage": "Pode ser que a mensaxe fose enviada antes de que ti accedeses á túa conta neste dispositivo.\n\nTamén é posible que a remitente non validase o teu dispositivo ou tamén que algo fallase na conexión a internet.\n\nPodes ler a mensaxe noutro dispositivo? Entón podes transferila desde el! Vai a Axustes > Dispositivos e comproba que tes tódolos dispositivos verificados. Entón cando abras a sala a próxima vez a sincronización realizarase e as chaves transmitiranse automáticamente.\n\nNon desexas perder as chaves cando pechas sesión ou cambias de dispositivo? Comproba nos axustes que activaches a copia de apoio das conversas.",
|
||||||
"appearOnTop": "Aparecer arriba",
|
|
||||||
"otherCallingPermissions": "Micrófono, cámara e outros permisos para FluffyChat",
|
|
||||||
"newGroup": "Novo grupo",
|
"newGroup": "Novo grupo",
|
||||||
"newSpace": "Novo espazo",
|
"newSpace": "Novo espazo",
|
||||||
"foregroundServiceRunning": "Esta notificación aparece cando se está a executar o servizo en segundo plano.",
|
"foregroundServiceRunning": "Esta notificación aparece cando se está a executar o servizo en segundo plano.",
|
||||||
"screenSharingTitle": "compartición da pantalla",
|
"screenSharingTitle": "compartición da pantalla",
|
||||||
"callingPermissions": "Permisos de chamada",
|
|
||||||
"callingAccount": "Conta que chama",
|
|
||||||
"callingAccountDetails": "Permítelle a FluffyChat usar a app de telefonía nativa de android.",
|
|
||||||
"appearOnTopDetails": "Permítelle á app aparecer por enriba (non é preciso se xa configuraches FluffyChat como unha conta para chamadas)",
|
|
||||||
"enterSpace": "Entrar no espazo",
|
|
||||||
"enterRoom": "Entrar na sala",
|
|
||||||
"allSpaces": "Todos os espazos",
|
"allSpaces": "Todos os espazos",
|
||||||
"screenSharingDetail": "Estás a compartir a túa pantalla en FluffyChat",
|
"screenSharingDetail": "Estás a compartir a túa pantalla en FluffyChat",
|
||||||
"numChats": "{number} conversas",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Agochar os eventos de menor relevancia",
|
|
||||||
"doNotShowAgain": "Non mostrar outra vez",
|
"doNotShowAgain": "Non mostrar outra vez",
|
||||||
"commandHint_googly": "Envía uns ollos desos grandes",
|
"commandHint_googly": "Envía uns ollos desos grandes",
|
||||||
"googlyEyesContent": "{senderName} enviouche uns ollos grandes",
|
"googlyEyesContent": "{senderName} enviouche uns ollos grandes",
|
||||||
|
|
@ -2355,7 +2095,6 @@
|
||||||
"sorryThatsNotPossible": "Lamentámolo... iso non é posible",
|
"sorryThatsNotPossible": "Lamentámolo... iso non é posible",
|
||||||
"deviceKeys": "Chaves do dispositivo:",
|
"deviceKeys": "Chaves do dispositivo:",
|
||||||
"newSpaceDescription": "Os Espazos permítenche consolidar as túas conversas e construir comunidades públicas ou privadas.",
|
"newSpaceDescription": "Os Espazos permítenche consolidar as túas conversas e construir comunidades públicas ou privadas.",
|
||||||
"startFirstChat": "Abre a túa primeira conversa",
|
|
||||||
"wasDirectChatDisplayName": "Conversa baleira (era {oldDisplayName})",
|
"wasDirectChatDisplayName": "Conversa baleira (era {oldDisplayName})",
|
||||||
"@wasDirectChatDisplayName": {
|
"@wasDirectChatDisplayName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2383,23 +2122,7 @@
|
||||||
"openLinkInBrowser": "Abrir ligazón no navegador",
|
"openLinkInBrowser": "Abrir ligazón no navegador",
|
||||||
"jump": "Ir alá",
|
"jump": "Ir alá",
|
||||||
"report": "informar",
|
"report": "informar",
|
||||||
"allRooms": "Todas as Conversas en grupo",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reportErrorDescription": "😭 Vaia! Algo fallou. Se queres, podes informar do problema ás persoas desenvolvedoras.",
|
"reportErrorDescription": "😭 Vaia! Algo fallou. Se queres, podes informar do problema ás persoas desenvolvedoras.",
|
||||||
"signInWithPassword": "Accede con contrasinal",
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Inténtao máis tarde ou elixe un servidor diferente.",
|
|
||||||
"signInWith": "Accede con {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notAnImage": "Non é un ficheiro de imaxe.",
|
"notAnImage": "Non é un ficheiro de imaxe.",
|
||||||
"importNow": "Importar agora",
|
"importNow": "Importar agora",
|
||||||
"importEmojis": "Importar Emojis",
|
"importEmojis": "Importar Emojis",
|
||||||
|
|
@ -2409,11 +2132,8 @@
|
||||||
"sendTypingNotifications": "Permitir ver que estás escribindo",
|
"sendTypingNotifications": "Permitir ver que estás escribindo",
|
||||||
"createGroup": "Crear grupo",
|
"createGroup": "Crear grupo",
|
||||||
"messagesStyle": "Mensaxes:",
|
"messagesStyle": "Mensaxes:",
|
||||||
"profileNotFound": "Non se atopa a usuaria no servidor. Pode que haxa un problema coa conexión ou que a usuaria non exista.",
|
|
||||||
"shareInviteLink": "Comparte ligazón de convite",
|
"shareInviteLink": "Comparte ligazón de convite",
|
||||||
"setColorTheme": "Cor do decorado:",
|
"setColorTheme": "Cor do decorado:",
|
||||||
"setTheme": "Establecer decorado:",
|
|
||||||
"inviteContactToGroupQuestion": "Queres convidar a {contact} para que se una á conversa \"{groupName}\"?",
|
|
||||||
"tryAgain": "Intentar outra vez",
|
"tryAgain": "Intentar outra vez",
|
||||||
"optionalRedactReason": "(Optativo) Razón para editar a mensaxe...",
|
"optionalRedactReason": "(Optativo) Razón para editar a mensaxe...",
|
||||||
"redactedBy": "Editada por {username}",
|
"redactedBy": "Editada por {username}",
|
||||||
|
|
@ -2439,7 +2159,6 @@
|
||||||
},
|
},
|
||||||
"redactMessageDescription": "A mensaxe vai ser editada para todas as participantes na conversa. Non ten volta atrás.",
|
"redactMessageDescription": "A mensaxe vai ser editada para todas as participantes na conversa. Non ten volta atrás.",
|
||||||
"invite": "Convidar",
|
"invite": "Convidar",
|
||||||
"addChatDescription": "Engadir descrición da conversa...",
|
|
||||||
"chatPermissions": "Permisos da conversa",
|
"chatPermissions": "Permisos da conversa",
|
||||||
"chatDescription": "Descrición da conversa",
|
"chatDescription": "Descrición da conversa",
|
||||||
"chatDescriptionHasBeenChanged": "Cambiou a descrición da conversa",
|
"chatDescriptionHasBeenChanged": "Cambiou a descrición da conversa",
|
||||||
|
|
@ -2448,7 +2167,6 @@
|
||||||
"directChat": "Conversa Directa",
|
"directChat": "Conversa Directa",
|
||||||
"setChatDescription": "Escribir descrición da conversa",
|
"setChatDescription": "Escribir descrición da conversa",
|
||||||
"inviteGroupChat": "📨 Convidar a conversa en grupo",
|
"inviteGroupChat": "📨 Convidar a conversa en grupo",
|
||||||
"invitePrivateChat": "📨 Convidar a conversa privada",
|
|
||||||
"emoteKeyboardNoRecents": "Os emotes usados recentemente aparecerán aquí...",
|
"emoteKeyboardNoRecents": "Os emotes usados recentemente aparecerán aquí...",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2496,7 +2214,6 @@
|
||||||
"yourGlobalUserIdIs": "O teu ID-usuaria global é: ",
|
"yourGlobalUserIdIs": "O teu ID-usuaria global é: ",
|
||||||
"groupName": "Nome do grupo",
|
"groupName": "Nome do grupo",
|
||||||
"searchChatsRooms": "Buscar #conversas, @usuarias...",
|
"searchChatsRooms": "Buscar #conversas, @usuarias...",
|
||||||
"startConversation": "Iniciar conversa",
|
|
||||||
"commandHint_sendraw": "Enviar json sen editar",
|
"commandHint_sendraw": "Enviar json sen editar",
|
||||||
"wrongRecoveryKey": "Desculpa... non semella ser o xeito correcto de recuperar a chave.",
|
"wrongRecoveryKey": "Desculpa... non semella ser o xeito correcto de recuperar a chave.",
|
||||||
"blockListDescription": "Podes bloquear usuarias que che molesten. Non recibirás mensaxes nin convites para salas procedentes das usuarias da túa lista persoal de bloqueo.",
|
"blockListDescription": "Podes bloquear usuarias que che molesten. Non recibirás mensaxes nin convites para salas procedentes das usuarias da túa lista persoal de bloqueo.",
|
||||||
|
|
@ -2507,12 +2224,9 @@
|
||||||
"publicSpaces": "Espazos públicos",
|
"publicSpaces": "Espazos públicos",
|
||||||
"passwordIsWrong": "O contrasinal escrito non é correcto",
|
"passwordIsWrong": "O contrasinal escrito non é correcto",
|
||||||
"pleaseEnterYourCurrentPassword": "Escribe o contrasinal actual",
|
"pleaseEnterYourCurrentPassword": "Escribe o contrasinal actual",
|
||||||
"publicLink": "Ligazón pública",
|
|
||||||
"nothingFound": "Non atopamos nada...",
|
"nothingFound": "Non atopamos nada...",
|
||||||
"decline": "Desbotar",
|
|
||||||
"newPassword": "Novo contrasinal",
|
"newPassword": "Novo contrasinal",
|
||||||
"passwordsDoNotMatch": "Os contrasinais non concordan",
|
"passwordsDoNotMatch": "Os contrasinais non concordan",
|
||||||
"subspace": "Subespazo",
|
|
||||||
"select": "Escolle",
|
"select": "Escolle",
|
||||||
"pleaseChooseAStrongPassword": "Elixe un contrasinal forte",
|
"pleaseChooseAStrongPassword": "Elixe un contrasinal forte",
|
||||||
"addChatOrSubSpace": "Engadir charla ou sub espazo",
|
"addChatOrSubSpace": "Engadir charla ou sub espazo",
|
||||||
|
|
@ -2521,18 +2235,6 @@
|
||||||
"searchForUsers": "Buscar @persoas...",
|
"searchForUsers": "Buscar @persoas...",
|
||||||
"databaseMigrationTitle": "Base de datos optimizada",
|
"databaseMigrationTitle": "Base de datos optimizada",
|
||||||
"databaseMigrationBody": "Agarda, podería levarnos un pouco.",
|
"databaseMigrationBody": "Agarda, podería levarnos un pouco.",
|
||||||
"databaseBuildErrorBody": "Non se puido crear a base de datos SQlite. A app intentará usar a base de datos clásica. Por favor informa deste fallo ás desenvolvedoras en {url}. A mensaxe do erro é: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"initAppError": "Houbo un fallo ao iniciar a app",
|
"initAppError": "Houbo un fallo ao iniciar a app",
|
||||||
"sessionLostBody": "Estragouse a túa sesión. Por favor informa deste fallo ás desenvolvedoras en {url}. A mensaxe do erro é: {error}",
|
"sessionLostBody": "Estragouse a túa sesión. Por favor informa deste fallo ás desenvolvedoras en {url}. A mensaxe do erro é: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
|
|
@ -2558,14 +2260,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Convidáronte cunha ligazón a:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"transparent": "Transparente",
|
"transparent": "Transparente",
|
||||||
"sendReadReceipts": "Enviar confirmación de lectura",
|
"sendReadReceipts": "Enviar confirmación de lectura",
|
||||||
"sendReadReceiptsDescription": "Outras participantes na conversa poden ver cando liches unha mensaxe.",
|
"sendReadReceiptsDescription": "Outras participantes na conversa poden ver cando liches unha mensaxe.",
|
||||||
|
|
@ -2591,15 +2285,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"forwardMessageTo": "Reenviar a mensaxe a {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendTypingNotificationsDescription": "As outras participantes da conversa poden ver cando estás a escribir unha mensaxe.",
|
"sendTypingNotificationsDescription": "As outras participantes da conversa poden ver cando estás a escribir unha mensaxe.",
|
||||||
"formattedMessagesDescription": "Mostrar texto enriquecido nas mensaxes como letra grosa usando markdown.",
|
"formattedMessagesDescription": "Mostrar texto enriquecido nas mensaxes como letra grosa usando markdown.",
|
||||||
"verifyOtherUserDescription": "Se verificas a outra usuaria, podes ter a certeza de que sabes con quen estás a conversar. 💪\n\nAo iniciar a verificación, ti mais a outra usuaria veredes unha xanela emerxente na app onde aparecerán varios emojis ou números que teredes que comparar entre vós.\n\nO mellor xeito de facelo é en persoa o cunha chamada de vídeo. 👭",
|
"verifyOtherUserDescription": "Se verificas a outra usuaria, podes ter a certeza de que sabes con quen estás a conversar. 💪\n\nAo iniciar a verificación, ti mais a outra usuaria veredes unha xanela emerxente na app onde aparecerán varios emojis ou números que teredes que comparar entre vós.\n\nO mellor xeito de facelo é en persoa o cunha chamada de vídeo. 👭",
|
||||||
|
|
@ -2639,11 +2324,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"presenceStyle": "Presenza:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"hidePresences": "Agochar Lista de estados?",
|
"hidePresences": "Agochar Lista de estados?",
|
||||||
"presencesToggle": "Mostra mensaxes de estado de outras usuarias",
|
"presencesToggle": "Mostra mensaxes de estado de outras usuarias",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
|
|
@ -2675,18 +2355,7 @@
|
||||||
"hideRedactedMessages": "Agochar mensaxes editadas",
|
"hideRedactedMessages": "Agochar mensaxes editadas",
|
||||||
"hideRedactedMessagesBody": "Se alguén corrixe unha mensaxe entón esta xa non será visible na charla.",
|
"hideRedactedMessagesBody": "Se alguén corrixe unha mensaxe entón esta xa non será visible na charla.",
|
||||||
"hideInvalidOrUnknownMessageFormats": "Agochar formatos de mensaxe non válidos ou descoñecidos",
|
"hideInvalidOrUnknownMessageFormats": "Agochar formatos de mensaxe non válidos ou descoñecidos",
|
||||||
"hideMemberChangesInPublicChats": "Agochar cambios dos membros nas charlas públicas",
|
|
||||||
"notifyMeFor": "Notificarme sobre",
|
|
||||||
"hideMemberChangesInPublicChatsBody": "Non mostrar na cronoloxía se alguén se une ou deixa unha conversa pública, para mellorar a lexibilidade.",
|
|
||||||
"usersMustKnock": "As usuarias teñen que pedir entrar",
|
"usersMustKnock": "As usuarias teñen que pedir entrar",
|
||||||
"userWouldLikeToChangeTheChat": "{user} quere unirse á charla.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"knocking": "A solicitar",
|
"knocking": "A solicitar",
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "A charla pode ser atopada ao buscar en {server}",
|
"chatCanBeDiscoveredViaSearchOnServer": "A charla pode ser atopada ao buscar en {server}",
|
||||||
"@chatCanBeDiscoveredViaSearchOnServer": {
|
"@chatCanBeDiscoveredViaSearchOnServer": {
|
||||||
|
|
@ -2703,7 +2372,6 @@
|
||||||
"customEmojisAndStickersBody": "Engade ou comparte emojis personais e adhesivos que poden usarse nas charlas.",
|
"customEmojisAndStickersBody": "Engade ou comparte emojis personais e adhesivos que poden usarse nas charlas.",
|
||||||
"overview": "Vista xeral",
|
"overview": "Vista xeral",
|
||||||
"passwordRecoverySettings": "Axustes de recuperación do contrasinal",
|
"passwordRecoverySettings": "Axustes de recuperación do contrasinal",
|
||||||
"noPublicLinkHasBeenCreatedYet": "Aínda non se creou unha ligazón pública",
|
|
||||||
"knock": "Solicitar acceso",
|
"knock": "Solicitar acceso",
|
||||||
"noOneCanJoin": "Ninguén pode unirse",
|
"noOneCanJoin": "Ninguén pode unirse",
|
||||||
"thereAreCountUsersBlocked": "Agora mesmo hai {count} usuarias bloqueadas.",
|
"thereAreCountUsersBlocked": "Agora mesmo hai {count} usuarias bloqueadas.",
|
||||||
|
|
@ -2712,16 +2380,6 @@
|
||||||
"count": {}
|
"count": {}
|
||||||
},
|
},
|
||||||
"publicChatAddresses": "Enderezos públicos da charla",
|
"publicChatAddresses": "Enderezos públicos da charla",
|
||||||
"userRole": "Rol da usuaria",
|
|
||||||
"minimumPowerLevel": "{level} é o nivel mínimo de responsabilidade.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"searchIn": "Buscar na conversa \"{chat}\"...",
|
"searchIn": "Buscar na conversa \"{chat}\"...",
|
||||||
"@searchIn": {
|
"@searchIn": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2742,19 +2400,6 @@
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
},
|
},
|
||||||
"noMoreChatsFound": "Non se atopan máis charlas…",
|
"noMoreChatsFound": "Non se atopan máis charlas…",
|
||||||
"joinedChats": "Charlas nas que participas",
|
|
||||||
"countChatsAndCountParticipants": "{chats} charlas e {participants} participantes",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"unread": "Sen ler",
|
"unread": "Sen ler",
|
||||||
"space": "Espazo",
|
"space": "Espazo",
|
||||||
"spaces": "Espazos",
|
"spaces": "Espazos",
|
||||||
|
|
@ -2819,10 +2464,7 @@
|
||||||
},
|
},
|
||||||
"sendCanceled": "Cancelouse o envío",
|
"sendCanceled": "Cancelouse o envío",
|
||||||
"noChatsFoundHere": "Aínda non hai conversas. Comeza a conversar con alguén premendo no botón de abaixo. ⤵️",
|
"noChatsFoundHere": "Aínda non hai conversas. Comeza a conversar con alguén premendo no botón de abaixo. ⤵️",
|
||||||
"discoverHomeservers": "Atopar servidores",
|
|
||||||
"whatIsAHomeserver": "Que é un servidor de inicio?",
|
|
||||||
"loginWithMatrixId": "Acceder co ID-Matrix",
|
"loginWithMatrixId": "Acceder co ID-Matrix",
|
||||||
"homeserverDescription": "Todos os teus datos quedan gardados no servidor de inicio, igual que co teu provedor de correo electrónico. Podes elexir o servidor que queres usar e poderás comunicarte con todos os demais. Aprende máis en https://matrix.org.",
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Non semella ser un servidor de inicio compatible. É o URL correcto?",
|
"doesNotSeemToBeAValidHomeserver": "Non semella ser un servidor de inicio compatible. É o URL correcto?",
|
||||||
"calculatingFileSize": "Calculando o tamaño do ficheiro…",
|
"calculatingFileSize": "Calculando o tamaño do ficheiro…",
|
||||||
"prepareSendingAttachment": "Preparando o envío…",
|
"prepareSendingAttachment": "Preparando o envío…",
|
||||||
|
|
@ -2966,7 +2608,6 @@
|
||||||
"crossVerifiedDevices": "Dispositivos verificados",
|
"crossVerifiedDevices": "Dispositivos verificados",
|
||||||
"verifiedDevicesOnly": "Só dispositivos verificados",
|
"verifiedDevicesOnly": "Só dispositivos verificados",
|
||||||
"waitingForServer": "Agardando polo servidor…",
|
"waitingForServer": "Agardando polo servidor…",
|
||||||
"appIntroduction": "FluffyChat permíteche laretar coas túas amizades entre diferentes mensaxerías. Coñece máis en https://matrix.org ou toca en *Continuar*.",
|
|
||||||
"notificationRuleMasterDescription": "Sobrescribe todas as outras regras e desactiva todas as notificacións.",
|
"notificationRuleMasterDescription": "Sobrescribe todas as outras regras e desactiva todas as notificacións.",
|
||||||
"appWantsToUseForLoginDescription": "Por tanto permites que a app e o sitio web compartan información sobre ti.",
|
"appWantsToUseForLoginDescription": "Por tanto permites que a app e o sitio web compartan información sobre ti.",
|
||||||
"notificationRuleMemberEventDescription": "Suprime as notificacións dos eventos de participación.",
|
"notificationRuleMemberEventDescription": "Suprime as notificacións dos eventos de participación.",
|
||||||
|
|
@ -2985,10 +2626,7 @@
|
||||||
"recordAVideo": "Gravar vídeo",
|
"recordAVideo": "Gravar vídeo",
|
||||||
"enterNewChat": "Entrar na nova conversa",
|
"enterNewChat": "Entrar na nova conversa",
|
||||||
"commandHint_roomupgrade": "Actualizar esta sala á versión de sala indicada",
|
"commandHint_roomupgrade": "Actualizar esta sala á versión de sala indicada",
|
||||||
"setCustomPermissionLevel": "Establecer nivel personalizado dos permisos",
|
|
||||||
"setPermissionsLevelDescription": "Elixe un rol predefinido dos indicados ou escribe un nivel personalizado entre 0 e 100.",
|
|
||||||
"ignoreUser": "Ignorar usuaria",
|
"ignoreUser": "Ignorar usuaria",
|
||||||
"normalUser": "Usuaria corrente",
|
|
||||||
"approve": "Aprobar",
|
"approve": "Aprobar",
|
||||||
"pleaseWaitUntilInvited": "Agora agarda a que alguén da sala te convide a entrar.",
|
"pleaseWaitUntilInvited": "Agora agarda a que alguén da sala te convide a entrar.",
|
||||||
"youHaveKnocked": "Petaches á porta",
|
"youHaveKnocked": "Petaches á porta",
|
||||||
|
|
@ -3024,10 +2662,6 @@
|
||||||
"longPressToRecordVoiceMessage": "Pulsación longa para gravar mensaxe de voz.",
|
"longPressToRecordVoiceMessage": "Pulsación longa para gravar mensaxe de voz.",
|
||||||
"pause": "Deter",
|
"pause": "Deter",
|
||||||
"resume": "Continuar",
|
"resume": "Continuar",
|
||||||
"newSubSpace": "Novo sub espazo",
|
|
||||||
"moveToDifferentSpace": "Mover a outro espazo",
|
|
||||||
"moveUp": "Mover arriba",
|
|
||||||
"moveDown": "Mover abaixo",
|
|
||||||
"removeFromSpaceDescription": "Vaise quitar a conversa do espazo pero seguirá aparecendo na túa lista de conversas.",
|
"removeFromSpaceDescription": "Vaise quitar a conversa do espazo pero seguirá aparecendo na túa lista de conversas.",
|
||||||
"countChats": "{chats} conversas",
|
"countChats": "{chats} conversas",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3038,7 +2672,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Doar",
|
|
||||||
"spaceMemberOf": "Participa no espazo {spaces}",
|
"spaceMemberOf": "Participa no espazo {spaces}",
|
||||||
"@spaceMemberOf": {
|
"@spaceMemberOf": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3070,7 +2703,6 @@
|
||||||
"startPoll": "Publicar enquisa",
|
"startPoll": "Publicar enquisa",
|
||||||
"endPoll": "Finalizar enquisa",
|
"endPoll": "Finalizar enquisa",
|
||||||
"answersVisible": "Resultados visibles",
|
"answersVisible": "Resultados visibles",
|
||||||
"answersHidden": "Non se ven os resultados",
|
|
||||||
"pollQuestion": "Pregunta da enquisa",
|
"pollQuestion": "Pregunta da enquisa",
|
||||||
"answerOption": "Opción de resposta",
|
"answerOption": "Opción de resposta",
|
||||||
"addAnswerOption": "Engadir opción",
|
"addAnswerOption": "Engadir opción",
|
||||||
|
|
@ -3138,5 +2770,43 @@
|
||||||
"logs": "Rexistros",
|
"logs": "Rexistros",
|
||||||
"advancedConfigs": "Axustes avanzados",
|
"advancedConfigs": "Axustes avanzados",
|
||||||
"advancedConfigurations": "Configuracións avanzadas",
|
"advancedConfigurations": "Configuracións avanzadas",
|
||||||
"signInWithLabel": "Acceder con:"
|
"signIn": "Acceder",
|
||||||
|
"createNewAccount": "Crear nova conta",
|
||||||
|
"signUpGreeting": "FluffyChat é descentralizada! Elixe un servidor para crear a conta e xa podes utilizar a app!",
|
||||||
|
"signInGreeting": "Xa tes unha conta en Matrix? Benvida! Selecciona o teu servidor de orixe e accede.",
|
||||||
|
"appIntro": "Con FluffyChat podes conversar coas amizades. É mensaxería segura e descentralizada en [matrix]! Coñece máis en https://matrix.org ou crea unha conta.",
|
||||||
|
"theProcessWasCanceled": "Desbotouse o proceso.",
|
||||||
|
"join": "Unirse",
|
||||||
|
"searchOrEnterHomeserverAddress": "Busca ou escribe o enderezo do servidor de inicio",
|
||||||
|
"matrixId": "ID en Matrix",
|
||||||
|
"setPowerLevel": "Establecer responsabilidade",
|
||||||
|
"makeModerator": "Facer moderadora",
|
||||||
|
"makeAdmin": "Facer admin",
|
||||||
|
"removeModeratorRights": "Retirar permiso de moderación",
|
||||||
|
"removeAdminRights": "Retirar permiso de administración",
|
||||||
|
"powerLevel": "Nivel responsabilidade",
|
||||||
|
"setPowerLevelDescription": "Os niveis de responsabilidade definen o que pode facer unha usuaria na sala, normalmente varía de 0 a 100.",
|
||||||
|
"owner": "Propietaria",
|
||||||
|
"mute": "Acalar",
|
||||||
|
"@mute": {
|
||||||
|
"description": "This should be a very short string because there is not much space in the button!"
|
||||||
|
},
|
||||||
|
"createNewChat": "Crear nova conversa",
|
||||||
|
"reset": "Restablecer",
|
||||||
|
"supportFluffyChat": "Apoia a FluffyChat",
|
||||||
|
"support": "Axuda",
|
||||||
|
"fluffyChatSupportBannerMessage": "FluffyChat precisa a TÚA axuda!\n❤️❤️❤️\nFluffyChat vai ser sempre gratuíta, pero o desenvolvemento e a hospedaxe costan cartos.\nO futuro do proxecto depende da axuda de persoas coma ti.",
|
||||||
|
"skipSupportingFluffyChat": "Omitir apoiar a FluffyChat",
|
||||||
|
"iDoNotWantToSupport": "Non quero axudar",
|
||||||
|
"iAlreadySupportFluffyChat": "Xa apoiei a FluffyChat",
|
||||||
|
"setLowPriority": "Establecer prioridade baixa",
|
||||||
|
"unsetLowPriority": "Non establecer prioridade baixa",
|
||||||
|
"removeCallFromChat": "Eliminar a chamada da conversa",
|
||||||
|
"removeCallFromChatDescription": "Queres eliminar a chamada da conversa para todos os membros?",
|
||||||
|
"removeCallForEveryone": "Eliminar para todos a chamada",
|
||||||
|
"startVoiceCall": "Iniciar chamada de voz",
|
||||||
|
"startVideoCall": "Iniciar chamada de vídeo",
|
||||||
|
"joinVoiceCall": "Unirse á chamada de voz",
|
||||||
|
"joinVideoCall": "Unirse á chamada de vídeo",
|
||||||
|
"live": "En directo"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -194,18 +194,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholder": {}
|
"placeholder": {}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "שרת הבית תומך בגרסאות:\n{serverVersions}\nאבל האפליקציה הזו תומכת רק ב-{supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "צאט חסום",
|
"banFromChat": "צאט חסום",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -233,11 +221,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "הודעות בוט",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cantOpenUri": "לא ניתן לפתוח את ה-URI {uri}",
|
"cantOpenUri": "לא ניתן לפתוח את ה-URI {uri}",
|
||||||
"@cantOpenUri": {
|
"@cantOpenUri": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -451,8 +434,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "צ'אט נוסף למרחב הזה",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "צ'אטים",
|
"chats": "צ'אטים",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -532,18 +513,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaultPermissionLevel": "רמת הרשאת ברירת מחדל",
|
"defaultPermissionLevel": "רמת הרשאת ברירת מחדל",
|
||||||
"@defaultPermissionLevel": {
|
"@defaultPermissionLevel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -614,11 +583,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "הזן את שרת הבית שלך",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"everythingReady": "הכל מוכן!",
|
"everythingReady": "הכל מוכן!",
|
||||||
"@everythingReady": {
|
"@everythingReady": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -654,11 +618,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "עבור לחדר החדש",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"groupIsPublic": "הקבוצה ציבורית",
|
"groupIsPublic": "הקבוצה ציבורית",
|
||||||
"@groupIsPublic": {
|
"@groupIsPublic": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -688,11 +647,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "זהות",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignoredUsers": "משתמשים שהתעלמו מהם",
|
"ignoredUsers": "משתמשים שהתעלמו מהם",
|
||||||
"@ignoredUsers": {
|
"@ignoredUsers": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -730,11 +684,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "הזמנה בשבילי",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} הזמין אותך ל-FluffyChat.\n1. התקן את FluffyChat: https://fluffychat.im\n2. הירשם או היכנס\n3. פתח את קישור ההזמנה: {link}",
|
"inviteText": "{username} הזמין אותך ל-FluffyChat.\n1. התקן את FluffyChat: https://fluffychat.im\n2. הירשם או היכנס\n3. פתח את קישור ההזמנה: {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -849,11 +798,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /react"
|
"description": "Usage hint for the command /react"
|
||||||
},
|
},
|
||||||
"containsUserName": "מכיל שם משתמש",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"createNewSpace": "חלל חדש",
|
"createNewSpace": "חלל חדש",
|
||||||
"@createNewSpace": {
|
"@createNewSpace": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -873,21 +817,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{year}-{month}-{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "פעולה זו תשבית את חשבון המשתמש שלך. אי אפשר לבטל את זה! האם אתה בטוח?",
|
"deactivateAccountWarning": "פעולה זו תשבית את חשבון המשתמש שלך. אי אפשר לבטל את זה! האם אתה בטוח?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1009,11 +938,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "רשיון",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "בהיר",
|
"lightTheme": "בהיר",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1034,26 +958,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "לאשר",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "התחבר",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "איש הקשר הוזמן לקבוצה",
|
"contactHasBeenInvitedToTheGroup": "איש הקשר הוזמן לקבוצה",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "מכיל שם תצוגה",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "התוכן דווח למנהלי השרת",
|
"contentHasBeenReported": "התוכן דווח למנהלי השרת",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1259,11 +1168,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "אנשים",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "בחר תמונה",
|
"pickImage": "בחר תמונה",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1278,11 +1182,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "אנא בחר",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "אנא בחר קוד גישה",
|
"pleaseChooseAPasscode": "אנא בחר קוד גישה",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1345,11 +1244,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "התראות הופעלו עבור חשבון זה",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"bundleName": "שם החבילה",
|
"bundleName": "שם החבילה",
|
||||||
"@bundleName": {},
|
"@bundleName": {},
|
||||||
"offline": "לא מקוון",
|
"offline": "לא מקוון",
|
||||||
|
|
@ -1357,11 +1251,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"openVideoCamera": "פתח את המצלמה לסרטון",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"removeFromBundle": "הסר מחבילה זו",
|
"removeFromBundle": "הסר מחבילה זו",
|
||||||
"@removeFromBundle": {},
|
"@removeFromBundle": {},
|
||||||
"enableMultiAccounts": "(בטא) אפשר ריבוי חשבונות במכשיר זה",
|
"enableMultiAccounts": "(בטא) אפשר ריבוי חשבונות במכשיר זה",
|
||||||
|
|
@ -1406,11 +1295,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"memberChanges": "שינויים בחבר",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "הזכיר",
|
"mention": "הזכיר",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1432,4 +1316,4 @@
|
||||||
"@alwaysUse24HourFormat": {
|
"@alwaysUse24HourFormat": {
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
2171
lib/l10n/intl_hi.arb
2171
lib/l10n/intl_hi.arb
File diff suppressed because it is too large
Load diff
|
|
@ -119,18 +119,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Homeserver podržava verzije specifikacije:\n{serverVersions}\nMeđutim ovaj program podržava samo {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Isključi iz chata",
|
"banFromChat": "Isključi iz chata",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -163,11 +151,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Poruke bota",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Odustani",
|
"cancel": "Odustani",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -496,31 +479,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Potvrdi",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Spoji",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kontakt je pozvan u grupu",
|
"contactHasBeenInvitedToTheGroup": "Kontakt je pozvan u grupu",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Sadržava prikazano ime",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Sadrži korisničko ime",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Sadržaj je prijavljen administratorima servera",
|
"contentHasBeenReported": "Sadržaj je prijavljen administratorima servera",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -600,33 +563,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{year}-{month}-{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Ovo će nepovratno deaktivirati tvoj korisnički račun. Stvarno to želiš?",
|
"deactivateAccountWarning": "Ovo će nepovratno deaktivirati tvoj korisnički račun. Stvarno to želiš?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -732,11 +668,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Moraš odabrati jednu kraticu emotikona i sliku!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Prazan chat",
|
"emptyChat": "Prazan chat",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -786,11 +717,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Upiši svoj homeserver",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"everythingReady": "Sve je spremno!",
|
"everythingReady": "Sve je spremno!",
|
||||||
"@everythingReady": {
|
"@everythingReady": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -831,11 +757,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Idi u novu sobu",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Grupiraj",
|
"group": "Grupiraj",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -907,11 +828,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identitet",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Zanemari",
|
"ignore": "Zanemari",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -973,11 +889,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Poziv za mene",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} te je pozvao/la u FluffyChat. \n1. Posjeti strnicu fluffychat.im i instaliraj aplikaciju \n2. Registriraj ili prijavi se \n3. Otvori poveznicu poziva: \n {link}",
|
"inviteText": "{username} te je pozvao/la u FluffyChat. \n1. Posjeti strnicu fluffychat.im i instaliraj aplikaciju \n2. Registriraj ili prijavi se \n3. Otvori poveznicu poziva: \n {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1057,11 +968,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licenca",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Svijetla",
|
"lightTheme": "Svijetla",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1105,11 +1011,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Promjene člana",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Spominjanje",
|
"mention": "Spominjanje",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1200,11 +1101,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Obavijesti su aktivirane za ovaj račun",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} korisnika tipkaju …",
|
"numUsersTyping": "{count} korisnika tipkaju …",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1294,11 +1190,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Ljudi",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Odaberi sliku",
|
"pickImage": "Odaberi sliku",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1318,11 +1209,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Odaberi",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Odaberi lozinku",
|
"pleaseChooseAPasscode": "Odaberi lozinku",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1416,11 +1302,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Ponovo se pridruži",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Ukloni",
|
"remove": "Ukloni",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1440,11 +1321,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Ukloni uređaj",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Ponovo uključi u chat",
|
"unbanFromChat": "Ponovo uključi u chat",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1500,15 +1376,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Viđeno od {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Pošalji",
|
"send": "Pošalji",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1543,16 +1410,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Pošalji original",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Pošalji naljepnicu",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Pošalji video datoteku",
|
"sendVideo": "Pošalji video datoteku",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1617,21 +1474,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Postavi prilagođene emotikone",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Pošalji poveznicu poziva",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Postavi razinu dozvola",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Postavi stanje",
|
"setStatus": "Postavi stanje",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1661,11 +1503,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Jednokratna prijava",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Preskoči",
|
"skip": "Preskoči",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1736,21 +1573,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Uklj/Isklj favorite",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Uklj/Isklj isključene",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Označi kao pročitano/nepročitano",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Previše zahtjeva. Pokušaj ponovo kasnije!",
|
"tooManyRequestsWarning": "Previše zahtjeva. Pokušaj ponovo kasnije!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1817,15 +1639,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 nepročitan chat} few{{unreadCount} nepročitana chata} other{{unreadCount} nepročitanih chatova}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} i još {count} korisnika tipkaju …",
|
"userAndOthersAreTyping": "{username} i još {count} korisnika tipkaju …",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1950,11 +1763,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Pozadina:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Upozorenje!",
|
"warning": "Upozorenje!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2076,7 +1884,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Chat je dodan u ovaj prostor",
|
|
||||||
"addToSpace": "Dodaj u prostor",
|
"addToSpace": "Dodaj u prostor",
|
||||||
"serverRequiresEmail": "Za registraciju ovaj server mora potvrditi tvoju e-mail adresu.",
|
"serverRequiresEmail": "Za registraciju ovaj server mora potvrditi tvoju e-mail adresu.",
|
||||||
"scanQrCode": "Snimi QR kod",
|
"scanQrCode": "Snimi QR kod",
|
||||||
|
|
@ -2099,7 +1906,6 @@
|
||||||
"openGallery": "Otvori galeriju",
|
"openGallery": "Otvori galeriju",
|
||||||
"time": "Vrijeme",
|
"time": "Vrijeme",
|
||||||
"removeFromSpace": "Ukloni iz prostora",
|
"removeFromSpace": "Ukloni iz prostora",
|
||||||
"addToSpaceDescription": "Odaberi prostor kojem će se ovaj chat dodati.",
|
|
||||||
"start": "Početak",
|
"start": "Početak",
|
||||||
"commandHint_clearcache": "Isprazni predmemoriju",
|
"commandHint_clearcache": "Isprazni predmemoriju",
|
||||||
"@commandHint_clearcache": {
|
"@commandHint_clearcache": {
|
||||||
|
|
@ -2121,44 +1927,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /dm"
|
"description": "Usage hint for the command /dm"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Otvori kameru za video",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"publish": "Objavi",
|
|
||||||
"markAsRead": "Označi kao pročitano",
|
"markAsRead": "Označi kao pročitano",
|
||||||
"reportUser": "Prijavi korisnika",
|
"reportUser": "Prijavi korisnika",
|
||||||
"openChat": "Otvori chat",
|
"openChat": "Otvori chat",
|
||||||
"dismiss": "Odbaci",
|
"dismiss": "Odbaci",
|
||||||
"unsupportedAndroidVersion": "Nepodržana Android verzija",
|
"unsupportedAndroidVersion": "Nepodržana Android verzija",
|
||||||
"widgetVideo": "Video",
|
|
||||||
"widgetEtherpad": "Tekstna bilješka",
|
|
||||||
"widgetCustom": "Prilagođeno",
|
|
||||||
"widgetName": "Ime",
|
|
||||||
"widgetUrlError": "Ovo nije valjan URL.",
|
|
||||||
"switchToAccount": "Prijeđi na račun {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nextAccount": "Sljedeći račun",
|
|
||||||
"emailOrUsername": "E-mail adresa ili korisničko ime",
|
|
||||||
"unsupportedAndroidVersionLong": "Ova funkcija zahtijeva noviju verziju Androida. Provjeri, postoje li nove verzije ili podrška za Lineage OS.",
|
"unsupportedAndroidVersionLong": "Ova funkcija zahtijeva noviju verziju Androida. Provjeri, postoje li nove verzije ili podrška za Lineage OS.",
|
||||||
"previousAccount": "Prethodni račun",
|
|
||||||
"recoveryKey": "Ključ za obnavljanje",
|
"recoveryKey": "Ključ za obnavljanje",
|
||||||
"recoveryKeyLost": "Izgubio/la si ključ za obnavljanje?",
|
"recoveryKeyLost": "Izgubio/la si ključ za obnavljanje?",
|
||||||
"youKickedAndBanned": "🙅 Izbacio/la i isključio/la si korisnika {user}",
|
"youKickedAndBanned": "🙅 Izbacio/la i isključio/la si korisnika {user}",
|
||||||
|
|
@ -2170,10 +1944,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dehydrateWarning": "Ovo je nepovratna radnja. Spremi datoteku sigurnosne kopije na sigurno mjesto.",
|
"dehydrateWarning": "Ovo je nepovratna radnja. Spremi datoteku sigurnosne kopije na sigurno mjesto.",
|
||||||
"hydrateTor": "Korisnici TOR-a: Uzvezite izvoz sesije",
|
|
||||||
"dehydrateTor": "Korisnici TOR-a: izvezite sesiju",
|
|
||||||
"emojis": "Emojiji",
|
"emojis": "Emojiji",
|
||||||
"indexedDbErrorLong": "Spremište poruka nažalost nije standarno uključena u privatnom modusu.\nOtvori stranicu\n - about:config\n - postavi dom.indexedDB.privateBrowsing.enabled na true\nFluffyChat se inače neće moći pokrenuti.",
|
|
||||||
"storeSecurlyOnThisDevice": "Spremi sigurno na ovom uređaju",
|
"storeSecurlyOnThisDevice": "Spremi sigurno na ovom uređaju",
|
||||||
"countFiles": "Broj datoteka: {count}",
|
"countFiles": "Broj datoteka: {count}",
|
||||||
"@countFiles": {
|
"@countFiles": {
|
||||||
|
|
@ -2201,11 +1972,7 @@
|
||||||
"placeCall": "Nazovi",
|
"placeCall": "Nazovi",
|
||||||
"videoCallsBetaWarning": "Napominjemo da se funkcija videopoziva trenutačno nalazi u beta stanju. Možda neće raditi ispravno ili uopće neće raditi na svim platformama.",
|
"videoCallsBetaWarning": "Napominjemo da se funkcija videopoziva trenutačno nalazi u beta stanju. Možda neće raditi ispravno ili uopće neće raditi na svim platformama.",
|
||||||
"experimentalVideoCalls": "Eksperimentalni videopozivi",
|
"experimentalVideoCalls": "Eksperimentalni videopozivi",
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"addWidget": "Dodaj widget",
|
|
||||||
"widgetNameError": "Zadaj prikazno ime.",
|
|
||||||
"youRejectedTheInvitation": "Odbio/la si poziv",
|
"youRejectedTheInvitation": "Odbio/la si poziv",
|
||||||
"errorAddingWidget": "Greška prilikom dodavanja widgeta.",
|
|
||||||
"youJoinedTheChat": "Pridružio/la si se chatu",
|
"youJoinedTheChat": "Pridružio/la si se chatu",
|
||||||
"youAcceptedTheInvitation": "👍 Prihvatio/la si poziv",
|
"youAcceptedTheInvitation": "👍 Prihvatio/la si poziv",
|
||||||
"youHaveWithdrawnTheInvitationFor": "Povukao/la si poziv za korisnika {user}",
|
"youHaveWithdrawnTheInvitationFor": "Povukao/la si poziv za korisnika {user}",
|
||||||
|
|
@ -2253,18 +2020,9 @@
|
||||||
"storeInSecureStorageDescription": "Ključ za obnavljanje spremi u sigurno spremište na ovom uređaju.",
|
"storeInSecureStorageDescription": "Ključ za obnavljanje spremi u sigurno spremište na ovom uređaju.",
|
||||||
"saveKeyManuallyDescription": "Spremi ovaj ključ ručno pokretanjem dijaloga za dijeljenje sustava ili međuspremnika.",
|
"saveKeyManuallyDescription": "Spremi ovaj ključ ručno pokretanjem dijaloga za dijeljenje sustava ili međuspremnika.",
|
||||||
"storeInAndroidKeystore": "Spremi u Android KeyStore",
|
"storeInAndroidKeystore": "Spremi u Android KeyStore",
|
||||||
"separateChatTypes": "Zasebni izravni chatovi i grupe",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"dehydrateTorLong": "Korisnicima TOR-a se preporučuje izvoz sesije prije zatvaranja prozora.",
|
|
||||||
"hydrateTorLong": "Je li zadnji izvoz sesije bio na TOR-u? Brzo ga uvezi i nastavi razgovarati.",
|
|
||||||
"hydrate": "Obnovi pomoću sigurnosne kopije",
|
"hydrate": "Obnovi pomoću sigurnosne kopije",
|
||||||
"pleaseEnterRecoveryKey": "Upiši svoj ključ za obnavljanje:",
|
|
||||||
"users": "Korisnici",
|
"users": "Korisnici",
|
||||||
"pleaseEnterRecoveryKeyDescription": "Za otključavanje starih poruka upiši ključ za obnavljanje koji je generiran u prethodnoj sesiji. Tvoj ključ za obnavljanje NIJE tvoja lozinka.",
|
"pleaseEnterRecoveryKeyDescription": "Za otključavanje starih poruka upiši ključ za obnavljanje koji je generiran u prethodnoj sesiji. Tvoj ključ za obnavljanje NIJE tvoja lozinka.",
|
||||||
"indexedDbErrorTitle": "Problemi u privatnom modusu",
|
|
||||||
"youBannedUser": "Isključio/la si korisnika {user}",
|
"youBannedUser": "Isključio/la si korisnika {user}",
|
||||||
"@youBannedUser": {
|
"@youBannedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2285,20 +2043,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"numChats": "{number} chata",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"fileIsTooBigForServer": "Neuspjelo slanje! Server podržava samo priloge do {max}.",
|
"fileIsTooBigForServer": "Neuspjelo slanje! Server podržava samo priloge do {max}.",
|
||||||
"jumpToLastReadMessage": "Skoči na zadnju pročitanu poruku",
|
"jumpToLastReadMessage": "Skoči na zadnju pročitanu poruku",
|
||||||
"commandHint_markasdm": "Označi kao sobu za izravnu razmjenu poruka za zadani Matrix ID",
|
"commandHint_markasdm": "Označi kao sobu za izravnu razmjenu poruka za zadani Matrix ID",
|
||||||
"commandHint_markasgroup": "Označi kao grupu",
|
"commandHint_markasgroup": "Označi kao grupu",
|
||||||
"hideUnimportantStateEvents": "Sakrij nevažna stanja događaja",
|
|
||||||
"doNotShowAgain": "Nemoj više prikazivati",
|
"doNotShowAgain": "Nemoj više prikazivati",
|
||||||
"readUpToHere": "Pročitaj do ovdje",
|
"readUpToHere": "Pročitaj do ovdje",
|
||||||
"wasDirectChatDisplayName": "Prazan chat (zvao se {oldDisplayName})",
|
"wasDirectChatDisplayName": "Prazan chat (zvao se {oldDisplayName})",
|
||||||
|
|
@ -2314,14 +2062,10 @@
|
||||||
"noOtherDevicesFound": "Nijedan drugi uređaj nije pronađen",
|
"noOtherDevicesFound": "Nijedan drugi uređaj nije pronađen",
|
||||||
"whyIsThisMessageEncrypted": "Zašto nije moguće čitati ovu poruku?",
|
"whyIsThisMessageEncrypted": "Zašto nije moguće čitati ovu poruku?",
|
||||||
"jump": "Skoči",
|
"jump": "Skoči",
|
||||||
"startFirstChat": "Započni svoj prvi chat",
|
|
||||||
"newSpaceDescription": "Prostori omogućuju konsolidiranje tvojih chatova i izgradnju privatne ili javne zajednice.",
|
"newSpaceDescription": "Prostori omogućuju konsolidiranje tvojih chatova i izgradnju privatne ili javne zajednice.",
|
||||||
"encryptThisChat": "Šifiraj ovaj chat",
|
"encryptThisChat": "Šifiraj ovaj chat",
|
||||||
"deviceKeys": "Ključevi uređaja:",
|
"deviceKeys": "Ključevi uređaja:",
|
||||||
"foregroundServiceRunning": "Ova se obavijest pojavljuje kada se pokreće usluga u prvom planu.",
|
"foregroundServiceRunning": "Ova se obavijest pojavljuje kada se pokreće usluga u prvom planu.",
|
||||||
"callingPermissions": "Dozvole za pozivanje",
|
|
||||||
"callingAccountDetails": "Omogućuje FluffyChatu korištenje izvorne Android aplikacije za pozivanje.",
|
|
||||||
"callingAccount": "Račun za pozivanje",
|
|
||||||
"commandHint_hug": "Pošalji grljenje",
|
"commandHint_hug": "Pošalji grljenje",
|
||||||
"commandHint_googly": "Pošalji kotrljajuće oči",
|
"commandHint_googly": "Pošalji kotrljajuće oči",
|
||||||
"commandHint_cuddle": "Pošalji maženje",
|
"commandHint_cuddle": "Pošalji maženje",
|
||||||
|
|
@ -2335,15 +2079,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enterRoom": "Upiši sobu",
|
|
||||||
"screenSharingDetail": "Dijeliš svoj ekran u FuffyChatu",
|
"screenSharingDetail": "Dijeliš svoj ekran u FuffyChatu",
|
||||||
"appearOnTopDetails": "Omogućuje prikaz aplikacije ispred drugih (nije potrebno ako je FluffyChat već postavljen kao račun za pozivanje)",
|
|
||||||
"appearOnTop": "Prikaz ispred drugih",
|
|
||||||
"newGroup": "Nova grupa",
|
"newGroup": "Nova grupa",
|
||||||
"allSpaces": "Svi prostori",
|
"allSpaces": "Svi prostori",
|
||||||
"screenSharingTitle": "dijeljenje ekrana",
|
"screenSharingTitle": "dijeljenje ekrana",
|
||||||
"otherCallingPermissions": "Mikrofon, kamera i druge FluffyChat dozvole",
|
|
||||||
"enterSpace": "Upiši prostor",
|
|
||||||
"newSpace": "Novi prostor",
|
"newSpace": "Novi prostor",
|
||||||
"sorryThatsNotPossible": "Žao nam je … to nije moguće",
|
"sorryThatsNotPossible": "Žao nam je … to nije moguće",
|
||||||
"disableEncryptionWarning": "Iz sigurnosnih razloga ne možeš deaktivirati šifriranje u chatu u kojem je prije bilo aktivirano.",
|
"disableEncryptionWarning": "Iz sigurnosnih razloga ne možeš deaktivirati šifriranje u chatu u kojem je prije bilo aktivirano.",
|
||||||
|
|
@ -2378,23 +2117,7 @@
|
||||||
"reopenChat": "Ponovo otvori chat",
|
"reopenChat": "Ponovo otvori chat",
|
||||||
"openLinkInBrowser": "Otvori poveznicu u pregledniku",
|
"openLinkInBrowser": "Otvori poveznicu u pregledniku",
|
||||||
"report": "prijavi",
|
"report": "prijavi",
|
||||||
"allRooms": "Svi grupni chatovi",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reportErrorDescription": "😭 Joj! Dogodila se greška. Pokušaj ponovo kasnije. Ako želiš, grešku možeš prijaviti programerima.",
|
"reportErrorDescription": "😭 Joj! Dogodila se greška. Pokušaj ponovo kasnije. Ako želiš, grešku možeš prijaviti programerima.",
|
||||||
"signInWithPassword": "Prijavi se s lozinkom",
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Pokušaj ponovo kasnije ili odaberi jedan drugi server.",
|
|
||||||
"signInWith": "Prijavi se pomoću {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notAnImage": "Nije slikovna datoteka.",
|
"notAnImage": "Nije slikovna datoteka.",
|
||||||
"importNow": "Uvezi sada",
|
"importNow": "Uvezi sada",
|
||||||
"importEmojis": "Uvezi emoji slike",
|
"importEmojis": "Uvezi emoji slike",
|
||||||
|
|
@ -2419,7 +2142,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"optionalRedactReason": "(Opcionalno) Razlog za redigiranje ove poruke …",
|
"optionalRedactReason": "(Opcionalno) Razlog za redigiranje ove poruke …",
|
||||||
"inviteContactToGroupQuestion": "Želiš li pozvati {contact} u chat „{groupName}”?",
|
|
||||||
"redactedByBecause": "Preuređeno od {username} zbog: „{reason}”",
|
"redactedByBecause": "Preuređeno od {username} zbog: „{reason}”",
|
||||||
"@redactedByBecause": {
|
"@redactedByBecause": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2433,20 +2155,16 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"redactMessageDescription": "Poruka će se redigirati za sve sudionike u ovoj konverzaciji. To je nepovratna radnja.",
|
"redactMessageDescription": "Poruka će se redigirati za sve sudionike u ovoj konverzaciji. To je nepovratna radnja.",
|
||||||
"addChatDescription": "Dodaj opis chata …",
|
|
||||||
"directChat": "Izravni chat",
|
"directChat": "Izravni chat",
|
||||||
"inviteGroupChat": "📨 Pozivnica u grupni chat",
|
"inviteGroupChat": "📨 Pozivnica u grupni chat",
|
||||||
"invitePrivateChat": "📨 Pozivnica u privatni chat",
|
|
||||||
"noChatDescriptionYet": "Opis chata još nije stvoren.",
|
"noChatDescriptionYet": "Opis chata još nije stvoren.",
|
||||||
"chatDescriptionHasBeenChanged": "Opis chata je promijenjen",
|
"chatDescriptionHasBeenChanged": "Opis chata je promijenjen",
|
||||||
"profileNotFound": "Korisnik nije pronađen na serveru. Možda postoji problem s vezom ili korisnik ne postoji.",
|
|
||||||
"shareInviteLink": "Dijeli poveznicu za poziv",
|
"shareInviteLink": "Dijeli poveznicu za poziv",
|
||||||
"emoteKeyboardNoRecents": "Ovdje će se pojaviti nedavno korišteni emotikoni …",
|
"emoteKeyboardNoRecents": "Ovdje će se pojaviti nedavno korišteni emotikoni …",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setTheme": "Postavi temu:",
|
|
||||||
"createGroup": "Stvori grupu",
|
"createGroup": "Stvori grupu",
|
||||||
"invite": "Pozovi",
|
"invite": "Pozovi",
|
||||||
"invalidInput": "Neispravan unos!",
|
"invalidInput": "Neispravan unos!",
|
||||||
|
|
@ -2471,7 +2189,6 @@
|
||||||
"pushNotificationsNotAvailable": "Automatsko slanje obavijesti nije dostupno",
|
"pushNotificationsNotAvailable": "Automatsko slanje obavijesti nije dostupno",
|
||||||
"learnMore": "Saznaj više",
|
"learnMore": "Saznaj više",
|
||||||
"createGroupAndInviteUsers": "Stvori grupu i pozovi korisnike",
|
"createGroupAndInviteUsers": "Stvori grupu i pozovi korisnike",
|
||||||
"startConversation": "Pokreni konverzaciju",
|
|
||||||
"blockedUsers": "Blokirani korisnici",
|
"blockedUsers": "Blokirani korisnici",
|
||||||
"groupCanBeFoundViaSearch": "Grupa se može pronaći putem pretrage",
|
"groupCanBeFoundViaSearch": "Grupa se može pronaći putem pretrage",
|
||||||
"block": "Blokiraj",
|
"block": "Blokiraj",
|
||||||
|
|
@ -2500,23 +2217,14 @@
|
||||||
"newPassword": "Nova lozinka",
|
"newPassword": "Nova lozinka",
|
||||||
"unbanUserDescription": "Korisnik će se ponovo moći pridružiti chatu ako pokuša.",
|
"unbanUserDescription": "Korisnik će se ponovo moći pridružiti chatu ako pokuša.",
|
||||||
"publicSpaces": "Javni prostori",
|
"publicSpaces": "Javni prostori",
|
||||||
"subspace": "Podprostori",
|
|
||||||
"decline": "Odbij",
|
|
||||||
"thisDevice": "Ovaj uređaj:",
|
"thisDevice": "Ovaj uređaj:",
|
||||||
"presenceStyle": "Prisutnost:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "Prikaži poruke stanja od drugih korisnika",
|
"presencesToggle": "Prikaži poruke stanja od drugih korisnika",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"noPublicLinkHasBeenCreatedYet": "Još nije stvorena nijedna javna poveznica",
|
|
||||||
"hidePresences": "Sakriti popis stanja?",
|
"hidePresences": "Sakriti popis stanja?",
|
||||||
"pleaseEnterYourCurrentPassword": "Upiši svoju trenutačnu lozinku",
|
"pleaseEnterYourCurrentPassword": "Upiši svoju trenutačnu lozinku",
|
||||||
"publicLink": "Javna poveznica",
|
|
||||||
"passwordIsWrong": "Tvoja upisana lozinka je kriva",
|
"passwordIsWrong": "Tvoja upisana lozinka je kriva",
|
||||||
"initAppError": "Dogodila se greška prilikom inicijaliziranja aplikacije",
|
"initAppError": "Dogodila se greška prilikom inicijaliziranja aplikacije",
|
||||||
"hideRedactedMessagesBody": "Ako netko redigira poruku, ta poruka više neće biti vidljiva u chatu.",
|
"hideRedactedMessagesBody": "Ako netko redigira poruku, ta poruka više neće biti vidljiva u chatu.",
|
||||||
|
|
@ -2527,27 +2235,9 @@
|
||||||
"hideRedactedMessages": "Sakrij redigirane poruke",
|
"hideRedactedMessages": "Sakrij redigirane poruke",
|
||||||
"hideInvalidOrUnknownMessageFormats": "Sakrij nevažeće ili nepoznate formate poruka",
|
"hideInvalidOrUnknownMessageFormats": "Sakrij nevažeće ili nepoznate formate poruka",
|
||||||
"overview": "Pregled",
|
"overview": "Pregled",
|
||||||
"notifyMeFor": "Obavijesit me za",
|
|
||||||
"passwordRecoverySettings": "Postavke za obnavljanje lozinke",
|
"passwordRecoverySettings": "Postavke za obnavljanje lozinke",
|
||||||
"hideMemberChangesInPublicChats": "Sakrij promjene članova u javnim chatovima",
|
|
||||||
"youInvitedToBy": "📩 Pozvan/a si putem poveznice na:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"usersMustKnock": "Korisnici moraju pokucati",
|
"usersMustKnock": "Korisnici moraju pokucati",
|
||||||
"noOneCanJoin": "Nitko se ne može pridružiti",
|
"noOneCanJoin": "Nitko se ne može pridružiti",
|
||||||
"userWouldLikeToChangeTheChat": "{user} se želi pridružiti chatu.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"knock": "Pokucaj",
|
"knock": "Pokucaj",
|
||||||
"knocking": "Kucanje",
|
"knocking": "Kucanje",
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "Chat se može otkriti pretraživanjem servera {server}",
|
"chatCanBeDiscoveredViaSearchOnServer": "Chat se može otkriti pretraživanjem servera {server}",
|
||||||
|
|
@ -2564,7 +2254,6 @@
|
||||||
"joinSpace": "Pridruži se prostoru",
|
"joinSpace": "Pridruži se prostoru",
|
||||||
"publicChatAddresses": "Adrese javnih chatova",
|
"publicChatAddresses": "Adrese javnih chatova",
|
||||||
"createNewAddress": "Stvori novu adresu",
|
"createNewAddress": "Stvori novu adresu",
|
||||||
"userRole": "Korisnička uloga",
|
|
||||||
"verifyOtherUser": "🔐 Potvrdi drugog korisnika",
|
"verifyOtherUser": "🔐 Potvrdi drugog korisnika",
|
||||||
"sendTypingNotificationsDescription": "Drugi sudionici u chatu mogu vidjeti kada tipkaš novu poruku.",
|
"sendTypingNotificationsDescription": "Drugi sudionici u chatu mogu vidjeti kada tipkaš novu poruku.",
|
||||||
"sendReadReceiptsDescription": "Drugi sudionici u raygovoru mogu vidjeti kada pročitaš poruku.",
|
"sendReadReceiptsDescription": "Drugi sudionici u raygovoru mogu vidjeti kada pročitaš poruku.",
|
||||||
|
|
@ -2668,39 +2357,8 @@
|
||||||
"verifyOtherDeviceDescription": "Kada potvrdiš jedan drugi uređaj, ti uređaji mogu razmjenjivati ključeve, povećavajući tvoju ukupnu sigurnost. 💪 Kada pokreneš provjeru, pojavit će se skočni prozor u aplikaciji na oba uređaja. Tamo ćeš tada vidjeti niz emojija ili brojeve koje moraš međusobno usporediti. Najbolje je imati oba uređaja pri ruci prije nego što započneš provjeru. 🤳",
|
"verifyOtherDeviceDescription": "Kada potvrdiš jedan drugi uređaj, ti uređaji mogu razmjenjivati ključeve, povećavajući tvoju ukupnu sigurnost. 💪 Kada pokreneš provjeru, pojavit će se skočni prozor u aplikaciji na oba uređaja. Tamo ćeš tada vidjeti niz emojija ili brojeve koje moraš međusobno usporediti. Najbolje je imati oba uređaja pri ruci prije nego što započneš provjeru. 🤳",
|
||||||
"verifyOtherUserDescription": "Ako potvrdiš jednog drugog korisnika, možeš biti siguran/na da znaš kome zapravo pišeš. 💪\n\nKada pokreneš provjeru, vi i drugi korisnik vidjet ćete skočni prozor u aplikaciji. Tamo ćeš tada vidjeti niz emojija ili brojeve koje morate međusobno usporediti.\n\nNajbolji način za to je da se nađete zajedno ili započnete videopoziv. 👭",
|
"verifyOtherUserDescription": "Ako potvrdiš jednog drugog korisnika, možeš biti siguran/na da znaš kome zapravo pišeš. 💪\n\nKada pokreneš provjeru, vi i drugi korisnik vidjet ćete skočni prozor u aplikaciji. Tamo ćeš tada vidjeti niz emojija ili brojeve koje morate međusobno usporediti.\n\nNajbolji način za to je da se nađete zajedno ili započnete videopoziv. 👭",
|
||||||
"knockRestricted": "Pokucaj na ograničene sobe",
|
"knockRestricted": "Pokucaj na ograničene sobe",
|
||||||
"hideMemberChangesInPublicChatsBody": "Za bolju čitljivosti, na vremenskoj traci chata nemoj prikazivati kad se netko pridruži ili napusti javni chat.",
|
|
||||||
"makeAdminDescription": "Nakon postavljanja ovog korisnika kao administratora, to možda nećeš moći poništiti jer će on tada imati iste dozvole kao i ti.",
|
"makeAdminDescription": "Nakon postavljanja ovog korisnika kao administratora, to možda nećeš moći poništiti jer će on tada imati iste dozvole kao i ti.",
|
||||||
"leaveEmptyToClearStatus": "Ostavi prazno za brisanje tvog stanja.",
|
"leaveEmptyToClearStatus": "Ostavi prazno za brisanje tvog stanja.",
|
||||||
"forwardMessageTo": "Proslijediti poruku u sobu {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"minimumPowerLevel": "{level} je najmanja razina prava.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"databaseBuildErrorBody": "Nije moguće izgraditi SQlite bazu podataka. Aplikacija za sada pokušava koristiti staru bazu podataka. Prijavi ovu grešku programerima na {url}. Poruka o grešci glasi: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceipts": "Šalji potvrde o čitanju",
|
"sendReadReceipts": "Šalji potvrde o čitanju",
|
||||||
"acceptedKeyVerification": "{sender} je prihvatio/la potvrđivanje ključa",
|
"acceptedKeyVerification": "{sender} je prihvatio/la potvrđivanje ključa",
|
||||||
"@acceptedKeyVerification": {
|
"@acceptedKeyVerification": {
|
||||||
|
|
@ -2755,10 +2413,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setCustomPermissionLevel": "Postavi razinu dozvole",
|
|
||||||
"setPermissionsLevelDescription": "Odaberi unaprijed definiranu ulogu u nastavku ili upiši prilagođenu razinu dozvole između 0 i 100.",
|
|
||||||
"ignoreUser": "Zanemari korisnika",
|
"ignoreUser": "Zanemari korisnika",
|
||||||
"normalUser": "Normalni korisnik",
|
|
||||||
"aboutHomeserver": "Informacije o {homeserver}",
|
"aboutHomeserver": "Informacije o {homeserver}",
|
||||||
"@aboutHomeserver": {
|
"@aboutHomeserver": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2769,21 +2424,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"commandHint_roomupgrade": "Nadogradi ovu sobu na zadanu verziju sobe",
|
"commandHint_roomupgrade": "Nadogradi ovu sobu na zadanu verziju sobe",
|
||||||
"countChatsAndCountParticipants": "{chats} chata i {participants} sudionika",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "Nema više chatova …",
|
"noMoreChatsFound": "Nema više chatova …",
|
||||||
"noChatsFoundHere": "Ovdje još nisu pronađeni chatovi. Započni novi chat s nekime pomoću donjeg gumba. ⤵️",
|
"noChatsFoundHere": "Ovdje još nisu pronađeni chatovi. Započni novi chat s nekime pomoću donjeg gumba. ⤵️",
|
||||||
"joinedChats": "Pridruženi chatovi",
|
|
||||||
"unread": "Nepročitano",
|
"unread": "Nepročitano",
|
||||||
"space": "Prostor",
|
"space": "Prostor",
|
||||||
"spaces": "Prostori",
|
"spaces": "Prostori",
|
||||||
|
|
@ -2878,9 +2520,6 @@
|
||||||
"changelog": "Dnevnik promjena",
|
"changelog": "Dnevnik promjena",
|
||||||
"sendCanceled": "Slanje je prekinuto",
|
"sendCanceled": "Slanje je prekinuto",
|
||||||
"loginWithMatrixId": "Prijava pomoću Matrix-ID-a",
|
"loginWithMatrixId": "Prijava pomoću Matrix-ID-a",
|
||||||
"discoverHomeservers": "Otkrij homeservere",
|
|
||||||
"whatIsAHomeserver": "Što je homeserver?",
|
|
||||||
"homeserverDescription": "Svi se tvoji podaci spremaju na homeserver, baš kao kod pružatelja usluge e-pošte. Možeš odabrati koji homeserver želiš koristiti, te istovremeno komunicirati sa svima. Saznaj više na at https://matrix.org.",
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Čini se da nije kompatibilan homeserver. Pogrešan URL?",
|
"doesNotSeemToBeAValidHomeserver": "Čini se da nije kompatibilan homeserver. Pogrešan URL?",
|
||||||
"calculatingFileSize": "Izračunavanje veličine datoteke …",
|
"calculatingFileSize": "Izračunavanje veličine datoteke …",
|
||||||
"generatingVideoThumbnail": "Generiranje minijatura videa …",
|
"generatingVideoThumbnail": "Generiranje minijatura videa …",
|
||||||
|
|
@ -2932,7 +2571,6 @@
|
||||||
"appWantsToUseForLoginDescription": "Ovime dopuštaš aplikaciji i web-stranici da dijele podatke o tebi.",
|
"appWantsToUseForLoginDescription": "Ovime dopuštaš aplikaciji i web-stranici da dijele podatke o tebi.",
|
||||||
"open": "Otvori",
|
"open": "Otvori",
|
||||||
"waitingForServer": "Čekanje na server …",
|
"waitingForServer": "Čekanje na server …",
|
||||||
"appIntroduction": "FluffyChat omogućuje da razgovaraš s prijateljima preko različitih messengera. Saznaj više na https://matrix.org ili jednostavno dodirni *Nastavi*.",
|
|
||||||
"newChatRequest": "📩 Novi zahtjev za chat",
|
"newChatRequest": "📩 Novi zahtjev za chat",
|
||||||
"contentNotificationSettings": "Postavke obavijesti o sadržaju",
|
"contentNotificationSettings": "Postavke obavijesti o sadržaju",
|
||||||
"generalNotificationSettings": "Opće postavke obavijesti",
|
"generalNotificationSettings": "Opće postavke obavijesti",
|
||||||
|
|
@ -3026,10 +2664,6 @@
|
||||||
"longPressToRecordVoiceMessage": "Pritisni dugo za snimanje glasovne poruke.",
|
"longPressToRecordVoiceMessage": "Pritisni dugo za snimanje glasovne poruke.",
|
||||||
"pause": "Pauza",
|
"pause": "Pauza",
|
||||||
"resume": "Nastavi",
|
"resume": "Nastavi",
|
||||||
"newSubSpace": "Novi podprostor",
|
|
||||||
"moveToDifferentSpace": "Premjesti u jedan drugi prostor",
|
|
||||||
"moveUp": "Pomakni gore",
|
|
||||||
"moveDown": "Pomakni dolje",
|
|
||||||
"removeFromSpaceDescription": "Chat će se ukloniti iz prostora, ali će se i dalje pojaviti na tvom popisu chatova.",
|
"removeFromSpaceDescription": "Chat će se ukloniti iz prostora, ali će se i dalje pojaviti na tvom popisu chatova.",
|
||||||
"countChats": "Broj chatova: {chats}",
|
"countChats": "Broj chatova: {chats}",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3058,7 +2692,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Doniraj",
|
|
||||||
"startedAPoll": "{username} je pokrenuo/la anketu.",
|
"startedAPoll": "{username} je pokrenuo/la anketu.",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3072,7 +2705,6 @@
|
||||||
"startPoll": "Početak ankete",
|
"startPoll": "Početak ankete",
|
||||||
"endPoll": "Kraj ankete",
|
"endPoll": "Kraj ankete",
|
||||||
"answersVisible": "Odgovori vidljivi",
|
"answersVisible": "Odgovori vidljivi",
|
||||||
"answersHidden": "Odgovori skriveni",
|
|
||||||
"pollQuestion": "Pitanje u anketi",
|
"pollQuestion": "Pitanje u anketi",
|
||||||
"answerOption": "Opcija za odgovor",
|
"answerOption": "Opcija za odgovor",
|
||||||
"addAnswerOption": "Dodaj opciju za odgovor",
|
"addAnswerOption": "Dodaj opciju za odgovor",
|
||||||
|
|
@ -3137,6 +2769,5 @@
|
||||||
},
|
},
|
||||||
"logs": "Zapisi",
|
"logs": "Zapisi",
|
||||||
"advancedConfigs": "Napredne konfiguracije",
|
"advancedConfigs": "Napredne konfiguracije",
|
||||||
"advancedConfigurations": "Napredne konfiguracije",
|
"advancedConfigurations": "Napredne konfiguracije"
|
||||||
"signInWithLabel": "Prijavi se sa:"
|
}
|
||||||
}
|
|
||||||
|
|
@ -323,16 +323,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Megerősít",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Csatlakozás",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kapcsolat meghívásra került a csoportba",
|
"contactHasBeenInvitedToTheGroup": "Kapcsolat meghívásra került a csoportba",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -402,33 +392,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}. {day}.",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{year}. {month}. {day}.",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Ez deaktiválja a felhasználói fiókját. Ez nem vonható vissza! Biztos benne?",
|
"deactivateAccountWarning": "Ez deaktiválja a felhasználói fiókját. Ez nem vonható vissza! Biztos benne?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -499,11 +462,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Ki kell választania egy hangulatjel rövidkódot és egy képet!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Üres csevegés",
|
"emptyChat": "Üres csevegés",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -538,11 +496,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Adja meg a Matrix-kiszolgálóját",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fileName": "Fájlnév",
|
"fileName": "Fájlnév",
|
||||||
"@fileName": {
|
"@fileName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -629,11 +582,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Azonosító",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignoredUsers": "Figyelmen kívül hagyott felhasználók",
|
"ignoredUsers": "Figyelmen kívül hagyott felhasználók",
|
||||||
"@ignoredUsers": {
|
"@ignoredUsers": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -759,11 +707,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licenc",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Világos",
|
"lightTheme": "Világos",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -984,11 +927,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Újracsatlakozás",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Eltávolítás",
|
"remove": "Eltávolítás",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1008,11 +946,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Eszköz eltávolítása",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Csevegés kitiltás feloldása",
|
"unbanFromChat": "Csevegés kitiltás feloldása",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1033,15 +966,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "{username} látta",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Küldés",
|
"send": "Küldés",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1067,11 +991,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Eredeti küldése",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Videó küldése",
|
"sendVideo": "Videó küldése",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1131,11 +1050,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setInvitationLink": "Meghívó hivatkozás beállítása",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Állapot beállítása",
|
"setStatus": "Állapot beállítása",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1266,15 +1180,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 olvasatlan csevegés} other{{unreadCount} olvasatlan csevegés}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} és {count} másik résztvevő gépel…",
|
"userAndOthersAreTyping": "{username} és {count} másik résztvevő gépel…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1394,11 +1299,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Háttér:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Figyelem!",
|
"warning": "Figyelem!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1454,11 +1354,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Meghívás számomra",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"iHaveClickedOnLink": "Rákattintottam a linkre",
|
"iHaveClickedOnLink": "Rákattintottam a linkre",
|
||||||
"@iHaveClickedOnLink": {
|
"@iHaveClickedOnLink": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1489,11 +1384,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Bot üzenetek",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"repeatPassword": "Jelszó ismétlése",
|
"repeatPassword": "Jelszó ismétlése",
|
||||||
"@repeatPassword": {},
|
"@repeatPassword": {},
|
||||||
"addEmail": "E-mail-cím hozzáadása",
|
"addEmail": "E-mail-cím hozzáadása",
|
||||||
|
|
@ -1648,11 +1538,6 @@
|
||||||
},
|
},
|
||||||
"scanQrCode": "QR kód beolvasása",
|
"scanQrCode": "QR kód beolvasása",
|
||||||
"@scanQrCode": {},
|
"@scanQrCode": {},
|
||||||
"notificationsEnabledForThisAccount": "Értesítések be vannak kapcsolva ebben a fiókban",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"offensive": "Sértő",
|
"offensive": "Sértő",
|
||||||
"@offensive": {
|
"@offensive": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1702,21 +1587,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Tartalmazza a megjelenített nevet",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Tartalmazza a felhasználónevet",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"goToTheNewRoom": "Ugrás az új szobába",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"noConnectionToTheServer": "Nem elérhető a szerver",
|
"noConnectionToTheServer": "Nem elérhető a szerver",
|
||||||
"@noConnectionToTheServer": {
|
"@noConnectionToTheServer": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1727,8 +1597,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Csevegés hozzáadva a térhez",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "Csevegések",
|
"chats": "Csevegések",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1814,11 +1682,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"memberChanges": "Tagi változások",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"messages": "Üzenetek",
|
"messages": "Üzenetek",
|
||||||
"@messages": {
|
"@messages": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1855,23 +1718,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Kamera megnyitása videóhoz",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"badServerVersionsException": "A Matrix-kiszolgáló ezeket a specifikált verziókat támogatja:\n{serverVersions}\nAzonban ez az app csak a következőket: {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"commandHint_me": "Írja le magát",
|
"commandHint_me": "Írja le magát",
|
||||||
"@commandHint_me": {
|
"@commandHint_me": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1901,12 +1747,6 @@
|
||||||
"@dehydrate": {},
|
"@dehydrate": {},
|
||||||
"dehydrateWarning": "Ez nem visszavonható. Bizonyosodjon meg róla, hogy biztonságos helyre menti a fájlt.",
|
"dehydrateWarning": "Ez nem visszavonható. Bizonyosodjon meg róla, hogy biztonságos helyre menti a fájlt.",
|
||||||
"@dehydrateWarning": {},
|
"@dehydrateWarning": {},
|
||||||
"dehydrateTor": "TOR felhasználók: Munkamenet exportálása",
|
|
||||||
"@dehydrateTor": {},
|
|
||||||
"dehydrateTorLong": "TOR felhasználóknak ajánlott a munkamenet exportálása az ablak bezárása előtt.",
|
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"hydrateTor": "TOR felhasználóknak: munkamenet export importálása",
|
|
||||||
"@hydrateTor": {},
|
|
||||||
"hydrate": "Visszaállítás mentett fájlból",
|
"hydrate": "Visszaállítás mentett fájlból",
|
||||||
"@hydrate": {},
|
"@hydrate": {},
|
||||||
"link": "Hivatkozás",
|
"link": "Hivatkozás",
|
||||||
|
|
@ -1916,11 +1756,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Emberek",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseEnterYourPin": "Kérem, írja be PIN kódját",
|
"pleaseEnterYourPin": "Kérem, írja be PIN kódját",
|
||||||
"@pleaseEnterYourPin": {
|
"@pleaseEnterYourPin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1953,11 +1788,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "Matrica küldése",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reportMessage": "Üzenet jelentése",
|
"reportMessage": "Üzenet jelentése",
|
||||||
"@reportMessage": {
|
"@reportMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1985,11 +1815,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Kérem, válasszon",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"commandHint_hug": "Ölelés küldése",
|
"commandHint_hug": "Ölelés küldése",
|
||||||
"@commandHint_hug": {},
|
"@commandHint_hug": {},
|
||||||
"reason": "Indok",
|
"reason": "Indok",
|
||||||
|
|
@ -2049,22 +1874,10 @@
|
||||||
},
|
},
|
||||||
"jumpToLastReadMessage": "Az utoljára olvasott üzenethez ugrás",
|
"jumpToLastReadMessage": "Az utoljára olvasott üzenethez ugrás",
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"allRooms": "Minden Csoport Csevegés",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"widgetVideo": "Videó",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"dismiss": "Elvetés",
|
"dismiss": "Elvetés",
|
||||||
"@dismiss": {},
|
"@dismiss": {},
|
||||||
"reportErrorDescription": "😭 Sajnos, valami félresiklott. Ha kívánja, jelezheti a bugot a fejlesztőknek.",
|
"reportErrorDescription": "😭 Sajnos, valami félresiklott. Ha kívánja, jelezheti a bugot a fejlesztőknek.",
|
||||||
"@reportErrorDescription": {},
|
"@reportErrorDescription": {},
|
||||||
"setPermissionsLevel": "Engedélyszint beállítása",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"removeYourAvatar": "Profilképének törlése",
|
"removeYourAvatar": "Profilképének törlése",
|
||||||
"@removeYourAvatar": {
|
"@removeYourAvatar": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2072,32 +1885,12 @@
|
||||||
},
|
},
|
||||||
"unsupportedAndroidVersion": "Nem támogatott Android verzió",
|
"unsupportedAndroidVersion": "Nem támogatott Android verzió",
|
||||||
"@unsupportedAndroidVersion": {},
|
"@unsupportedAndroidVersion": {},
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"@widgetJitsi": {},
|
|
||||||
"messageType": "Üzenet típus",
|
"messageType": "Üzenet típus",
|
||||||
"@messageType": {},
|
"@messageType": {},
|
||||||
"indexedDbErrorLong": "Sajnos az üzenet mentés alapból nincs bekapcsolva privát módban.\nKeresse meg a\n - about:config\n - állítsa a dom.indexedDB.privateBrowsing.enabled \"true\"-ra\nMáskülönben nem lehetséges a FluffyChat futtatása.",
|
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"oneClientLoggedOut": "Az egyik kliense kijelentkezett",
|
"oneClientLoggedOut": "Az egyik kliense kijelentkezett",
|
||||||
"@oneClientLoggedOut": {},
|
"@oneClientLoggedOut": {},
|
||||||
"toggleMuted": "Némítottak megjelenítése",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"startFirstChat": "Kezdje meg első csevegését",
|
|
||||||
"@startFirstChat": {},
|
|
||||||
"callingAccount": "Hívási fiók",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"setColorTheme": "Szín séma beállítása:",
|
"setColorTheme": "Szín séma beállítása:",
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"nextAccount": "Következő fiók",
|
|
||||||
"@nextAccount": {},
|
|
||||||
"singlesignon": "Egyszeri Bejelentkezés",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"allSpaces": "Minden tér",
|
"allSpaces": "Minden tér",
|
||||||
"@allSpaces": {},
|
"@allSpaces": {},
|
||||||
"supposedMxid": "{mxid}-nek kell lennie",
|
"supposedMxid": "{mxid}-nek kell lennie",
|
||||||
|
|
@ -2123,15 +1916,8 @@
|
||||||
},
|
},
|
||||||
"banUserDescription": "A felhasználó kitiltásra kerül a csevegésből, és nem fog tudni visszajönni egészen a kitiltás feloldásáig.",
|
"banUserDescription": "A felhasználó kitiltásra kerül a csevegésből, és nem fog tudni visszajönni egészen a kitiltás feloldásáig.",
|
||||||
"@banUserDescription": {},
|
"@banUserDescription": {},
|
||||||
"widgetEtherpad": "Szöveges megjegyzés",
|
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"removeDevicesDescription": "Ki fog jelentkezni a készülékről, és többé nem fog tudni fogadni üzeneteket.",
|
"removeDevicesDescription": "Ki fog jelentkezni a készülékről, és többé nem fog tudni fogadni üzeneteket.",
|
||||||
"@removeDevicesDescription": {},
|
"@removeDevicesDescription": {},
|
||||||
"separateChatTypes": "Csoportok és privát üzenetek elkülönítése",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tryAgain": "Próbálja újra",
|
"tryAgain": "Próbálja újra",
|
||||||
"@tryAgain": {},
|
"@tryAgain": {},
|
||||||
"youKickedAndBanned": "🙅 Kirúgta és kitiltotta {user}-t",
|
"youKickedAndBanned": "🙅 Kirúgta és kitiltotta {user}-t",
|
||||||
|
|
@ -2151,42 +1937,21 @@
|
||||||
},
|
},
|
||||||
"youRejectedTheInvitation": "Visszautasította a meghívást",
|
"youRejectedTheInvitation": "Visszautasította a meghívást",
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"otherCallingPermissions": "Mikrofon, kamera, és más egyéb FluffyChat engedélyek",
|
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"messagesStyle": "Üzenetek:",
|
"messagesStyle": "Üzenetek:",
|
||||||
"@messagesStyle": {},
|
"@messagesStyle": {},
|
||||||
"widgetUrlError": "Helytelen hivatkozás.",
|
|
||||||
"@widgetUrlError": {},
|
|
||||||
"emailOrUsername": "Email vagy felhasználónév",
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"newSpaceDescription": "A terek lehetővé teszik a csevegések konszolidációját, ezáltal létrehozva publikus vagy privát közösségeket.",
|
"newSpaceDescription": "A terek lehetővé teszik a csevegések konszolidációját, ezáltal létrehozva publikus vagy privát közösségeket.",
|
||||||
"@newSpaceDescription": {},
|
"@newSpaceDescription": {},
|
||||||
"chatDescription": "Csevegés leírás",
|
"chatDescription": "Csevegés leírás",
|
||||||
"@chatDescription": {},
|
"@chatDescription": {},
|
||||||
"callingAccountDetails": "Engedélyezés a FluffyChat számára hogy használja a natív android hívás applikációt.",
|
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"pleaseFollowInstructionsOnWeb": "Kérem, kövesse az instrukciókat az oldalon, és nyomjon a tovább gombra.",
|
"pleaseFollowInstructionsOnWeb": "Kérem, kövesse az instrukciókat az oldalon, és nyomjon a tovább gombra.",
|
||||||
"@pleaseFollowInstructionsOnWeb": {
|
"@pleaseFollowInstructionsOnWeb": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterSpace": "Belépés a térre",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"encryptThisChat": "A csevegés titkosítása",
|
"encryptThisChat": "A csevegés titkosítása",
|
||||||
"@encryptThisChat": {},
|
"@encryptThisChat": {},
|
||||||
"previousAccount": "Előző fiók",
|
|
||||||
"@previousAccount": {},
|
|
||||||
"reopenChat": "Csevegés újranyitása",
|
"reopenChat": "Csevegés újranyitása",
|
||||||
"@reopenChat": {},
|
"@reopenChat": {},
|
||||||
"pleaseEnterRecoveryKey": "Kérem, adja meg a visszaállító kódját:",
|
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"toggleFavorite": "Kedvencek megjelenítése",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"widgetNameError": "Kérem adjon meg egy megjelenítendő nevet.",
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"addToBundle": "Hozzáadás fiókcsoporthoz",
|
"addToBundle": "Hozzáadás fiókcsoporthoz",
|
||||||
"@addToBundle": {},
|
"@addToBundle": {},
|
||||||
"spaceIsPublic": "A tér publikus",
|
"spaceIsPublic": "A tér publikus",
|
||||||
|
|
@ -2194,8 +1959,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"addWidget": "Widget hozzáadása",
|
|
||||||
"@addWidget": {},
|
|
||||||
"countFiles": "{count} fájl",
|
"countFiles": "{count} fájl",
|
||||||
"@countFiles": {
|
"@countFiles": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2233,8 +1996,6 @@
|
||||||
"@sender": {},
|
"@sender": {},
|
||||||
"storeInAndroidKeystore": "Tárolás az Android KeyStore-ba",
|
"storeInAndroidKeystore": "Tárolás az Android KeyStore-ba",
|
||||||
"@storeInAndroidKeystore": {},
|
"@storeInAndroidKeystore": {},
|
||||||
"signInWithPassword": "Bejelentkezés jelszóval",
|
|
||||||
"@signInWithPassword": {},
|
|
||||||
"makeAdminDescription": "Miután a felhasználót aminisztrátorrá lépteti elő, nem fogja tudni visszavonni döntését, mivel azonos jogosultsági szinttel fognak rendelkezni.",
|
"makeAdminDescription": "Miután a felhasználót aminisztrátorrá lépteti elő, nem fogja tudni visszavonni döntését, mivel azonos jogosultsági szinttel fognak rendelkezni.",
|
||||||
"@makeAdminDescription": {},
|
"@makeAdminDescription": {},
|
||||||
"synchronizingPleaseWait": "Szinkronizálás... Kérem, várjon.",
|
"synchronizingPleaseWait": "Szinkronizálás... Kérem, várjon.",
|
||||||
|
|
@ -2267,11 +2028,6 @@
|
||||||
},
|
},
|
||||||
"importFromZipFile": "Importálás zip fájlból",
|
"importFromZipFile": "Importálás zip fájlból",
|
||||||
"@importFromZipFile": {},
|
"@importFromZipFile": {},
|
||||||
"toggleUnread": "Jelölés Olvasottként/Olvasatlanként",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"noOtherDevicesFound": "Nem található más eszköz",
|
"noOtherDevicesFound": "Nem található más eszköz",
|
||||||
"@noOtherDevicesFound": {},
|
"@noOtherDevicesFound": {},
|
||||||
"redactedBy": "{username} által szerkesztve",
|
"redactedBy": "{username} által szerkesztve",
|
||||||
|
|
@ -2285,15 +2041,6 @@
|
||||||
},
|
},
|
||||||
"videoCallsBetaWarning": "Kérem vegye figyelembe, hogy a videó hívások jelenleg béta fázisban vannak. Nem biztos, hogy megfelelően fognak működni, vagy egyáltalán elindulnak egyes platformokon.",
|
"videoCallsBetaWarning": "Kérem vegye figyelembe, hogy a videó hívások jelenleg béta fázisban vannak. Nem biztos, hogy megfelelően fognak működni, vagy egyáltalán elindulnak egyes platformokon.",
|
||||||
"@videoCallsBetaWarning": {},
|
"@videoCallsBetaWarning": {},
|
||||||
"signInWith": "Bejelentkezés a {provider} kiszolgálóval",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"fileIsTooBigForServer": "Nem küldhető el! A szerver csak {max} határig enged csatolmányokat.",
|
"fileIsTooBigForServer": "Nem küldhető el! A szerver csak {max} határig enged csatolmányokat.",
|
||||||
"@fileIsTooBigForServer": {},
|
"@fileIsTooBigForServer": {},
|
||||||
"verified": "Hitelesített",
|
"verified": "Hitelesített",
|
||||||
|
|
@ -2301,23 +2048,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"callingPermissions": "Hívási engedélyek",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"readUpToHere": "Olvasás idáig",
|
"readUpToHere": "Olvasás idáig",
|
||||||
"@readUpToHere": {},
|
"@readUpToHere": {},
|
||||||
"start": "Kezdés",
|
"start": "Kezdés",
|
||||||
"@start": {},
|
"@start": {},
|
||||||
"unlockOldMessages": "Régi üzenetek feloldása",
|
"unlockOldMessages": "Régi üzenetek feloldása",
|
||||||
"@unlockOldMessages": {},
|
"@unlockOldMessages": {},
|
||||||
"numChats": "{number} csevegés",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"optionalRedactReason": "(Választható) A szerkesztés oka...",
|
"optionalRedactReason": "(Választható) A szerkesztés oka...",
|
||||||
"@optionalRedactReason": {},
|
"@optionalRedactReason": {},
|
||||||
"sendAsText": "Küldés szövegként",
|
"sendAsText": "Küldés szövegként",
|
||||||
|
|
@ -2328,15 +2064,6 @@
|
||||||
"@archiveRoomDescription": {},
|
"@archiveRoomDescription": {},
|
||||||
"exportEmotePack": "Emojicsomag exportálása zip-be",
|
"exportEmotePack": "Emojicsomag exportálása zip-be",
|
||||||
"@exportEmotePack": {},
|
"@exportEmotePack": {},
|
||||||
"switchToAccount": "A {number} számú fiókra váltás",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "Beállítás alapértelmezett álnévként",
|
"setAsCanonicalAlias": "Beállítás alapértelmezett álnévként",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2351,8 +2078,6 @@
|
||||||
"@experimentalVideoCalls": {},
|
"@experimentalVideoCalls": {},
|
||||||
"pleaseEnterRecoveryKeyDescription": "A régi üzenetei feloldásához adja meg a korábban generált visszaállítási jelszavát. A visszaállítási jelszó NEM EGYEZIK MEG a jelszóval.",
|
"pleaseEnterRecoveryKeyDescription": "A régi üzenetei feloldásához adja meg a korábban generált visszaállítási jelszavát. A visszaállítási jelszó NEM EGYEZIK MEG a jelszóval.",
|
||||||
"@pleaseEnterRecoveryKeyDescription": {},
|
"@pleaseEnterRecoveryKeyDescription": {},
|
||||||
"inviteContactToGroupQuestion": "Meg kívánja hívni {contact} ismerősét a \"{groupName}\" csevegő csoportba?",
|
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"redactedByBecause": "{username} által szerkesztve, mivel: \"{reason}\"",
|
"redactedByBecause": "{username} által szerkesztve, mivel: \"{reason}\"",
|
||||||
"@redactedByBecause": {
|
"@redactedByBecause": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2373,10 +2098,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"appearOnTopDetails": "Engedélyezi az app számára, hogy mindig legfelül jelenjen meg (nem szükséges, ha a FluffyChat hívó fiókként lett beállítva)",
|
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"enterRoom": "Belépés a szobába",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"pleaseChooseAPasscode": "Kérem, válasszon egy kódot",
|
"pleaseChooseAPasscode": "Kérem, válasszon egy kódot",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2432,14 +2153,8 @@
|
||||||
"@unverified": {},
|
"@unverified": {},
|
||||||
"serverRequiresEmail": "Ehhez a szerverhez szükséges az email címének visszaigazolása.",
|
"serverRequiresEmail": "Ehhez a szerverhez szükséges az email címének visszaigazolása.",
|
||||||
"@serverRequiresEmail": {},
|
"@serverRequiresEmail": {},
|
||||||
"hideUnimportantStateEvents": "Jelentéktelen esemény státuszok elrejtése",
|
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"screenSharingTitle": "képernyő megosztás",
|
"screenSharingTitle": "képernyő megosztás",
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"widgetCustom": "Egyedi",
|
|
||||||
"@widgetCustom": {},
|
|
||||||
"addToSpaceDescription": "Válassza ki melyik térhez kívánja hozzáadni a csevegést.",
|
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"youBannedUser": "Letitotta {user} felhasználót",
|
"youBannedUser": "Letitotta {user} felhasználót",
|
||||||
"@youBannedUser": {
|
"@youBannedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2448,8 +2163,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addChatDescription": "Chat leírás hozzáadása...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"hasKnocked": "🚪 {user} bekopogott",
|
"hasKnocked": "🚪 {user} bekopogott",
|
||||||
"@hasKnocked": {
|
"@hasKnocked": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2458,8 +2171,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"publish": "Közzététel",
|
|
||||||
"@publish": {},
|
|
||||||
"openLinkInBrowser": "Hivatkozás megnyitása böngészőben",
|
"openLinkInBrowser": "Hivatkozás megnyitása böngészőben",
|
||||||
"@openLinkInBrowser": {},
|
"@openLinkInBrowser": {},
|
||||||
"messageInfo": "Üzenet információ",
|
"messageInfo": "Üzenet információ",
|
||||||
|
|
@ -2481,10 +2192,6 @@
|
||||||
"@sendTypingNotifications": {},
|
"@sendTypingNotifications": {},
|
||||||
"inviteGroupChat": "📨 Meghívó a csoportba",
|
"inviteGroupChat": "📨 Meghívó a csoportba",
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"appearOnTop": "Megjelenés legfelül",
|
|
||||||
"@appearOnTop": {},
|
|
||||||
"invitePrivateChat": "📨 Meghívó privát csevegéshez",
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"foregroundServiceRunning": "Ez az értesítés akkor jelenik meg ha az előtéri szolgáltatás fut.",
|
"foregroundServiceRunning": "Ez az értesítés akkor jelenik meg ha az előtéri szolgáltatás fut.",
|
||||||
"@foregroundServiceRunning": {},
|
"@foregroundServiceRunning": {},
|
||||||
"voiceCall": "Hang hívás",
|
"voiceCall": "Hang hívás",
|
||||||
|
|
@ -2535,8 +2242,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"profileNotFound": "A felhasználó nem található a szerveren. Lehetséges, hogy csatlakozási problémák adódtak, vagy nem létezik a felhasználó.",
|
|
||||||
"@profileNotFound": {},
|
|
||||||
"jump": "Ugrás",
|
"jump": "Ugrás",
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"reactedWith": "{sender} a következőképp reagált: {reaction}",
|
"reactedWith": "{sender} a következőképp reagált: {reaction}",
|
||||||
|
|
@ -2553,15 +2258,6 @@
|
||||||
},
|
},
|
||||||
"sorryThatsNotPossible": "Ez sajnos nem lehetséges",
|
"sorryThatsNotPossible": "Ez sajnos nem lehetséges",
|
||||||
"@sorryThatsNotPossible": {},
|
"@sorryThatsNotPossible": {},
|
||||||
"videoWithSize": "Videó ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"shareInviteLink": "Meghívó link megosztása",
|
"shareInviteLink": "Meghívó link megosztása",
|
||||||
"@shareInviteLink": {},
|
"@shareInviteLink": {},
|
||||||
"commandHint_markasdm": "Szoba megjelölése mint közvetlen csevegő szoba az adott Matrix ID-nél",
|
"commandHint_markasdm": "Szoba megjelölése mint közvetlen csevegő szoba az adott Matrix ID-nél",
|
||||||
|
|
@ -2575,21 +2271,10 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Egyedi hangulatjelek beállítása",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setTheme": "Téma beállítása:",
|
|
||||||
"@setTheme": {},
|
|
||||||
"youJoinedTheChat": "Becsatlakozott a csevegésbe",
|
"youJoinedTheChat": "Becsatlakozott a csevegésbe",
|
||||||
"@youJoinedTheChat": {},
|
"@youJoinedTheChat": {},
|
||||||
"markAsRead": "Olvasottként megjelölés",
|
"markAsRead": "Olvasottként megjelölés",
|
||||||
"@markAsRead": {},
|
"@markAsRead": {},
|
||||||
"widgetName": "Név",
|
|
||||||
"@widgetName": {},
|
|
||||||
"errorAddingWidget": "Hiba lépett fel a widget hozzáadásánál.",
|
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"replace": "Kicserél",
|
"replace": "Kicserél",
|
||||||
"@replace": {},
|
"@replace": {},
|
||||||
"youUnbannedUser": "Levette a letiltást {user}-ről",
|
"youUnbannedUser": "Levette a letiltást {user}-ről",
|
||||||
|
|
@ -2604,12 +2289,8 @@
|
||||||
"@newSpace": {},
|
"@newSpace": {},
|
||||||
"emojis": "Hangulatjelek",
|
"emojis": "Hangulatjelek",
|
||||||
"@emojis": {},
|
"@emojis": {},
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Próbálja meg később, vagy válasszon másik szervert.",
|
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"createGroup": "Csoport létrehozása",
|
"createGroup": "Csoport létrehozása",
|
||||||
"@createGroup": {},
|
"@createGroup": {},
|
||||||
"hydrateTorLong": "Legutóbb TOR segítségével exportálta korábbi munkamenetét? Gyorsan importálja őket vissza, és folytassa a csevegést.",
|
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"time": "Idő",
|
"time": "Idő",
|
||||||
"@time": {},
|
"@time": {},
|
||||||
"custom": "Egyedi",
|
"custom": "Egyedi",
|
||||||
|
|
@ -2630,8 +2311,6 @@
|
||||||
"@invite": {},
|
"@invite": {},
|
||||||
"enableMultiAccounts": "(BÉTA) Több fiók bekapcsolása az eszközön",
|
"enableMultiAccounts": "(BÉTA) Több fiók bekapcsolása az eszközön",
|
||||||
"@enableMultiAccounts": {},
|
"@enableMultiAccounts": {},
|
||||||
"indexedDbErrorTitle": "Privát mód problémák",
|
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"unsupportedAndroidVersionLong": "Ehhez a funkcióhoz egy újabb Android verzió kell. Kérem ellenőrizze be van e frissítve teljesen készüléke, esetlegesen van e LineageOS támogatás hozzá.",
|
"unsupportedAndroidVersionLong": "Ehhez a funkcióhoz egy újabb Android verzió kell. Kérem ellenőrizze be van e frissítve teljesen készüléke, esetlegesen van e LineageOS támogatás hozzá.",
|
||||||
"@unsupportedAndroidVersionLong": {},
|
"@unsupportedAndroidVersionLong": {},
|
||||||
"storeSecurlyOnThisDevice": "Biztonságos tárolás az eszközön",
|
"storeSecurlyOnThisDevice": "Biztonságos tárolás az eszközön",
|
||||||
|
|
@ -2648,26 +2327,11 @@
|
||||||
"@blockListDescription": {},
|
"@blockListDescription": {},
|
||||||
"blockUsername": "Felhasználónév ignorálása",
|
"blockUsername": "Felhasználónév ignorálása",
|
||||||
"@blockUsername": {},
|
"@blockUsername": {},
|
||||||
"presenceStyle": "Állapot:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "Más felhasználók állapot üzeneteinek megjelenítése",
|
"presencesToggle": "Más felhasználók állapot üzeneteinek megjelenítése",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Meghívást kapott linken keresztül a következőhöz:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"decline": "Elutasítás",
|
|
||||||
"@decline": {},
|
|
||||||
"yourGlobalUserIdIs": "A globális felhasználó-ID-je: ",
|
"yourGlobalUserIdIs": "A globális felhasználó-ID-je: ",
|
||||||
"@yourGlobalUserIdIs": {},
|
"@yourGlobalUserIdIs": {},
|
||||||
"noUsersFoundWithQuery": "\"{query}\"-vel nem található felhasználó. Ellenőrizze nincs e elírás.",
|
"noUsersFoundWithQuery": "\"{query}\"-vel nem található felhasználó. Ellenőrizze nincs e elírás.",
|
||||||
|
|
@ -2710,19 +2374,8 @@
|
||||||
"@passwordsDoNotMatch": {},
|
"@passwordsDoNotMatch": {},
|
||||||
"passwordIsWrong": "Hibás a beírt jelszava",
|
"passwordIsWrong": "Hibás a beírt jelszava",
|
||||||
"@passwordIsWrong": {},
|
"@passwordIsWrong": {},
|
||||||
"subspace": "Al-tér",
|
|
||||||
"@subspace": {},
|
|
||||||
"thisDevice": "Ez az eszköz:",
|
"thisDevice": "Ez az eszköz:",
|
||||||
"@thisDevice": {},
|
"@thisDevice": {},
|
||||||
"forwardMessageTo": "Üzenet továbbítása a {roomName} szobába?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendTypingNotificationsDescription": "A csevegés többi tagja látja amikor gépel.",
|
"sendTypingNotificationsDescription": "A csevegés többi tagja látja amikor gépel.",
|
||||||
"@sendTypingNotificationsDescription": {},
|
"@sendTypingNotificationsDescription": {},
|
||||||
"sendReadReceiptsDescription": "A csevegés többi tagja láthatja, ha olvasta az üzeneteiket.",
|
"sendReadReceiptsDescription": "A csevegés többi tagja láthatja, ha olvasta az üzeneteiket.",
|
||||||
|
|
@ -2749,18 +2402,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"databaseBuildErrorBody": "Nem lehetséges az SQlite adatbázis létrehozása. Az app megpróbálja a régi típusú adatbázist használni. Kérem jelentse a hibát a fejlesztőknek a {url} hivatkozáson. A hiba szövege a következő: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"restoreSessionBody": "Megpróbálkozunk visszaállítani a munkamenetét egy korábbi mentésből. Kérem jelezze a hibát a fejlesztőknek a {url} címen. A hiba szövege a következő: {error}",
|
"restoreSessionBody": "Megpróbálkozunk visszaállítani a munkamenetét egy korábbi mentésből. Kérem jelezze a hibát a fejlesztőknek a {url} címen. A hiba szövege a következő: {error}",
|
||||||
"@restoreSessionBody": {
|
"@restoreSessionBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2779,8 +2420,6 @@
|
||||||
"@searchChatsRooms": {},
|
"@searchChatsRooms": {},
|
||||||
"wrongRecoveryKey": "Sajnos, úgy tűnik hibásan adta meg a visszaállítási kulcsot.",
|
"wrongRecoveryKey": "Sajnos, úgy tűnik hibásan adta meg a visszaállítási kulcsot.",
|
||||||
"@wrongRecoveryKey": {},
|
"@wrongRecoveryKey": {},
|
||||||
"startConversation": "Társalgás kezdése",
|
|
||||||
"@startConversation": {},
|
|
||||||
"commandHint_sendraw": "Tiszta json küldése",
|
"commandHint_sendraw": "Tiszta json küldése",
|
||||||
"@commandHint_sendraw": {},
|
"@commandHint_sendraw": {},
|
||||||
"databaseMigrationBody": "Kérem várjon. Ez igénybe vehet valamennyi időt.",
|
"databaseMigrationBody": "Kérem várjon. Ez igénybe vehet valamennyi időt.",
|
||||||
|
|
@ -2838,8 +2477,6 @@
|
||||||
"@incomingMessages": {},
|
"@incomingMessages": {},
|
||||||
"nothingFound": "Nincs találat...",
|
"nothingFound": "Nincs találat...",
|
||||||
"@nothingFound": {},
|
"@nothingFound": {},
|
||||||
"publicLink": "Nyilvános hivatkozás",
|
|
||||||
"@publicLink": {},
|
|
||||||
"select": "Kiválaszt",
|
"select": "Kiválaszt",
|
||||||
"@select": {},
|
"@select": {},
|
||||||
"stickers": "Matricák",
|
"stickers": "Matricák",
|
||||||
|
|
@ -2864,24 +2501,10 @@
|
||||||
"@calls": {},
|
"@calls": {},
|
||||||
"hideInvalidOrUnknownMessageFormats": "Érvénytelen vagy ismeretlen üzenetformátum elrejtése",
|
"hideInvalidOrUnknownMessageFormats": "Érvénytelen vagy ismeretlen üzenetformátum elrejtése",
|
||||||
"@hideInvalidOrUnknownMessageFormats": {},
|
"@hideInvalidOrUnknownMessageFormats": {},
|
||||||
"hideMemberChangesInPublicChatsBody": "Ne mutassa ha valaki be- vagy kilép a csevegésből az olvashatóság javítása érdekében.",
|
|
||||||
"@hideMemberChangesInPublicChatsBody": {},
|
|
||||||
"notifyMeFor": "Értesítsen ha",
|
|
||||||
"@notifyMeFor": {},
|
|
||||||
"passwordRecoverySettings": "Jelszó-helyreállítási beállítások",
|
"passwordRecoverySettings": "Jelszó-helyreállítási beállítások",
|
||||||
"@passwordRecoverySettings": {},
|
"@passwordRecoverySettings": {},
|
||||||
"noOneCanJoin": "Senki sem csatlakozhat",
|
"noOneCanJoin": "Senki sem csatlakozhat",
|
||||||
"@noOneCanJoin": {},
|
"@noOneCanJoin": {},
|
||||||
"userWouldLikeToChangeTheChat": "{user} szeretne csatlakozni a csevegéshez.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Nyilvános link nem került még létrehozásra",
|
|
||||||
"@noPublicLinkHasBeenCreatedYet": {},
|
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "Csevegés felfedezhető a {server} szerveren történő kereséssel",
|
"chatCanBeDiscoveredViaSearchOnServer": "Csevegés felfedezhető a {server} szerveren történő kereséssel",
|
||||||
"@chatCanBeDiscoveredViaSearchOnServer": {
|
"@chatCanBeDiscoveredViaSearchOnServer": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2901,8 +2524,6 @@
|
||||||
"@overview": {},
|
"@overview": {},
|
||||||
"publicChatAddresses": "Nyilvános csevegés címek",
|
"publicChatAddresses": "Nyilvános csevegés címek",
|
||||||
"@publicChatAddresses": {},
|
"@publicChatAddresses": {},
|
||||||
"userRole": "Felhasználói szerep",
|
|
||||||
"@userRole": {},
|
|
||||||
"createNewAddress": "Új cím létrehozása",
|
"createNewAddress": "Új cím létrehozása",
|
||||||
"@createNewAddress": {},
|
"@createNewAddress": {},
|
||||||
"noDatabaseEncryption": "Adatbázis titkosítás nem támogatott ezen a platformon",
|
"noDatabaseEncryption": "Adatbázis titkosítás nem támogatott ezen a platformon",
|
||||||
|
|
@ -2947,23 +2568,12 @@
|
||||||
"@hideRedactedMessages": {},
|
"@hideRedactedMessages": {},
|
||||||
"hideRedactedMessagesBody": "Ha valaki szerkeszti az üzenetét, ez az üzenet nem jelenik meg a csevegés során.",
|
"hideRedactedMessagesBody": "Ha valaki szerkeszti az üzenetét, ez az üzenet nem jelenik meg a csevegés során.",
|
||||||
"@hideRedactedMessagesBody": {},
|
"@hideRedactedMessagesBody": {},
|
||||||
"hideMemberChangesInPublicChats": "Tag változások elrejtése a publikus csevegésben",
|
|
||||||
"@hideMemberChangesInPublicChats": {},
|
|
||||||
"knocking": "Bekopogás",
|
"knocking": "Bekopogás",
|
||||||
"@knocking": {},
|
"@knocking": {},
|
||||||
"usersMustKnock": "A felhasználóknak be kell kopogniuk",
|
"usersMustKnock": "A felhasználóknak be kell kopogniuk",
|
||||||
"@usersMustKnock": {},
|
"@usersMustKnock": {},
|
||||||
"knock": "Kopogás",
|
"knock": "Kopogás",
|
||||||
"@knock": {},
|
"@knock": {},
|
||||||
"minimumPowerLevel": "{level} a minimum szint.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"searchMore": "További keresés...",
|
"searchMore": "További keresés...",
|
||||||
"@searchMore": {},
|
"@searchMore": {},
|
||||||
"gallery": "Galéria",
|
"gallery": "Galéria",
|
||||||
|
|
@ -3021,10 +2631,6 @@
|
||||||
"@changeTheCanonicalRoomAlias": {},
|
"@changeTheCanonicalRoomAlias": {},
|
||||||
"chatPermissionsDescription": "Adja meg milyen erősségi szint kell egyes csevegési művelethez. A 0, 50 és 100-as szintek általában felhasználókat, moderátorokat és adminisztrátorokat jelölnek de bármilyen szintezés lehetséges.",
|
"chatPermissionsDescription": "Adja meg milyen erősségi szint kell egyes csevegési művelethez. A 0, 50 és 100-as szintek általában felhasználókat, moderátorokat és adminisztrátorokat jelölnek de bármilyen szintezés lehetséges.",
|
||||||
"@chatPermissionsDescription": {},
|
"@chatPermissionsDescription": {},
|
||||||
"whatIsAHomeserver": "Mi az a Matrix-kiszolgáló?",
|
|
||||||
"@whatIsAHomeserver": {},
|
|
||||||
"homeserverDescription": "Az összes adata a Mátrix-kiszolgálón tárolódik, pont mint egy e-mail kiszolgálón. Kiválaszthatja melyik Matrix-kiszolgálót akarja használni, miközben tud kommunikálni mindenkivel. Tudjon meg többet a https://matrix.org címen.",
|
|
||||||
"@homeserverDescription": {},
|
|
||||||
"userLevel": "{level} - Felhasználó",
|
"userLevel": "{level} - Felhasználó",
|
||||||
"@userLevel": {
|
"@userLevel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3061,26 +2667,10 @@
|
||||||
},
|
},
|
||||||
"loginWithMatrixId": "Bejelentkezés Matrix-ID-vel",
|
"loginWithMatrixId": "Bejelentkezés Matrix-ID-vel",
|
||||||
"@loginWithMatrixId": {},
|
"@loginWithMatrixId": {},
|
||||||
"discoverHomeservers": "Matrix-kiszolgálók felfedezése",
|
|
||||||
"@discoverHomeservers": {},
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Nem tűnik kompatibilisnek a Mátrix-kiszolgálónak. Hibás a hivatkozás?",
|
"doesNotSeemToBeAValidHomeserver": "Nem tűnik kompatibilisnek a Mátrix-kiszolgálónak. Hibás a hivatkozás?",
|
||||||
"@doesNotSeemToBeAValidHomeserver": {},
|
"@doesNotSeemToBeAValidHomeserver": {},
|
||||||
"countChatsAndCountParticipants": "{chats} csevegések és {participants} résztvevők",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "Nem található több csevegés...",
|
"noMoreChatsFound": "Nem található több csevegés...",
|
||||||
"@noMoreChatsFound": {},
|
"@noMoreChatsFound": {},
|
||||||
"joinedChats": "Csatlakozott csevegések",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"checkList": "Tennivalók listája",
|
"checkList": "Tennivalók listája",
|
||||||
"@checkList": {},
|
"@checkList": {},
|
||||||
"countInvited": "{count} meghívott",
|
"countInvited": "{count} meghívott",
|
||||||
|
|
@ -3110,16 +2700,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"normalUser": "Normál felhasználó",
|
|
||||||
"@normalUser": {},
|
|
||||||
"ignoreUser": "Felhasználó ignorálása",
|
"ignoreUser": "Felhasználó ignorálása",
|
||||||
"@ignoreUser": {},
|
"@ignoreUser": {},
|
||||||
"commandHint_roomupgrade": "Szoba frissítése a megadott szoba verzióra",
|
"commandHint_roomupgrade": "Szoba frissítése a megadott szoba verzióra",
|
||||||
"@commandHint_roomupgrade": {},
|
"@commandHint_roomupgrade": {},
|
||||||
"setCustomPermissionLevel": "Egyedi engedélyszint beállítása",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"setPermissionsLevelDescription": "Kérem, válasszon egy előre meghatározott szerepkört, vagy adjon meg egy egyedi engedély szintet 0 és 100 között.",
|
|
||||||
"@setPermissionsLevelDescription": {},
|
|
||||||
"sendingAttachmentCountOfCount": "{index} csatolmány küldése {length}-ból...",
|
"sendingAttachmentCountOfCount": "{index} csatolmány küldése {length}-ból...",
|
||||||
"@sendingAttachmentCountOfCount": {
|
"@sendingAttachmentCountOfCount": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
|
|
@ -3226,8 +2810,6 @@
|
||||||
"@appWantsToUseForLoginDescription": {},
|
"@appWantsToUseForLoginDescription": {},
|
||||||
"waitingForServer": "Várakozás a szerverre...",
|
"waitingForServer": "Várakozás a szerverre...",
|
||||||
"@waitingForServer": {},
|
"@waitingForServer": {},
|
||||||
"appIntroduction": "A FluffyChat segítségével cseveghet barátaival, akár más üzenetküldő alkalmazásokon keresztül is. Tudjon meg erről többet a https://matrix.org oldalon, vagy nyomjon a \"Folytatás\" gombra.",
|
|
||||||
"@appIntroduction": {},
|
|
||||||
"open": "Megnyitás",
|
"open": "Megnyitás",
|
||||||
"@open": {},
|
"@open": {},
|
||||||
"notificationRuleSuppressNotices": "Minden automata üzenetet némít",
|
"notificationRuleSuppressNotices": "Minden automata üzenetet némít",
|
||||||
|
|
@ -3374,4 +2956,4 @@
|
||||||
"@youHaveKnocked": {},
|
"@youHaveKnocked": {},
|
||||||
"pleaseWaitUntilInvited": "Kérem várjon, amíg valaki a szobából behívja Önt.",
|
"pleaseWaitUntilInvited": "Kérem várjon, amíg valaki a szobából behívja Önt.",
|
||||||
"@pleaseWaitUntilInvited": {}
|
"@pleaseWaitUntilInvited": {}
|
||||||
}
|
}
|
||||||
|
|
@ -57,4 +57,4 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@custom": {}
|
"@custom": {}
|
||||||
}
|
}
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -4,21 +4,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identitá",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"close": "Cluder",
|
"close": "Cluder",
|
||||||
"@close": {
|
"@close": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Confirmar",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"admin": "Administrator",
|
"admin": "Administrator",
|
||||||
"@admin": {
|
"@admin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -29,16 +19,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsUserName": "Contene li nómine",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsDisplayName": "Contene li visibil nómine",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"copiedToClipboard": "Copiat al Paperiere",
|
"copiedToClipboard": "Copiat al Paperiere",
|
||||||
"@copiedToClipboard": {
|
"@copiedToClipboard": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -120,11 +100,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Provide vor hem-servitor",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fromTheInvitation": "Pro invitation",
|
"fromTheInvitation": "Pro invitation",
|
||||||
"@fromTheInvitation": {
|
"@fromTheInvitation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -180,11 +155,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Invitationes por me",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lastActiveAgo": "Ultim activité: {localizedTimeShort}",
|
"lastActiveAgo": "Ultim activité: {localizedTimeShort}",
|
||||||
"@lastActiveAgo": {
|
"@lastActiveAgo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -229,11 +199,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Cambios inter membres",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"muteChat": "Assurdar li conversation",
|
"muteChat": "Assurdar li conversation",
|
||||||
"@muteChat": {
|
"@muteChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -276,11 +241,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Ples selecter",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pushRules": "Regules de push-notificationes",
|
"pushRules": "Regules de push-notificationes",
|
||||||
"@pushRules": {
|
"@pushRules": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -291,11 +251,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"removeDevice": "Remover li aparate",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"saveFile": "Gardar li file",
|
"saveFile": "Gardar li file",
|
||||||
"@saveFile": {
|
"@saveFile": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -328,11 +283,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleUnread": "Marcar quam (ín)leet",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unblockDevice": "Deblocar li aparate",
|
"unblockDevice": "Deblocar li aparate",
|
||||||
"@unblockDevice": {
|
"@unblockDevice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -348,11 +298,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Tapete",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"messageType": "Tip de missage",
|
"messageType": "Tip de missage",
|
||||||
"@messageType": {},
|
"@messageType": {},
|
||||||
"start": "Iniciar",
|
"start": "Iniciar",
|
||||||
|
|
@ -361,23 +306,10 @@
|
||||||
"@messageInfo": {},
|
"@messageInfo": {},
|
||||||
"openGallery": "Aperter li galerie",
|
"openGallery": "Aperter li galerie",
|
||||||
"@openGallery": {},
|
"@openGallery": {},
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"reportUser": "Raportar li usator",
|
"reportUser": "Raportar li usator",
|
||||||
"@reportUser": {},
|
"@reportUser": {},
|
||||||
"voiceCall": "Telefonada",
|
"voiceCall": "Telefonada",
|
||||||
"@voiceCall": {},
|
"@voiceCall": {},
|
||||||
"nextAccount": "Sequent conto",
|
|
||||||
"@nextAccount": {},
|
|
||||||
"previousAccount": "Precedent conto",
|
|
||||||
"@previousAccount": {},
|
|
||||||
"countFiles": "{count} files",
|
"countFiles": "{count} files",
|
||||||
"@countFiles": {
|
"@countFiles": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -396,11 +328,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"connect": "Conexer",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"copy": "Copiar",
|
"copy": "Copiar",
|
||||||
"@copy": {
|
"@copy": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -421,11 +348,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"rejoin": "Re-adherer",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Remover",
|
"remove": "Remover",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -441,21 +363,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{day}.{month}.{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"delete": "Remover",
|
"delete": "Remover",
|
||||||
"@delete": {
|
"@delete": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -538,8 +445,6 @@
|
||||||
},
|
},
|
||||||
"time": "Hora",
|
"time": "Hora",
|
||||||
"@time": {},
|
"@time": {},
|
||||||
"publish": "Publicar",
|
|
||||||
"@publish": {},
|
|
||||||
"sender": "Autor",
|
"sender": "Autor",
|
||||||
"@sender": {},
|
"@sender": {},
|
||||||
"dismiss": "Demisser",
|
"dismiss": "Demisser",
|
||||||
|
|
@ -548,8 +453,6 @@
|
||||||
"@custom": {},
|
"@custom": {},
|
||||||
"emojis": "Emoji",
|
"emojis": "Emoji",
|
||||||
"@emojis": {},
|
"@emojis": {},
|
||||||
"widgetCustom": "Personalisat",
|
|
||||||
"@widgetCustom": {},
|
|
||||||
"users": "Usatores",
|
"users": "Usatores",
|
||||||
"@users": {},
|
"@users": {},
|
||||||
"user": "Usator",
|
"user": "Usator",
|
||||||
|
|
@ -584,11 +487,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licentie",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"or": "O",
|
"or": "O",
|
||||||
"@or": {
|
"@or": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -606,11 +504,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Homes",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pin": "Fixar",
|
"pin": "Fixar",
|
||||||
"@pin": {
|
"@pin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -732,11 +625,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Inviar li originale",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"theyMatch": "Corresponde",
|
"theyMatch": "Corresponde",
|
||||||
"@theyMatch": {
|
"@theyMatch": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -752,8 +640,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"addWidget": "Adjunter un widget",
|
|
||||||
"@addWidget": {},
|
|
||||||
"addAccount": "Adjunter un conto",
|
"addAccount": "Adjunter un conto",
|
||||||
"@addAccount": {},
|
"@addAccount": {},
|
||||||
"publicRooms": "Public chambres",
|
"publicRooms": "Public chambres",
|
||||||
|
|
@ -776,11 +662,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "Inviar un nota adhesiv",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Assignar li statu",
|
"setStatus": "Assignar li statu",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -845,11 +726,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Missages de robots",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"changeDeviceName": "Cambiar li nómine de aparate",
|
"changeDeviceName": "Cambiar li nómine de aparate",
|
||||||
"@changeDeviceName": {
|
"@changeDeviceName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -894,8 +770,6 @@
|
||||||
"@commandInvalid": {
|
"@commandInvalid": {
|
||||||
"type": "String"
|
"type": "String"
|
||||||
},
|
},
|
||||||
"widgetEtherpad": "Textual nota",
|
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"banFromChat": "Bannir del conversation",
|
"banFromChat": "Bannir del conversation",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -908,14 +782,8 @@
|
||||||
},
|
},
|
||||||
"commandHint_markasgroup": "Marcar quam gruppe",
|
"commandHint_markasgroup": "Marcar quam gruppe",
|
||||||
"@commandHint_markasgroup": {},
|
"@commandHint_markasgroup": {},
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"@widgetJitsi": {},
|
|
||||||
"screenSharingTitle": "partir li ecran",
|
"screenSharingTitle": "partir li ecran",
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"callingPermissions": "Permissiones de telefonada",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"callingAccount": "Conto telefonante",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"bannedUser": "{username} ha bannit {targetName}",
|
"bannedUser": "{username} ha bannit {targetName}",
|
||||||
"@bannedUser": {
|
"@bannedUser": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1028,39 +896,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Li hem-servitor supporta ti versiones de specification:\n{serverVersions}\nMa ti-ci application supporta solmen {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithoutYear": "{day}.{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"device": "Aparate",
|
"device": "Aparate",
|
||||||
"@device": {
|
"@device": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"widgetVideo": "Video",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"widgetName": "Nómine",
|
|
||||||
"@widgetName": {},
|
|
||||||
"account": "Conto",
|
"account": "Conto",
|
||||||
"@account": {
|
"@account": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1112,21 +952,8 @@
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"newSpace": "Crear un spacie",
|
"newSpace": "Crear un spacie",
|
||||||
"@newSpace": {},
|
"@newSpace": {},
|
||||||
"enterSpace": "Intrar li spacie",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"enterRoom": "Intrar li chambre",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"allSpaces": "Omni spacies",
|
"allSpaces": "Omni spacies",
|
||||||
"@allSpaces": {},
|
"@allSpaces": {},
|
||||||
"numChats": "{number} conversationes",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"logout": "Cluder li session",
|
"logout": "Cluder li session",
|
||||||
"@logout": {
|
"@logout": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1202,20 +1029,12 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@commandHint_cuddle": {},
|
"@commandHint_cuddle": {},
|
||||||
"@noEncryptionForPublicRooms": {
|
"@noEncryptionForPublicRooms": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@reportErrorDescription": {},
|
"@reportErrorDescription": {},
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@inviteContactToGroup": {
|
"@inviteContactToGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1224,7 +1043,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"@removeYourAvatar": {
|
"@removeYourAvatar": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1234,12 +1052,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"@oneClientLoggedOut": {},
|
"@oneClientLoggedOut": {},
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@unsupportedAndroidVersionLong": {},
|
"@unsupportedAndroidVersionLong": {},
|
||||||
"@kicked": {
|
"@kicked": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1268,7 +1081,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@startFirstChat": {},
|
|
||||||
"@sentAPicture": {
|
"@sentAPicture": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1293,10 +1105,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /create"
|
"description": "Usage hint for the command /create"
|
||||||
},
|
},
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@sentAFile": {
|
"@sentAFile": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1380,10 +1188,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@tryAgain": {},
|
"@tryAgain": {},
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1425,7 +1229,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"@messagesStyle": {},
|
"@messagesStyle": {},
|
||||||
"@couldNotDecryptMessage": {
|
"@couldNotDecryptMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1435,11 +1238,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@widgetUrlError": {},
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"@newSpaceDescription": {},
|
"@newSpaceDescription": {},
|
||||||
"@chatDescription": {},
|
"@chatDescription": {},
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"@pleaseFollowInstructionsOnWeb": {
|
"@pleaseFollowInstructionsOnWeb": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1457,17 +1257,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@reopenChat": {},
|
"@reopenChat": {},
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"@addToBundle": {},
|
"@addToBundle": {},
|
||||||
"@spaceIsPublic": {
|
"@spaceIsPublic": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1501,7 +1291,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@hydrateTor": {},
|
|
||||||
"@pushNotificationsNotAvailable": {},
|
"@pushNotificationsNotAvailable": {},
|
||||||
"@storeInAppleKeyChain": {},
|
"@storeInAppleKeyChain": {},
|
||||||
"@replaceRoomWithNewerVersion": {
|
"@replaceRoomWithNewerVersion": {
|
||||||
|
|
@ -1520,7 +1309,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@signInWithPassword": {},
|
|
||||||
"@changedTheGuestAccessRulesTo": {
|
"@changedTheGuestAccessRulesTo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1557,21 +1345,9 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@saveKeyManuallyDescription": {},
|
"@saveKeyManuallyDescription": {},
|
||||||
"@editBundlesForAccount": {},
|
"@editBundlesForAccount": {},
|
||||||
"@whyIsThisMessageEncrypted": {},
|
"@whyIsThisMessageEncrypted": {},
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@rejectedTheInvitation": {
|
"@rejectedTheInvitation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1596,14 +1372,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@storeSecurlyOnThisDevice": {},
|
"@storeSecurlyOnThisDevice": {},
|
||||||
"@yourChatBackupHasBeenSetUp": {},
|
"@yourChatBackupHasBeenSetUp": {},
|
||||||
"@redactedBy": {
|
"@redactedBy": {
|
||||||
|
|
@ -1647,14 +1415,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@changedTheRoomAliases": {
|
"@changedTheRoomAliases": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1753,14 +1513,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1800,7 +1552,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"@redactedByBecause": {
|
"@redactedByBecause": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1819,7 +1570,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"@roomHasBeenUpgraded": {
|
"@roomHasBeenUpgraded": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1921,7 +1671,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"@yourPublicKey": {
|
"@yourPublicKey": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1957,7 +1706,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@serverRequiresEmail": {},
|
"@serverRequiresEmail": {},
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"@sentCallInformations": {
|
"@sentCallInformations": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1966,7 +1714,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"@googlyEyesContent": {
|
"@googlyEyesContent": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1994,7 +1741,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@addChatDescription": {},
|
|
||||||
"@sentAnAudio": {
|
"@sentAnAudio": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2051,8 +1797,6 @@
|
||||||
},
|
},
|
||||||
"@sendTypingNotifications": {},
|
"@sendTypingNotifications": {},
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"@appearOnTop": {},
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"@verifyTitle": {
|
"@verifyTitle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -2113,7 +1857,6 @@
|
||||||
"@notAnImage": {},
|
"@notAnImage": {},
|
||||||
"@chatDescriptionHasBeenChanged": {},
|
"@chatDescriptionHasBeenChanged": {},
|
||||||
"@bundleName": {},
|
"@bundleName": {},
|
||||||
"@dehydrateTor": {},
|
|
||||||
"@removeFromSpace": {},
|
"@removeFromSpace": {},
|
||||||
"@commandHint_op": {
|
"@commandHint_op": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2159,7 +1902,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@profileNotFound": {},
|
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"@reactedWith": {
|
"@reactedWith": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2209,10 +1951,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@startedACall": {
|
"@startedACall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2225,20 +1963,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@visibilityOfTheChatHistory": {
|
"@visibilityOfTheChatHistory": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setTheme": {},
|
|
||||||
"@youJoinedTheChat": {},
|
"@youJoinedTheChat": {},
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@chatBackupDescription": {
|
"@chatBackupDescription": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -2256,7 +1985,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"@commandHint_dm": {
|
"@commandHint_dm": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /dm"
|
"description": "Usage hint for the command /dm"
|
||||||
|
|
@ -2307,9 +2035,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@commandHint_googly": {},
|
"@commandHint_googly": {},
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"@createGroup": {},
|
"@createGroup": {},
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -2322,10 +2048,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@importNow": {},
|
"@importNow": {},
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@pinMessage": {},
|
"@pinMessage": {},
|
||||||
"@screenSharingDetail": {},
|
"@screenSharingDetail": {},
|
||||||
"@invite": {},
|
"@invite": {},
|
||||||
|
|
@ -2334,7 +2056,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"@endedTheCall": {
|
"@endedTheCall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2343,4 +2064,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -118,18 +118,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "L'homeserver supporta le versioni Spec:\n{serverVersions}\nMa questa applicazione supporta solo {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Bandisci dalla chat",
|
"banFromChat": "Bandisci dalla chat",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -162,11 +150,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Messaggi bot",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Annulla",
|
"cancel": "Annulla",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -396,31 +379,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Conferma",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Connetti",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Il contatto è stato invitato nel gruppo",
|
"contactHasBeenInvitedToTheGroup": "Il contatto è stato invitato nel gruppo",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Contiene nome visibile",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Contiene nome utente",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Il contenuto è stato segnalato agli amministratori del server",
|
"contentHasBeenReported": "Il contenuto è stato segnalato agli amministratori del server",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -495,33 +458,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}/{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}/{month}/{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Disabiliterà il tuo account. Non puoi tornare indietro! Sei sicuro/a?",
|
"deactivateAccountWarning": "Disabiliterà il tuo account. Non puoi tornare indietro! Sei sicuro/a?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -622,11 +558,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Devi scegliere una scorciatoia emote e aggiungere un immagine!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Discussione vuota",
|
"emptyChat": "Discussione vuota",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -676,11 +607,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Inserisci il tuo server principale",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"everythingReady": "Tutto pronto!",
|
"everythingReady": "Tutto pronto!",
|
||||||
"@everythingReady": {
|
"@everythingReady": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -721,11 +647,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Vai nella nuova stanza",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Gruppo",
|
"group": "Gruppo",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -797,11 +718,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identità",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Ignora",
|
"ignore": "Ignora",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -863,11 +779,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Invita per me",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} ti ha invitato/a a FluffyChat.\n1. Visita fluffychat.im e installa l'applicazione\n2. Iscriviti o accedi\n3. Apri il collegamento di invito: \n {link}",
|
"inviteText": "{username} ti ha invitato/a a FluffyChat.\n1. Visita fluffychat.im e installa l'applicazione\n2. Iscriviti o accedi\n3. Apri il collegamento di invito: \n {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -947,11 +858,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licenza",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Chiaro",
|
"lightTheme": "Chiaro",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -995,11 +901,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Cambiamenti di membri",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Menzione",
|
"mention": "Menzione",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1095,11 +996,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Notifiche abilitate per questo account",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} utenti stanno scrivendo…",
|
"numUsersTyping": "{count} utenti stanno scrivendo…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1179,11 +1075,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Persone",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Scegli un'immagine",
|
"pickImage": "Scegli un'immagine",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1286,11 +1177,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Riunisciti",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Rimuovi",
|
"remove": "Rimuovi",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1310,11 +1196,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Rimuovi il dispositivo",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Rimuovi il ban dalla chat",
|
"unbanFromChat": "Rimuovi il ban dalla chat",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1360,15 +1241,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Visto da {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Invia",
|
"send": "Invia",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1399,11 +1271,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Invia l'originale",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Invia un video",
|
"sendVideo": "Invia un video",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1463,21 +1330,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Imposta emoticon personalizzate",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Imposta il collegamento di invito",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Imposta il livello di autorizzazione",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Imposta lo stato",
|
"setStatus": "Imposta lo stato",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1562,21 +1414,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Attiva/disattiva preferito",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Attiva/disattiva il silenziatore",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Segna come letto / non letto",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Troppe richieste. Per favore riprova più tardi!",
|
"tooManyRequestsWarning": "Troppe richieste. Per favore riprova più tardi!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1643,15 +1480,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 discussione non letta} other{{unreadCount} discussioni non lette}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} e {count} altri stanno scrivendo…",
|
"userAndOthersAreTyping": "{username} e {count} altri stanno scrivendo…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1776,11 +1604,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Immagine di sfondo:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Attenzione!",
|
"warning": "Attenzione!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1846,11 +1669,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Accesso singolo",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "Imposta come alias principale",
|
"setAsCanonicalAlias": "Imposta come alias principale",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1871,11 +1689,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Si prega di scegliere",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"or": "O",
|
"or": "O",
|
||||||
"@or": {
|
"@or": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1915,11 +1728,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /ban"
|
"description": "Usage hint for the command /ban"
|
||||||
},
|
},
|
||||||
"sendSticker": "Invia adesivo",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"commandHint_html": "Invia testo formattato in HTML",
|
"commandHint_html": "Invia testo formattato in HTML",
|
||||||
"@commandHint_html": {
|
"@commandHint_html": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2002,11 +1810,6 @@
|
||||||
},
|
},
|
||||||
"jumpToLastReadMessage": "Salta all'ultimo messaggio letto",
|
"jumpToLastReadMessage": "Salta all'ultimo messaggio letto",
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"allRooms": "Tutte le chat di gruppo",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"obtainingLocation": "Ottengo la posizione…",
|
"obtainingLocation": "Ottengo la posizione…",
|
||||||
"@obtainingLocation": {
|
"@obtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2014,32 +1817,18 @@
|
||||||
},
|
},
|
||||||
"commandHint_cuddle": "Invia una coccola",
|
"commandHint_cuddle": "Invia una coccola",
|
||||||
"@commandHint_cuddle": {},
|
"@commandHint_cuddle": {},
|
||||||
"widgetVideo": "Video",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"dismiss": "Chiudi",
|
"dismiss": "Chiudi",
|
||||||
"@dismiss": {},
|
"@dismiss": {},
|
||||||
"reportErrorDescription": "😭 Oh no. Qualcosa è andato storto. Se vuoi, puoi segnalare questo bug agli sviluppatori.",
|
"reportErrorDescription": "😭 Oh no. Qualcosa è andato storto. Se vuoi, puoi segnalare questo bug agli sviluppatori.",
|
||||||
"@reportErrorDescription": {},
|
"@reportErrorDescription": {},
|
||||||
"chatHasBeenAddedToThisSpace": "La chat è stata aggiunta a questo spazio",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"unsupportedAndroidVersion": "Versione di Android non supportata",
|
"unsupportedAndroidVersion": "Versione di Android non supportata",
|
||||||
"@unsupportedAndroidVersion": {},
|
"@unsupportedAndroidVersion": {},
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"@widgetJitsi": {},
|
|
||||||
"messageType": "Tipo del Messaggio",
|
"messageType": "Tipo del Messaggio",
|
||||||
"@messageType": {},
|
"@messageType": {},
|
||||||
"indexedDbErrorLong": "Sfortunatamente l'archiviazione dei messaggi non è abilitata in modalità privata per impostazione predefinita.\nPer favore visita\n - about:config\n - imposta dom.indexedDB.privateBrowsing.enabled su true\nAltrimenti, non è possibile eseguire FluffyChat.",
|
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"oneClientLoggedOut": "Uno dei tuoi client è stato disconnesso",
|
"oneClientLoggedOut": "Uno dei tuoi client è stato disconnesso",
|
||||||
"@oneClientLoggedOut": {},
|
"@oneClientLoggedOut": {},
|
||||||
"startFirstChat": "Inizia la tua prima chat",
|
|
||||||
"@startFirstChat": {},
|
|
||||||
"callingAccount": "Account di chiamata",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"setColorTheme": "Imposta tema colore:",
|
"setColorTheme": "Imposta tema colore:",
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"nextAccount": "Account successivo",
|
|
||||||
"@nextAccount": {},
|
|
||||||
"commandHint_create": "Crea una chat di gruppo vuota\nUtilizza --no-encryption per disattivare la criptazione",
|
"commandHint_create": "Crea una chat di gruppo vuota\nUtilizza --no-encryption per disattivare la criptazione",
|
||||||
"@commandHint_create": {
|
"@commandHint_create": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2082,15 +1871,8 @@
|
||||||
},
|
},
|
||||||
"banUserDescription": "L'utente sarà bannato dalla chat e non sarà in grado di rientrare finché non verrà sbannato.",
|
"banUserDescription": "L'utente sarà bannato dalla chat e non sarà in grado di rientrare finché non verrà sbannato.",
|
||||||
"@banUserDescription": {},
|
"@banUserDescription": {},
|
||||||
"widgetEtherpad": "Nota di testo",
|
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"removeDevicesDescription": "Sarai disconnesso da questo dispositivo e non potrai più ricevere messaggi.",
|
"removeDevicesDescription": "Sarai disconnesso da questo dispositivo e non potrai più ricevere messaggi.",
|
||||||
"@removeDevicesDescription": {},
|
"@removeDevicesDescription": {},
|
||||||
"separateChatTypes": "Separare le chat dirette e i gruppi",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tryAgain": "Riprova",
|
"tryAgain": "Riprova",
|
||||||
"@tryAgain": {},
|
"@tryAgain": {},
|
||||||
"youKickedAndBanned": "🙅 Hai rimosso e bannato {user}",
|
"youKickedAndBanned": "🙅 Hai rimosso e bannato {user}",
|
||||||
|
|
@ -2107,32 +1889,16 @@
|
||||||
"@sendOnEnter": {},
|
"@sendOnEnter": {},
|
||||||
"youRejectedTheInvitation": "Hai rifiutato l'invito",
|
"youRejectedTheInvitation": "Hai rifiutato l'invito",
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"otherCallingPermissions": "Microfono, fotocamera e altri permessi di FluffyChat",
|
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"messagesStyle": "Messaggi:",
|
"messagesStyle": "Messaggi:",
|
||||||
"@messagesStyle": {},
|
"@messagesStyle": {},
|
||||||
"widgetUrlError": "Questo non è un URL valido.",
|
|
||||||
"@widgetUrlError": {},
|
|
||||||
"emailOrUsername": "Email o nome utente",
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"newSpaceDescription": "Gli spazi ti permettono di consolidare le tue chat e di creare comunità private o pubbliche.",
|
"newSpaceDescription": "Gli spazi ti permettono di consolidare le tue chat e di creare comunità private o pubbliche.",
|
||||||
"@newSpaceDescription": {},
|
"@newSpaceDescription": {},
|
||||||
"chatDescription": "Descrizione della chat",
|
"chatDescription": "Descrizione della chat",
|
||||||
"@chatDescription": {},
|
"@chatDescription": {},
|
||||||
"callingAccountDetails": "Dai l'autorizzazione a FluffyChat di usare l'app di composizione Android nativa.",
|
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"enterSpace": "Unirsi allo spazio",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"encryptThisChat": "Cifra questa chat",
|
"encryptThisChat": "Cifra questa chat",
|
||||||
"@encryptThisChat": {},
|
"@encryptThisChat": {},
|
||||||
"previousAccount": "Account precedente",
|
|
||||||
"@previousAccount": {},
|
|
||||||
"reopenChat": "Riapri la chat",
|
"reopenChat": "Riapri la chat",
|
||||||
"@reopenChat": {},
|
"@reopenChat": {},
|
||||||
"pleaseEnterRecoveryKey": "Per favore inserisci la tua chiave di recupero:",
|
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"widgetNameError": "Per favore fornire un nome da visualizzare.",
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"addToBundle": "Aggiungi al bundle",
|
"addToBundle": "Aggiungi al bundle",
|
||||||
"@addToBundle": {},
|
"@addToBundle": {},
|
||||||
"spaceIsPublic": "Lo spazio è pubblico",
|
"spaceIsPublic": "Lo spazio è pubblico",
|
||||||
|
|
@ -2140,8 +1906,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"addWidget": "Aggiungi widget",
|
|
||||||
"@addWidget": {},
|
|
||||||
"countFiles": "{count} file",
|
"countFiles": "{count} file",
|
||||||
"@countFiles": {
|
"@countFiles": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2163,8 +1927,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"hydrateTor": "Utenti TOR: Importa l'esportazione della sessione",
|
|
||||||
"@hydrateTor": {},
|
|
||||||
"pushNotificationsNotAvailable": "Notifiche push non disponibili",
|
"pushNotificationsNotAvailable": "Notifiche push non disponibili",
|
||||||
"@pushNotificationsNotAvailable": {},
|
"@pushNotificationsNotAvailable": {},
|
||||||
"storeInAppleKeyChain": "Salva nel portachiavi di Apple",
|
"storeInAppleKeyChain": "Salva nel portachiavi di Apple",
|
||||||
|
|
@ -2179,8 +1941,6 @@
|
||||||
"@sender": {},
|
"@sender": {},
|
||||||
"storeInAndroidKeystore": "Salva nel KeyStore di Android",
|
"storeInAndroidKeystore": "Salva nel KeyStore di Android",
|
||||||
"@storeInAndroidKeystore": {},
|
"@storeInAndroidKeystore": {},
|
||||||
"signInWithPassword": "Accedi con la password",
|
|
||||||
"@signInWithPassword": {},
|
|
||||||
"makeAdminDescription": "Una volta che fai questo utente amministratore, potresti non essere in grado di rimuoverlo, in quanto avrà i tuoi stessi privilegi.",
|
"makeAdminDescription": "Una volta che fai questo utente amministratore, potresti non essere in grado di rimuoverlo, in quanto avrà i tuoi stessi privilegi.",
|
||||||
"@makeAdminDescription": {},
|
"@makeAdminDescription": {},
|
||||||
"synchronizingPleaseWait": "Sincronizzazione... Attendere prego.",
|
"synchronizingPleaseWait": "Sincronizzazione... Attendere prego.",
|
||||||
|
|
@ -2223,36 +1983,16 @@
|
||||||
},
|
},
|
||||||
"videoCallsBetaWarning": "Nota che le video chiamate sono attualmente in beta. Potrebbero non funzionare come previsto o non funzionare del tutto su alcune piattaforme.",
|
"videoCallsBetaWarning": "Nota che le video chiamate sono attualmente in beta. Potrebbero non funzionare come previsto o non funzionare del tutto su alcune piattaforme.",
|
||||||
"@videoCallsBetaWarning": {},
|
"@videoCallsBetaWarning": {},
|
||||||
"signInWith": "Accedi con {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"fileIsTooBigForServer": "Impossibile inviare! Il server supporta solo allegati fino a {max}.",
|
"fileIsTooBigForServer": "Impossibile inviare! Il server supporta solo allegati fino a {max}.",
|
||||||
"@fileIsTooBigForServer": {},
|
"@fileIsTooBigForServer": {},
|
||||||
"homeserver": "Homeserver",
|
"homeserver": "Homeserver",
|
||||||
"@homeserver": {},
|
"@homeserver": {},
|
||||||
"callingPermissions": "Permessi di chiamata",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"readUpToHere": "Letto fino a qui",
|
"readUpToHere": "Letto fino a qui",
|
||||||
"@readUpToHere": {},
|
"@readUpToHere": {},
|
||||||
"start": "Inizio",
|
"start": "Inizio",
|
||||||
"@start": {},
|
"@start": {},
|
||||||
"unlockOldMessages": "Sblocca i vecchi messaggi",
|
"unlockOldMessages": "Sblocca i vecchi messaggi",
|
||||||
"@unlockOldMessages": {},
|
"@unlockOldMessages": {},
|
||||||
"numChats": "{number} chat",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"optionalRedactReason": "(Opzionale) Ragione per rimuovere questo messaggio...",
|
"optionalRedactReason": "(Opzionale) Ragione per rimuovere questo messaggio...",
|
||||||
"@optionalRedactReason": {},
|
"@optionalRedactReason": {},
|
||||||
"dehydrate": "Esporta la sessione e cancella il dispositivo",
|
"dehydrate": "Esporta la sessione e cancella il dispositivo",
|
||||||
|
|
@ -2266,21 +2006,10 @@
|
||||||
"@archiveRoomDescription": {},
|
"@archiveRoomDescription": {},
|
||||||
"exportEmotePack": "Esporta pack di Emote come .zip",
|
"exportEmotePack": "Esporta pack di Emote come .zip",
|
||||||
"@exportEmotePack": {},
|
"@exportEmotePack": {},
|
||||||
"switchToAccount": "Passa all'account {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"experimentalVideoCalls": "Video chiamate sperimentali",
|
"experimentalVideoCalls": "Video chiamate sperimentali",
|
||||||
"@experimentalVideoCalls": {},
|
"@experimentalVideoCalls": {},
|
||||||
"pleaseEnterRecoveryKeyDescription": "Per sbloccare i tuoi vecchi messaggi, per favore inserisci la tua chiave di recupero che è stata generata nella tua sessione precedente. La tua chiave di recupero NON è la tua password.",
|
"pleaseEnterRecoveryKeyDescription": "Per sbloccare i tuoi vecchi messaggi, per favore inserisci la tua chiave di recupero che è stata generata nella tua sessione precedente. La tua chiave di recupero NON è la tua password.",
|
||||||
"@pleaseEnterRecoveryKeyDescription": {},
|
"@pleaseEnterRecoveryKeyDescription": {},
|
||||||
"inviteContactToGroupQuestion": "Vuoi invitare {contact} nella chat \"{groupName}\"?",
|
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"redactedByBecause": "Rimosso da {username} per: \"{reason}\"",
|
"redactedByBecause": "Rimosso da {username} per: \"{reason}\"",
|
||||||
"@redactedByBecause": {
|
"@redactedByBecause": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2301,10 +2030,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"appearOnTopDetails": "Permetti all'app di apparire in alto (non necessario se hai già impostato Fluffychat come account di chiamata)",
|
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"enterRoom": "Unirsi alla stanza",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"reportUser": "Segnala utente",
|
"reportUser": "Segnala utente",
|
||||||
"@reportUser": {},
|
"@reportUser": {},
|
||||||
"confirmEventUnpin": "Sei sicuro di voler permanentemente sfissare l'evento?",
|
"confirmEventUnpin": "Sei sicuro di voler permanentemente sfissare l'evento?",
|
||||||
|
|
@ -2347,8 +2072,6 @@
|
||||||
},
|
},
|
||||||
"invalidInput": "Contenuto non valido!",
|
"invalidInput": "Contenuto non valido!",
|
||||||
"@invalidInput": {},
|
"@invalidInput": {},
|
||||||
"dehydrateTorLong": "Per gli utenti TOR, è raccomandato esportare la sessione prima di chiudere la finestra.",
|
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"commandHint_myroomnick": "Imposta il nome visualizzato per questa stanza",
|
"commandHint_myroomnick": "Imposta il nome visualizzato per questa stanza",
|
||||||
"@commandHint_myroomnick": {
|
"@commandHint_myroomnick": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2358,14 +2081,8 @@
|
||||||
"@doNotShowAgain": {},
|
"@doNotShowAgain": {},
|
||||||
"report": "segnala",
|
"report": "segnala",
|
||||||
"@report": {},
|
"@report": {},
|
||||||
"hideUnimportantStateEvents": "Nascondi gli eventi di stato non importanti",
|
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"screenSharingTitle": "condivisione schermo",
|
"screenSharingTitle": "condivisione schermo",
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"widgetCustom": "Personalizzati",
|
|
||||||
"@widgetCustom": {},
|
|
||||||
"addToSpaceDescription": "Seleziona una spazio a cui aggiungere questa chat.",
|
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"googlyEyesContent": "{senderName} ti ha inviato degli occhi finti",
|
"googlyEyesContent": "{senderName} ti ha inviato degli occhi finti",
|
||||||
"@googlyEyesContent": {
|
"@googlyEyesContent": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2383,8 +2100,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addChatDescription": "Aggiungi una descrizione chat...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"commandHint_myroomavatar": "Importa la foto profilo per questa stanza ( mxc-uri)",
|
"commandHint_myroomavatar": "Importa la foto profilo per questa stanza ( mxc-uri)",
|
||||||
"@commandHint_myroomavatar": {
|
"@commandHint_myroomavatar": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2398,8 +2113,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"publish": "Pubblicare",
|
|
||||||
"@publish": {},
|
|
||||||
"openLinkInBrowser": "Apri il collegamento nel browser",
|
"openLinkInBrowser": "Apri il collegamento nel browser",
|
||||||
"@openLinkInBrowser": {},
|
"@openLinkInBrowser": {},
|
||||||
"commandHint_react": "Rispondi con una reazione",
|
"commandHint_react": "Rispondi con una reazione",
|
||||||
|
|
@ -2431,10 +2144,6 @@
|
||||||
"@sendTypingNotifications": {},
|
"@sendTypingNotifications": {},
|
||||||
"inviteGroupChat": "📨 Invita a una chat di gruppo",
|
"inviteGroupChat": "📨 Invita a una chat di gruppo",
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"appearOnTop": "Appare in alto",
|
|
||||||
"@appearOnTop": {},
|
|
||||||
"invitePrivateChat": "📨 Invita a una chat privata",
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"foregroundServiceRunning": "Questa notifica viene mostrata quando il servizio in primo piano è in esecuzione.",
|
"foregroundServiceRunning": "Questa notifica viene mostrata quando il servizio in primo piano è in esecuzione.",
|
||||||
"@foregroundServiceRunning": {},
|
"@foregroundServiceRunning": {},
|
||||||
"voiceCall": "Chiamata vocale",
|
"voiceCall": "Chiamata vocale",
|
||||||
|
|
@ -2485,8 +2194,6 @@
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"bundleName": "Nome del bundle",
|
"bundleName": "Nome del bundle",
|
||||||
"@bundleName": {},
|
"@bundleName": {},
|
||||||
"dehydrateTor": "Utenti TOR: Esporta la sessione",
|
|
||||||
"@dehydrateTor": {},
|
|
||||||
"removeFromSpace": "Rimuovi dallo spazio",
|
"removeFromSpace": "Rimuovi dallo spazio",
|
||||||
"@removeFromSpace": {},
|
"@removeFromSpace": {},
|
||||||
"commandHint_op": "Imposta il livello di privilegi dell'utente specificato (predefinito: 50)",
|
"commandHint_op": "Imposta il livello di privilegi dell'utente specificato (predefinito: 50)",
|
||||||
|
|
@ -2516,8 +2223,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"profileNotFound": "Impossibile trovare l'utente sul server. Forse c'è un problema di connessione oppure l'utente non esiste.",
|
|
||||||
"@profileNotFound": {},
|
|
||||||
"jump": "Salta",
|
"jump": "Salta",
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"reactedWith": "{sender} ha reagito con {reaction}",
|
"reactedWith": "{sender} ha reagito con {reaction}",
|
||||||
|
|
@ -2534,15 +2239,6 @@
|
||||||
},
|
},
|
||||||
"sorryThatsNotPossible": "Scusa... questo non è possibile",
|
"sorryThatsNotPossible": "Scusa... questo non è possibile",
|
||||||
"@sorryThatsNotPossible": {},
|
"@sorryThatsNotPossible": {},
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"shareInviteLink": "Condividi link d'invito",
|
"shareInviteLink": "Condividi link d'invito",
|
||||||
"@shareInviteLink": {},
|
"@shareInviteLink": {},
|
||||||
"commandHint_markasdm": "Contrassegna questo Matrix ID come stanza di messaggi diretti",
|
"commandHint_markasdm": "Contrassegna questo Matrix ID come stanza di messaggi diretti",
|
||||||
|
|
@ -2565,21 +2261,10 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setTheme": "Imposta tema:",
|
|
||||||
"@setTheme": {},
|
|
||||||
"youJoinedTheChat": "Sei entrato/a nella chat",
|
"youJoinedTheChat": "Sei entrato/a nella chat",
|
||||||
"@youJoinedTheChat": {},
|
"@youJoinedTheChat": {},
|
||||||
"openVideoCamera": "Apri la fotocamera per un video",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"markAsRead": "Segna come letto",
|
"markAsRead": "Segna come letto",
|
||||||
"@markAsRead": {},
|
"@markAsRead": {},
|
||||||
"widgetName": "Nome",
|
|
||||||
"@widgetName": {},
|
|
||||||
"errorAddingWidget": "Errore aggiungendo il widget.",
|
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"commandHint_dm": "Avvia una chat diretta\nUsa --no-encryption per disabilitare la crittografia",
|
"commandHint_dm": "Avvia una chat diretta\nUsa --no-encryption per disabilitare la crittografia",
|
||||||
"@commandHint_dm": {
|
"@commandHint_dm": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2603,12 +2288,8 @@
|
||||||
"@emojis": {},
|
"@emojis": {},
|
||||||
"commandHint_googly": "Invia degli occhi finti",
|
"commandHint_googly": "Invia degli occhi finti",
|
||||||
"@commandHint_googly": {},
|
"@commandHint_googly": {},
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Per favore riprova più tardi o scegli un server diverso.",
|
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"createGroup": "Crea gruppo",
|
"createGroup": "Crea gruppo",
|
||||||
"@createGroup": {},
|
"@createGroup": {},
|
||||||
"hydrateTorLong": "Hai esportato la tua sessione l'ultima volta con TOR? Importala velocemente e continua a chattare.",
|
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"time": "Tempo",
|
"time": "Tempo",
|
||||||
"@time": {},
|
"@time": {},
|
||||||
"custom": "Personalizzato",
|
"custom": "Personalizzato",
|
||||||
|
|
@ -2629,8 +2310,6 @@
|
||||||
"@invite": {},
|
"@invite": {},
|
||||||
"enableMultiAccounts": "(BETA) Abilita account multipli su questo dispositivo",
|
"enableMultiAccounts": "(BETA) Abilita account multipli su questo dispositivo",
|
||||||
"@enableMultiAccounts": {},
|
"@enableMultiAccounts": {},
|
||||||
"indexedDbErrorTitle": "Problemi con la modalità privata",
|
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"unsupportedAndroidVersionLong": "Questa funzionalità richiede una versione di Android più recente. Si prega di verificare la presenza di aggiornamenti o supporto per Lineage OS.",
|
"unsupportedAndroidVersionLong": "Questa funzionalità richiede una versione di Android più recente. Si prega di verificare la presenza di aggiornamenti o supporto per Lineage OS.",
|
||||||
"@unsupportedAndroidVersionLong": {},
|
"@unsupportedAndroidVersionLong": {},
|
||||||
"storeSecurlyOnThisDevice": "Salva in modo sicuro su questo dispositivo",
|
"storeSecurlyOnThisDevice": "Salva in modo sicuro su questo dispositivo",
|
||||||
|
|
@ -2647,8 +2326,6 @@
|
||||||
"@blockUsername": {},
|
"@blockUsername": {},
|
||||||
"createGroupAndInviteUsers": "Crea un gruppo e invita gli utenti",
|
"createGroupAndInviteUsers": "Crea un gruppo e invita gli utenti",
|
||||||
"@createGroupAndInviteUsers": {},
|
"@createGroupAndInviteUsers": {},
|
||||||
"startConversation": "Inizia una conversazione",
|
|
||||||
"@startConversation": {},
|
|
||||||
"groupCanBeFoundViaSearch": "Il gruppo può essere cercato",
|
"groupCanBeFoundViaSearch": "Il gruppo può essere cercato",
|
||||||
"@groupCanBeFoundViaSearch": {},
|
"@groupCanBeFoundViaSearch": {},
|
||||||
"noUsersFoundWithQuery": "Sfortunatamente non è stato trovato nessun utente con \"{query}\". Per favore controlla se hai fatto un errore di battitura.",
|
"noUsersFoundWithQuery": "Sfortunatamente non è stato trovato nessun utente con \"{query}\". Per favore controlla se hai fatto un errore di battitura.",
|
||||||
|
|
@ -2676,18 +2353,8 @@
|
||||||
"@searchChatsRooms": {},
|
"@searchChatsRooms": {},
|
||||||
"databaseMigrationBody": "Attendere prego. L'operazione potrebbe richiedere un momento.",
|
"databaseMigrationBody": "Attendere prego. L'operazione potrebbe richiedere un momento.",
|
||||||
"@databaseMigrationBody": {},
|
"@databaseMigrationBody": {},
|
||||||
"youInvitedToBy": "📩 Sei stato invitato tramite link in:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"addChatOrSubSpace": "Aggiungi chat o sottospazio",
|
"addChatOrSubSpace": "Aggiungi chat o sottospazio",
|
||||||
"@addChatOrSubSpace": {},
|
"@addChatOrSubSpace": {},
|
||||||
"subspace": "Sottospazio",
|
|
||||||
"@subspace": {},
|
|
||||||
"publicSpaces": "Spazio pubblico",
|
"publicSpaces": "Spazio pubblico",
|
||||||
"@publicSpaces": {},
|
"@publicSpaces": {},
|
||||||
"hidePresences": "Nascondere l'elenco degli stati?",
|
"hidePresences": "Nascondere l'elenco degli stati?",
|
||||||
|
|
@ -2696,18 +2363,6 @@
|
||||||
"@pleaseEnterYourCurrentPassword": {},
|
"@pleaseEnterYourCurrentPassword": {},
|
||||||
"passwordIsWrong": "La password inserita è sbagliata",
|
"passwordIsWrong": "La password inserita è sbagliata",
|
||||||
"@passwordIsWrong": {},
|
"@passwordIsWrong": {},
|
||||||
"databaseBuildErrorBody": "Impossibile costruire il database SQlite. L'applicazione proverà ad usare il database legacy per ora. Per favore segnala questo errore agli sviluppatori su {url}. Il messaggio di errore è: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"select": "Seleziona",
|
"select": "Seleziona",
|
||||||
"@select": {},
|
"@select": {},
|
||||||
"newPassword": "Nuova password",
|
"newPassword": "Nuova password",
|
||||||
|
|
@ -2716,15 +2371,6 @@
|
||||||
"@pleaseChooseAStrongPassword": {},
|
"@pleaseChooseAStrongPassword": {},
|
||||||
"thisDevice": "Questo dispositivo:",
|
"thisDevice": "Questo dispositivo:",
|
||||||
"@thisDevice": {},
|
"@thisDevice": {},
|
||||||
"forwardMessageTo": "Inoltra messaggio in {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"verifyOtherUser": "🔐 Verifica altro utente",
|
"verifyOtherUser": "🔐 Verifica altro utente",
|
||||||
"@verifyOtherUser": {},
|
"@verifyOtherUser": {},
|
||||||
"verifyOtherUserDescription": "Se verifichi un altro utente, puoi essere certo di sapere a chi stai realmente scrivendo. 💪\n\nQuando inizi una verifica, tu e l'altro utente vedrete un popup nell'app. Lì vedrai una serie di emoji o numeri che dovrai confrontare tra loro.\n\nIl modo migliore per farlo è incontrarsi o avviare una videochiamata. 👭",
|
"verifyOtherUserDescription": "Se verifichi un altro utente, puoi essere certo di sapere a chi stai realmente scrivendo. 💪\n\nQuando inizi una verifica, tu e l'altro utente vedrete un popup nell'app. Lì vedrai una serie di emoji o numeri che dovrai confrontare tra loro.\n\nIl modo migliore per farlo è incontrarsi o avviare una videochiamata. 👭",
|
||||||
|
|
@ -2740,28 +2386,20 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"publicLink": "Link pubblico",
|
|
||||||
"@publicLink": {},
|
|
||||||
"leaveEmptyToClearStatus": "Lascia vuoto per cancellare il tuo stato.",
|
"leaveEmptyToClearStatus": "Lascia vuoto per cancellare il tuo stato.",
|
||||||
"@leaveEmptyToClearStatus": {},
|
"@leaveEmptyToClearStatus": {},
|
||||||
"decline": "Declina",
|
|
||||||
"@decline": {},
|
|
||||||
"transparent": "Trasparente",
|
"transparent": "Trasparente",
|
||||||
"@transparent": {},
|
"@transparent": {},
|
||||||
"incomingMessages": "Messaggi in arrivo",
|
"incomingMessages": "Messaggi in arrivo",
|
||||||
"@incomingMessages": {},
|
"@incomingMessages": {},
|
||||||
"noChatsFoundHere": "Nessuna chat trovata. Inizia una nuova chat con qualcuno usando il pulsante qui sotto. ⤵️",
|
"noChatsFoundHere": "Nessuna chat trovata. Inizia una nuova chat con qualcuno usando il pulsante qui sotto. ⤵️",
|
||||||
"@noChatsFoundHere": {},
|
"@noChatsFoundHere": {},
|
||||||
"joinedChats": "Chat a cui partecipi",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"unread": "Non letti",
|
"unread": "Non letti",
|
||||||
"@unread": {},
|
"@unread": {},
|
||||||
"space": "Spazio",
|
"space": "Spazio",
|
||||||
"@space": {},
|
"@space": {},
|
||||||
"spaces": "Spazi",
|
"spaces": "Spazi",
|
||||||
"@spaces": {},
|
"@spaces": {},
|
||||||
"notifyMeFor": "Avvisami per",
|
|
||||||
"@notifyMeFor": {},
|
|
||||||
"invitedBy": "📩 Invitato da {user}",
|
"invitedBy": "📩 Invitato da {user}",
|
||||||
"@invitedBy": {
|
"@invitedBy": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2776,29 +2414,10 @@
|
||||||
"@hideInvalidOrUnknownMessageFormats": {},
|
"@hideInvalidOrUnknownMessageFormats": {},
|
||||||
"overview": "Panoramica",
|
"overview": "Panoramica",
|
||||||
"@overview": {},
|
"@overview": {},
|
||||||
"presenceStyle": "Presenza:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"swipeRightToLeftToReply": "Scorri da destra a sinistra per rispondere",
|
"swipeRightToLeftToReply": "Scorri da destra a sinistra per rispondere",
|
||||||
"@swipeRightToLeftToReply": {},
|
"@swipeRightToLeftToReply": {},
|
||||||
"globalChatId": "ID chat globale",
|
"globalChatId": "ID chat globale",
|
||||||
"@globalChatId": {},
|
"@globalChatId": {},
|
||||||
"hideMemberChangesInPublicChats": "Nascondi le modifiche dei membri nelle chat pubbliche",
|
|
||||||
"@hideMemberChangesInPublicChats": {},
|
|
||||||
"hideMemberChangesInPublicChatsBody": "Per migliorare la leggibilità, non mostrare nella cronologia della chat se qualcuno si unisce o abbandona una chat pubblica.",
|
|
||||||
"@hideMemberChangesInPublicChatsBody": {},
|
|
||||||
"userWouldLikeToChangeTheChat": "{user} vorrebbe unirsi alla chat.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Non è stato ancora creato alcun link pubblico",
|
|
||||||
"@noPublicLinkHasBeenCreatedYet": {},
|
|
||||||
"appLockDescription": "Blocca l'app con un codice PIN quando non è in uso",
|
"appLockDescription": "Blocca l'app con un codice PIN quando non è in uso",
|
||||||
"@appLockDescription": {},
|
"@appLockDescription": {},
|
||||||
"noOneCanJoin": "Nessuno può unirsi",
|
"noOneCanJoin": "Nessuno può unirsi",
|
||||||
|
|
@ -2827,18 +2446,6 @@
|
||||||
"@passwordRecoverySettings": {},
|
"@passwordRecoverySettings": {},
|
||||||
"noMoreChatsFound": "Non sono state trovate altre chat...",
|
"noMoreChatsFound": "Non sono state trovate altre chat...",
|
||||||
"@noMoreChatsFound": {},
|
"@noMoreChatsFound": {},
|
||||||
"countChatsAndCountParticipants": "{chats} chat e {participants} partecipanti",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stickers": "Adesivi",
|
"stickers": "Adesivi",
|
||||||
"@stickers": {},
|
"@stickers": {},
|
||||||
"searchMore": "Cerca di più...",
|
"searchMore": "Cerca di più...",
|
||||||
|
|
@ -2929,17 +2536,6 @@
|
||||||
"@publicChatAddresses": {},
|
"@publicChatAddresses": {},
|
||||||
"createNewAddress": "Crea un nuovo indirizzo",
|
"createNewAddress": "Crea un nuovo indirizzo",
|
||||||
"@createNewAddress": {},
|
"@createNewAddress": {},
|
||||||
"userRole": "Ruolo utente",
|
|
||||||
"@userRole": {},
|
|
||||||
"minimumPowerLevel": "{level} è il livello minimo di privilegi.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"searchIn": "Cerca nella chat \"{chat}\"...",
|
"searchIn": "Cerca nella chat \"{chat}\"...",
|
||||||
"@searchIn": {
|
"@searchIn": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3098,12 +2694,6 @@
|
||||||
"@changeGeneralChatSettings": {},
|
"@changeGeneralChatSettings": {},
|
||||||
"loginWithMatrixId": "Accedi con il Matrix ID",
|
"loginWithMatrixId": "Accedi con il Matrix ID",
|
||||||
"@loginWithMatrixId": {},
|
"@loginWithMatrixId": {},
|
||||||
"homeserverDescription": "Tutti i tuoi dati sono archiviati sull'homeserver, proprio come un provider di posta elettronica. Puoi scegliere quale homeserver vuoi usare, mentre puoi comunque comunicare con tutti. Scopri di più su https://matrix.org.",
|
|
||||||
"@homeserverDescription": {},
|
|
||||||
"discoverHomeservers": "Scopri gli homeserver",
|
|
||||||
"@discoverHomeservers": {},
|
|
||||||
"whatIsAHomeserver": "Cos'è un homeserver?",
|
|
||||||
"@whatIsAHomeserver": {},
|
|
||||||
"changelog": "Registro delle modifiche",
|
"changelog": "Registro delle modifiche",
|
||||||
"@changelog": {},
|
"@changelog": {},
|
||||||
"doesNotSeemToBeAValidHomeserver": "Non sembra essere un homeserver compatibile. URL sbagliato?",
|
"doesNotSeemToBeAValidHomeserver": "Non sembra essere un homeserver compatibile. URL sbagliato?",
|
||||||
|
|
@ -3297,8 +2887,6 @@
|
||||||
"@open": {},
|
"@open": {},
|
||||||
"appWantsToUseForLoginDescription": "Con la presente consenti all'app e al sito web di condividere informazioni su di te.",
|
"appWantsToUseForLoginDescription": "Con la presente consenti all'app e al sito web di condividere informazioni su di te.",
|
||||||
"@appWantsToUseForLoginDescription": {},
|
"@appWantsToUseForLoginDescription": {},
|
||||||
"appIntroduction": "FluffyChat ti consente di chattare con i tuoi amici attraverso diverse app di messaggistica. Ulteriori informazioni su https://matrix.org o semplicemente tocca *Continua*.",
|
|
||||||
"@appIntroduction": {},
|
|
||||||
"waitingForServer": "In attesa del server...",
|
"waitingForServer": "In attesa del server...",
|
||||||
"@waitingForServer": {},
|
"@waitingForServer": {},
|
||||||
"synchronizingPleaseWaitCounter": " Sincronizzazione… ({percentage}%)",
|
"synchronizingPleaseWaitCounter": " Sincronizzazione… ({percentage}%)",
|
||||||
|
|
@ -3332,14 +2920,8 @@
|
||||||
"@notSupportedOnThisDevice": {},
|
"@notSupportedOnThisDevice": {},
|
||||||
"enterNewChat": "Inizia nuova chat",
|
"enterNewChat": "Inizia nuova chat",
|
||||||
"@enterNewChat": {},
|
"@enterNewChat": {},
|
||||||
"setCustomPermissionLevel": "Imposta livello di permesso personalizzato",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"setPermissionsLevelDescription": "Scegli un ruolo predefinito qui sotto o inserisci un livello di permesso personalizzato tra 0 e 100.",
|
|
||||||
"@setPermissionsLevelDescription": {},
|
|
||||||
"ignoreUser": "Ignora utente",
|
"ignoreUser": "Ignora utente",
|
||||||
"@ignoreUser": {},
|
"@ignoreUser": {},
|
||||||
"normalUser": "Utente normale",
|
|
||||||
"@normalUser": {},
|
|
||||||
"commandHint_roomupgrade": "Aggiorna questa stanza alla versione specificata",
|
"commandHint_roomupgrade": "Aggiorna questa stanza alla versione specificata",
|
||||||
"@commandHint_roomupgrade": {},
|
"@commandHint_roomupgrade": {},
|
||||||
"optionalMessage": "Messaggio (opzionale)...",
|
"optionalMessage": "Messaggio (opzionale)...",
|
||||||
|
|
@ -3392,13 +2974,5 @@
|
||||||
"pause": "Pausa",
|
"pause": "Pausa",
|
||||||
"@pause": {},
|
"@pause": {},
|
||||||
"resume": "Riprendi",
|
"resume": "Riprendi",
|
||||||
"@resume": {},
|
"@resume": {}
|
||||||
"newSubSpace": "Nuovo sotto sapzio",
|
}
|
||||||
"@newSubSpace": {},
|
|
||||||
"moveToDifferentSpace": "Cambia spazio",
|
|
||||||
"@moveToDifferentSpace": {},
|
|
||||||
"moveUp": "Muoviti sopra",
|
|
||||||
"@moveUp": {},
|
|
||||||
"moveDown": "Muoviti sotto",
|
|
||||||
"@moveDown": {}
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -5,9 +5,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"appLockDescription": "პინკოდის გამოყენების გარეშე აპლიკაციის ბლოკირება",
|
"appLockDescription": "პინკოდის გამოყენების გარეშე აპლიკაციის ბლოკირება",
|
||||||
"@appLockDescription": {},
|
|
||||||
"commandHint_hug": "მეგობრული ჩახუტვის გაგზავნა",
|
"commandHint_hug": "მეგობრული ჩახუტვის გაგზავნა",
|
||||||
"@commandHint_hug": {},
|
|
||||||
"areYouSure": "დარწმუნებული ხართ?",
|
"areYouSure": "დარწმუნებული ხართ?",
|
||||||
"@areYouSure": {
|
"@areYouSure": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -60,7 +58,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sendOnEnter": "გაგზავნა enter-ის დაჭერისას",
|
"sendOnEnter": "გაგზავნა enter-ის დაჭერისას",
|
||||||
"@sendOnEnter": {},
|
|
||||||
"bannedUser": "{username} დაბლოკა {targetName}",
|
"bannedUser": "{username} დაბლოკა {targetName}",
|
||||||
"@bannedUser": {
|
"@bannedUser": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -83,11 +80,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "ბოტის შეტყობინებები",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "გაუქმება",
|
"cancel": "გაუქმება",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -134,7 +126,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"yourChatBackupHasBeenSetUp": "თქვენი ჩატის სარეზერვო საშუალება კონფიგურირებული იქნა.",
|
"yourChatBackupHasBeenSetUp": "თქვენი ჩატის სარეზერვო საშუალება კონფიგურირებული იქნა.",
|
||||||
"@yourChatBackupHasBeenSetUp": {},
|
|
||||||
"channelCorruptedDecryptError": "დაშიფვრა დაზიანდა",
|
"channelCorruptedDecryptError": "დაშიფვრა დაზიანდა",
|
||||||
"@channelCorruptedDecryptError": {
|
"@channelCorruptedDecryptError": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -175,16 +166,6 @@
|
||||||
},
|
},
|
||||||
"description": "State that {command} is not a valid /command."
|
"description": "State that {command} is not a valid /command."
|
||||||
},
|
},
|
||||||
"confirm": "დადასტურება",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "დაკავშირება",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"countParticipants": "{count} მონაწილე",
|
"countParticipants": "{count} მონაწილე",
|
||||||
"@countParticipants": {
|
"@countParticipants": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -195,7 +176,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"createGroup": "ჯგუფის შექმნა",
|
"createGroup": "ჯგუფის შექმნა",
|
||||||
"@createGroup": {},
|
|
||||||
"deactivateAccountWarning": "ეს გააუქმებს თქვენს ანგარიშს. ამის გაუქმება შეუძლებელია. დარწმუნებული ხართ?",
|
"deactivateAccountWarning": "ეს გააუქმებს თქვენს ანგარიშს. ამის გაუქმება შეუძლებელია. დარწმუნებული ხართ?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -212,7 +192,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatPermissions": "ჩატის უფლებები",
|
"chatPermissions": "ჩატის უფლებები",
|
||||||
"@chatPermissions": {},
|
|
||||||
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
||||||
"@dateAndTimeOfDay": {
|
"@dateAndTimeOfDay": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -240,22 +219,17 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"importNow": "იმპორტი",
|
"importNow": "დაიმპორტება",
|
||||||
"@importNow": {},
|
"importEmojis": "ემოჯის დაიმპორტება",
|
||||||
"importEmojis": "ემოჯის იმპორტი",
|
|
||||||
"@importEmojis": {},
|
|
||||||
"importFromZipFile": "იმპორტი .zip ფაილიდან",
|
"importFromZipFile": "იმპორტი .zip ფაილიდან",
|
||||||
"@importFromZipFile": {},
|
|
||||||
"exportEmotePack": "ემოციების .zip ფაილში ექსპორტი",
|
"exportEmotePack": "ემოციების .zip ფაილში ექსპორტი",
|
||||||
"@exportEmotePack": {},
|
|
||||||
"replace": "ჩანაცვლება",
|
"replace": "ჩანაცვლება",
|
||||||
"@replace": {},
|
|
||||||
"accept": "თანხმობა",
|
"accept": "თანხმობა",
|
||||||
"@accept": {
|
"@accept": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"acceptedTheInvitation": "👍 {username} მიიღო მოწვევა",
|
"acceptedTheInvitation": "👍 {username}-მ(ა) მიიღო მოწვევა",
|
||||||
"@acceptedTheInvitation": {
|
"@acceptedTheInvitation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -275,11 +249,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirmMatrixId": "გთხოვთ, დაადასტუროთ თქვენი Matrix ID ანგარიშის წაშლისათვის.",
|
"confirmMatrixId": "გთხოვთ, დაადასტუროთ თქვენი Matrix ID ანგარიშის წაშლისათვის.",
|
||||||
"@confirmMatrixId": {},
|
|
||||||
"addChatDescription": "ჩატის აღწერილობის დამატება...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"addToSpace": "სივრცეში დამატება",
|
"addToSpace": "სივრცეში დამატება",
|
||||||
"@addToSpace": {},
|
|
||||||
"admin": "ადმინი",
|
"admin": "ადმინი",
|
||||||
"@admin": {
|
"@admin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -296,7 +266,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"commandHint_cuddle": "ჩახუტების გაგზავნა",
|
"commandHint_cuddle": "ჩახუტების გაგზავნა",
|
||||||
"@commandHint_cuddle": {},
|
|
||||||
"answeredTheCall": "{senderName} უპასუხა ზარს",
|
"answeredTheCall": "{senderName} უპასუხა ზარს",
|
||||||
"@answeredTheCall": {
|
"@answeredTheCall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -322,7 +291,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"commandHint_googly": "გამოშტერილი თვალების გაგზავნა",
|
"commandHint_googly": "გამოშტერილი თვალების გაგზავნა",
|
||||||
"@commandHint_googly": {},
|
|
||||||
"googlyEyesContent": "{senderName} გამოშტერილ თვალებს გიგზავნის",
|
"googlyEyesContent": "{senderName} გამოშტერილ თვალებს გიგზავნის",
|
||||||
"@googlyEyesContent": {
|
"@googlyEyesContent": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -341,7 +309,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"areGuestsAllowedToJoin": "შეუძლიათ თუ არა სტუმარ მომხმარებლებს გაწევრიანება",
|
"areGuestsAllowedToJoin": "შეუძლიათ სტუმარ მომხმარებლებს გაწევრება?",
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -356,7 +324,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sendTypingNotifications": "წერის შეტყობინების გაგზავნა",
|
"sendTypingNotifications": "წერის შეტყობინების გაგზავნა",
|
||||||
"@sendTypingNotifications": {},
|
|
||||||
"cantOpenUri": "ვერ იხსნება ბმული {uri}",
|
"cantOpenUri": "ვერ იხსნება ბმული {uri}",
|
||||||
"@cantOpenUri": {
|
"@cantOpenUri": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -503,8 +470,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "ჩატი დაემატა ამ სივრცეს",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "ჩატები",
|
"chats": "ჩატები",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -516,14 +481,12 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"clearArchive": "არქივის გაწმენდა",
|
"clearArchive": "არქივის გაწმენდა",
|
||||||
"@clearArchive": {},
|
|
||||||
"close": "დახურვა",
|
"close": "დახურვა",
|
||||||
"@close": {
|
"@close": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"commandHint_markasgroup": "აღნიშვნა, როგორც ჯგუფის",
|
"commandHint_markasgroup": "აღნიშვნა, როგორც ჯგუფის",
|
||||||
"@commandHint_markasgroup": {},
|
|
||||||
"commandHint_ban": "მოცემული მომხმარებლის ბლოკირება ამ ოთახში",
|
"commandHint_ban": "მოცემული მომხმარებლის ბლოკირება ამ ოთახში",
|
||||||
"@commandHint_ban": {
|
"@commandHint_ban": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -583,11 +546,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsUserName": "შეიცავს სახელს",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"copiedToClipboard": "კოპირებულია ბუფერში",
|
"copiedToClipboard": "კოპირებულია ბუფერში",
|
||||||
"@copiedToClipboard": {
|
"@copiedToClipboard": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -636,33 +594,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}-{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}-{month}-{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"delete": "წაშლა",
|
"delete": "წაშლა",
|
||||||
"@delete": {
|
"@delete": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -693,11 +624,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"allRooms": "ყველა ჯგუფური ჩატები",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"downloadFile": "ფაილის ჩატვირთვა",
|
"downloadFile": "ფაილის ჩატვირთვა",
|
||||||
"@downloadFile": {
|
"@downloadFile": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -724,17 +650,14 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"globalChatId": "გლობალური ჩატის ID",
|
"globalChatId": "გლობალური ჩატის ID",
|
||||||
"@globalChatId": {},
|
|
||||||
"repeatPassword": "გაიმეორეთ პაროლი",
|
"repeatPassword": "გაიმეორეთ პაროლი",
|
||||||
"@repeatPassword": {},
|
|
||||||
"notAnImage": "ფაილი არაა სურათი.",
|
"notAnImage": "ფაილი არაა სურათი.",
|
||||||
"@notAnImage": {},
|
|
||||||
"remove": "წაშლა",
|
"remove": "წაშლა",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"activatedEndToEndEncryption": "🔐 {username} გააქტიურა end to end დაშიფვრა",
|
"activatedEndToEndEncryption": "🔐 {username}-მ(ა) გააქტიურა end to end დაშიფვრა",
|
||||||
"@activatedEndToEndEncryption": {
|
"@activatedEndToEndEncryption": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -804,11 +727,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /react"
|
"description": "Usage hint for the command /react"
|
||||||
},
|
},
|
||||||
"containsDisplayName": "ნაჩვენებ სახელს შეიცავს",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "ეს კონტენტი გაგზავნილ იქნა სერვერის ადმინისტრატორებთან",
|
"contentHasBeenReported": "ეს კონტენტი გაგზავნილ იქნა სერვერის ადმინისტრატორებთან",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -828,5 +746,15 @@
|
||||||
"@editDisplayname": {
|
"@editDisplayname": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
},
|
||||||
|
"ignoreUser": "დაიგნორება",
|
||||||
|
"aboutHomeserver": "{homeserver}-ის შესახებ",
|
||||||
|
"@aboutHomeserver": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"homeserver": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
2191
lib/l10n/intl_kab.arb
Normal file
2191
lib/l10n/intl_kab.arb
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -88,11 +88,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "라이선스",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"help": "도움",
|
"help": "도움",
|
||||||
"@help": {
|
"@help": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -118,11 +113,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "새로운 방 가기",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fromTheInvitation": "초대받은 후부터",
|
"fromTheInvitation": "초대받은 후부터",
|
||||||
"@fromTheInvitation": {
|
"@fromTheInvitation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -163,11 +153,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "당신의 홈서버를 입력하세요",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"homeserver": "홈서버",
|
"homeserver": "홈서버",
|
||||||
"@homeserver": {},
|
"@homeserver": {},
|
||||||
"enterAnEmailAddress": "이메일 주소 입력",
|
"enterAnEmailAddress": "이메일 주소 입력",
|
||||||
|
|
@ -219,11 +204,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "이모트 단축키와 이미지를 골라야 합니다!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emoteShortcode": "이모트 단축키",
|
"emoteShortcode": "이모트 단축키",
|
||||||
"@emoteShortcode": {
|
"@emoteShortcode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -381,31 +361,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsUserName": "내 아이디 포함",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsDisplayName": "내 닉네임 포함",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "연락처가 채팅에 초대되었습니다",
|
"contactHasBeenInvitedToTheGroup": "연락처가 채팅에 초대되었습니다",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"connect": "연결",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"confirm": "확인",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"configureChat": "채팅 설정",
|
"configureChat": "채팅 설정",
|
||||||
"@configureChat": {
|
"@configureChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -477,8 +437,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "이 스페이스에 채팅이 추가되었습니다",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chatDetails": "채팅 정보",
|
"chatDetails": "채팅 정보",
|
||||||
"@chatDetails": {
|
"@chatDetails": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -683,11 +641,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "봇 메시지",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"blocked": "차단됨",
|
"blocked": "차단됨",
|
||||||
"@blocked": {
|
"@blocked": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -720,18 +673,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "이 홈서버가 지원하는 Spec 버전:\n{serverVersions}\n하지만 이 앱은 {supportedVersions}만 지원합니다",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendOnEnter": "엔터로 보내기",
|
"sendOnEnter": "엔터로 보내기",
|
||||||
"@sendOnEnter": {},
|
"@sendOnEnter": {},
|
||||||
"badServerLoginTypesException": "홈서버가 지원하는 로그인 유형:\n{serverVersions}\n하지만 이 앱에서 지원하는 것은:\n{supportedVersions}",
|
"badServerLoginTypesException": "홈서버가 지원하는 로그인 유형:\n{serverVersions}\n하지만 이 앱에서 지원하는 것은:\n{supportedVersions}",
|
||||||
|
|
@ -849,11 +790,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "신원",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"id": "ID",
|
"id": "ID",
|
||||||
"@id": {
|
"@id": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -919,33 +855,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{year}-{month}-{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
||||||
"@dateAndTimeOfDay": {
|
"@dateAndTimeOfDay": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1008,11 +917,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "배경:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"waitingPartnerNumbers": "상대가 숫자를 수락하길 기다리는 중…",
|
"waitingPartnerNumbers": "상대가 숫자를 수락하길 기다리는 중…",
|
||||||
"@waitingPartnerNumbers": {
|
"@waitingPartnerNumbers": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1226,11 +1130,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "이 계정에서 알림이 활성화되었습니다",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"notifications": "알림",
|
"notifications": "알림",
|
||||||
"@notifications": {
|
"@notifications": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1324,15 +1223,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{읽지 않은 채팅 1} other{{unreadCount} 개}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"unavailable": "사용할 수 없음",
|
"unavailable": "사용할 수 없음",
|
||||||
"@unavailable": {
|
"@unavailable": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1426,21 +1316,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleUnread": "메시지 안/읽음 으로 표시",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "음소거 토글",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleFavorite": "즐겨찾기 토글",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"title": "FluffyChat",
|
"title": "FluffyChat",
|
||||||
"@title": {
|
"@title": {
|
||||||
"description": "Title for the application",
|
"description": "Title for the application",
|
||||||
|
|
@ -1501,11 +1376,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "단일 계정 로그인(SSO)",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pushRules": "푸시 규칙",
|
"pushRules": "푸시 규칙",
|
||||||
"@pushRules": {
|
"@pushRules": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1535,11 +1405,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "선택해주세요",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"play": "{fileName} 재생",
|
"play": "{fileName} 재생",
|
||||||
"@play": {
|
"@play": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1549,11 +1414,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"people": "사람들",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"passwordHasBeenChanged": "비밀번호가 변경됨",
|
"passwordHasBeenChanged": "비밀번호가 변경됨",
|
||||||
"@passwordHasBeenChanged": {
|
"@passwordHasBeenChanged": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1633,11 +1493,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "참가자 변경",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"loadingPleaseWait": "로딩 중... 기다려 주세요.",
|
"loadingPleaseWait": "로딩 중... 기다려 주세요.",
|
||||||
"@loadingPleaseWait": {
|
"@loadingPleaseWait": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1697,21 +1552,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setPermissionsLevel": "권한 레벨 설정",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "초대 링크 설정",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setCustomEmotes": "맞춤 이모트 설정",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "주 별명으로 설정",
|
"setAsCanonicalAlias": "주 별명으로 설정",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1735,11 +1575,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sendOriginal": "원본 보내기",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendMessages": "메시지 보내기",
|
"sendMessages": "메시지 보내기",
|
||||||
"@sendMessages": {
|
"@sendMessages": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1774,15 +1609,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "{username}님이 읽음",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"security": "보안",
|
"security": "보안",
|
||||||
"@security": {
|
"@security": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1879,11 +1705,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"inviteForMe": "초대됨",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"invitedUsersOnly": "초대된 유저만",
|
"invitedUsersOnly": "초대된 유저만",
|
||||||
"@invitedUsersOnly": {
|
"@invitedUsersOnly": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1976,11 +1797,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "스티커 보내기",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reportMessage": "메시지 신고",
|
"reportMessage": "메시지 신고",
|
||||||
"@reportMessage": {
|
"@reportMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2006,11 +1822,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"removeDevice": "기기 삭제",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"removedBy": "{username}에 의해 지워짐",
|
"removedBy": "{username}에 의해 지워짐",
|
||||||
"@removedBy": {
|
"@removedBy": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2030,11 +1841,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"rejoin": "다시 참가",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"rejectedTheInvitation": "{username}님이 초대를 거절함",
|
"rejectedTheInvitation": "{username}님이 초대를 거절함",
|
||||||
"@rejectedTheInvitation": {
|
"@rejectedTheInvitation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2129,8 +1935,6 @@
|
||||||
"@start": {},
|
"@start": {},
|
||||||
"removeFromSpace": "스페이스에서 삭제",
|
"removeFromSpace": "스페이스에서 삭제",
|
||||||
"@removeFromSpace": {},
|
"@removeFromSpace": {},
|
||||||
"addToSpaceDescription": "이 채팅을 추가할 스페이스를 선택하세요.",
|
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"commandHint_discardsession": "세션 삭제",
|
"commandHint_discardsession": "세션 삭제",
|
||||||
"@commandHint_discardsession": {
|
"@commandHint_discardsession": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2151,22 +1955,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /create"
|
"description": "Usage hint for the command /create"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "영상용 카메라 열기",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"publish": "공개",
|
|
||||||
"@publish": {},
|
|
||||||
"videoWithSize": "영상 ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dismiss": "닫기",
|
"dismiss": "닫기",
|
||||||
"@dismiss": {},
|
"@dismiss": {},
|
||||||
"markAsRead": "읽음으로 표시하기",
|
"markAsRead": "읽음으로 표시하기",
|
||||||
|
|
@ -2205,8 +1993,6 @@
|
||||||
"@unsupportedAndroidVersionLong": {},
|
"@unsupportedAndroidVersionLong": {},
|
||||||
"videoCallsBetaWarning": "영상 통화는 베타임을 확인해주세요. 의도한 대로 작동하지 않거나 모든 플랫폼에서 작동하지 않을 수 있습니다.",
|
"videoCallsBetaWarning": "영상 통화는 베타임을 확인해주세요. 의도한 대로 작동하지 않거나 모든 플랫폼에서 작동하지 않을 수 있습니다.",
|
||||||
"@videoCallsBetaWarning": {},
|
"@videoCallsBetaWarning": {},
|
||||||
"emailOrUsername": "이메일이나 유저 이름",
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"confirmMatrixId": "계정을 삭제하려면 Matrix ID를 입력해 주세요.",
|
"confirmMatrixId": "계정을 삭제하려면 Matrix ID를 입력해 주세요.",
|
||||||
"@confirmMatrixId": {},
|
"@confirmMatrixId": {},
|
||||||
"commandHint_googly": "왕눈이 눈알 보내기",
|
"commandHint_googly": "왕눈이 눈알 보내기",
|
||||||
|
|
@ -2237,29 +2023,12 @@
|
||||||
},
|
},
|
||||||
"jumpToLastReadMessage": "마지막으로 읽은 메시지로 이동",
|
"jumpToLastReadMessage": "마지막으로 읽은 메시지로 이동",
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"allRooms": "모든 그룹 채팅",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"commandHint_cuddle": "미소 보내기",
|
"commandHint_cuddle": "미소 보내기",
|
||||||
"@commandHint_cuddle": {},
|
"@commandHint_cuddle": {},
|
||||||
"widgetVideo": "영상",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"reportErrorDescription": "😭 이런. 무언가 잘못되었습니다. 원한다면, 개발자에게 버그를 신고할 수 있습니다.",
|
"reportErrorDescription": "😭 이런. 무언가 잘못되었습니다. 원한다면, 개발자에게 버그를 신고할 수 있습니다.",
|
||||||
"@reportErrorDescription": {},
|
"@reportErrorDescription": {},
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"@widgetJitsi": {},
|
|
||||||
"indexedDbErrorLong": "메시지 저장은 기본적으로 사생활 보호 모드에서 사용할 수 없습니다.\n- about:config 로 이동\n- dom.indexedDB.privateBrowsing.enabled 를 true로 설정\n그렇지 않으면 FluffyChat을 실행할 수 없습니다.",
|
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"startFirstChat": "첫 번째 채팅을 시작하기",
|
|
||||||
"@startFirstChat": {},
|
|
||||||
"callingAccount": "통화 계정",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"setColorTheme": "색상 테마 설정:",
|
"setColorTheme": "색상 테마 설정:",
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"nextAccount": "다음 계정",
|
|
||||||
"@nextAccount": {},
|
|
||||||
"allSpaces": "모든 스페이스",
|
"allSpaces": "모든 스페이스",
|
||||||
"@allSpaces": {},
|
"@allSpaces": {},
|
||||||
"supposedMxid": "{mxid} 이어야 함",
|
"supposedMxid": "{mxid} 이어야 함",
|
||||||
|
|
@ -2285,15 +2054,8 @@
|
||||||
},
|
},
|
||||||
"banUserDescription": "유저는 채팅에서 영구 추방되며 추방 해제 전까지 채팅을 다시 입력할 수 없습니다.",
|
"banUserDescription": "유저는 채팅에서 영구 추방되며 추방 해제 전까지 채팅을 다시 입력할 수 없습니다.",
|
||||||
"@banUserDescription": {},
|
"@banUserDescription": {},
|
||||||
"widgetEtherpad": "텍스트 메모",
|
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"removeDevicesDescription": "이 기기에서 로그아웃되며 더 이상 메시지를 받을 수 없습니다.",
|
"removeDevicesDescription": "이 기기에서 로그아웃되며 더 이상 메시지를 받을 수 없습니다.",
|
||||||
"@removeDevicesDescription": {},
|
"@removeDevicesDescription": {},
|
||||||
"separateChatTypes": "다이렉트 채팅과 그룹 채팅 분리",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tryAgain": "다시 시도하기",
|
"tryAgain": "다시 시도하기",
|
||||||
"@tryAgain": {},
|
"@tryAgain": {},
|
||||||
"youKickedAndBanned": "🙅 {user}님을 영구 추방했습니다",
|
"youKickedAndBanned": "🙅 {user}님을 영구 추방했습니다",
|
||||||
|
|
@ -2308,32 +2070,16 @@
|
||||||
"@unbanUserDescription": {},
|
"@unbanUserDescription": {},
|
||||||
"youRejectedTheInvitation": "초대를 거부했습니다",
|
"youRejectedTheInvitation": "초대를 거부했습니다",
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"otherCallingPermissions": "마이크, 카메라 그리고 다름 FluffyChat 권한",
|
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"messagesStyle": "메세지:",
|
"messagesStyle": "메세지:",
|
||||||
"@messagesStyle": {},
|
"@messagesStyle": {},
|
||||||
"widgetUrlError": "유효한 URL이 아닙니다.",
|
|
||||||
"@widgetUrlError": {},
|
|
||||||
"newSpaceDescription": "스페이스를 사용하면 채팅을 통합하고 비공개 또는 공개 커뮤니티를 구축할 수 있습니다.",
|
"newSpaceDescription": "스페이스를 사용하면 채팅을 통합하고 비공개 또는 공개 커뮤니티를 구축할 수 있습니다.",
|
||||||
"@newSpaceDescription": {},
|
"@newSpaceDescription": {},
|
||||||
"chatDescription": "채팅 설명",
|
"chatDescription": "채팅 설명",
|
||||||
"@chatDescription": {},
|
"@chatDescription": {},
|
||||||
"callingAccountDetails": "FluffyChat이 android 전화앱을 사용 할 수 있도록 허가.",
|
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"enterSpace": "스페이스에 입장",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"encryptThisChat": "이 채팅을 암호화",
|
"encryptThisChat": "이 채팅을 암호화",
|
||||||
"@encryptThisChat": {},
|
"@encryptThisChat": {},
|
||||||
"previousAccount": "이전 계정",
|
|
||||||
"@previousAccount": {},
|
|
||||||
"reopenChat": "채팅 다시 열기",
|
"reopenChat": "채팅 다시 열기",
|
||||||
"@reopenChat": {},
|
"@reopenChat": {},
|
||||||
"pleaseEnterRecoveryKey": "당신의 복구키를 입력하세요:",
|
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"widgetNameError": "표시 이름을 입력하세요.",
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"addWidget": "위젯 추가",
|
|
||||||
"@addWidget": {},
|
|
||||||
"countFiles": "{count}개의 파일",
|
"countFiles": "{count}개의 파일",
|
||||||
"@countFiles": {
|
"@countFiles": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2344,8 +2090,6 @@
|
||||||
},
|
},
|
||||||
"noKeyForThisMessage": "이것은 이 메시지가 당신이 이 기기를 서명하기 전에 발송되었기 때문에 일어났을 수 있습니다.\n\n이것은 또한 발송자가 당신의 기기를 차단하였거나 혹은 인터넷 연결이 잘못되었을 수 있습니다.\n\n다른 세션에서 이 메시지를 읽을 수 있나요? 그렇다면 그 메시지를 옮길 수 있습니다! 설정 > 기기로 가서 기기를 서로 증명하세요. 다음번에 방을 열었을 때 두 세션이 모두 작동중이라면, 키가 자동으로 옮겨질것입니다.\n\n로그아웃하거나 기기를 바꿀 때 키를 잃고싶지 않으신가요? 설정에서 채팅 백업을 사용중인지 확인하세요.",
|
"noKeyForThisMessage": "이것은 이 메시지가 당신이 이 기기를 서명하기 전에 발송되었기 때문에 일어났을 수 있습니다.\n\n이것은 또한 발송자가 당신의 기기를 차단하였거나 혹은 인터넷 연결이 잘못되었을 수 있습니다.\n\n다른 세션에서 이 메시지를 읽을 수 있나요? 그렇다면 그 메시지를 옮길 수 있습니다! 설정 > 기기로 가서 기기를 서로 증명하세요. 다음번에 방을 열었을 때 두 세션이 모두 작동중이라면, 키가 자동으로 옮겨질것입니다.\n\n로그아웃하거나 기기를 바꿀 때 키를 잃고싶지 않으신가요? 설정에서 채팅 백업을 사용중인지 확인하세요.",
|
||||||
"@noKeyForThisMessage": {},
|
"@noKeyForThisMessage": {},
|
||||||
"hydrateTor": "TOR 사용자: 내보낸 세션 불러오기",
|
|
||||||
"@hydrateTor": {},
|
|
||||||
"pushNotificationsNotAvailable": "푸시 알림 사용 불가",
|
"pushNotificationsNotAvailable": "푸시 알림 사용 불가",
|
||||||
"@pushNotificationsNotAvailable": {},
|
"@pushNotificationsNotAvailable": {},
|
||||||
"storeInAppleKeyChain": "Apple KeyChain에 저장하기",
|
"storeInAppleKeyChain": "Apple KeyChain에 저장하기",
|
||||||
|
|
@ -2358,8 +2102,6 @@
|
||||||
"@chatPermissions": {},
|
"@chatPermissions": {},
|
||||||
"storeInAndroidKeystore": "Android KeyStore에 저장하기",
|
"storeInAndroidKeystore": "Android KeyStore에 저장하기",
|
||||||
"@storeInAndroidKeystore": {},
|
"@storeInAndroidKeystore": {},
|
||||||
"signInWithPassword": "비밀번호로 로그인",
|
|
||||||
"@signInWithPassword": {},
|
|
||||||
"makeAdminDescription": "유저를 한 번 관리자로 만들면, 당신과 같은 권한을 가지기때문에 권한 회수가 불가능합니다.",
|
"makeAdminDescription": "유저를 한 번 관리자로 만들면, 당신과 같은 권한을 가지기때문에 권한 회수가 불가능합니다.",
|
||||||
"@makeAdminDescription": {},
|
"@makeAdminDescription": {},
|
||||||
"saveKeyManuallyDescription": "공유나 클립보드를 이용해 수동으로 키를 저장합니다.",
|
"saveKeyManuallyDescription": "공유나 클립보드를 이용해 수동으로 키를 저장합니다.",
|
||||||
|
|
@ -2381,51 +2123,20 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"signInWith": "{provider}로 로그인",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"fileIsTooBigForServer": "전송에 실패했습니다. 서버는 {max}가 넘는 파일을 지원하지 않습니다.",
|
"fileIsTooBigForServer": "전송에 실패했습니다. 서버는 {max}가 넘는 파일을 지원하지 않습니다.",
|
||||||
"@fileIsTooBigForServer": {},
|
"@fileIsTooBigForServer": {},
|
||||||
"callingPermissions": "통화 권한",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"readUpToHere": "여기까지 읽음",
|
"readUpToHere": "여기까지 읽음",
|
||||||
"@readUpToHere": {},
|
"@readUpToHere": {},
|
||||||
"unlockOldMessages": "오래된 메시지 잠금 해제하기",
|
"unlockOldMessages": "오래된 메시지 잠금 해제하기",
|
||||||
"@unlockOldMessages": {},
|
"@unlockOldMessages": {},
|
||||||
"numChats": "{number}개의 채팅",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"optionalRedactReason": "(선택) 이 메시지를 편집하는 이유...",
|
"optionalRedactReason": "(선택) 이 메시지를 편집하는 이유...",
|
||||||
"@optionalRedactReason": {},
|
"@optionalRedactReason": {},
|
||||||
"archiveRoomDescription": "채팅이 보관함으로 이동합니다. 다른 유저들은 당신이 떠난다는것을 볼 수 있습니다.",
|
"archiveRoomDescription": "채팅이 보관함으로 이동합니다. 다른 유저들은 당신이 떠난다는것을 볼 수 있습니다.",
|
||||||
"@archiveRoomDescription": {},
|
"@archiveRoomDescription": {},
|
||||||
"exportEmotePack": ".zip 파일로 이모트 내보내기",
|
"exportEmotePack": ".zip 파일로 이모트 내보내기",
|
||||||
"@exportEmotePack": {},
|
"@exportEmotePack": {},
|
||||||
"switchToAccount": "계정 {number}로 전환",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"pleaseEnterRecoveryKeyDescription": "오래된 메시지를 잠금 해제하려면, 이전 세션에서 생성된 복호화 키를 입력하세요. 복호화 키는 비밀번호가 아닙니다.",
|
"pleaseEnterRecoveryKeyDescription": "오래된 메시지를 잠금 해제하려면, 이전 세션에서 생성된 복호화 키를 입력하세요. 복호화 키는 비밀번호가 아닙니다.",
|
||||||
"@pleaseEnterRecoveryKeyDescription": {},
|
"@pleaseEnterRecoveryKeyDescription": {},
|
||||||
"inviteContactToGroupQuestion": "{contact} 를 \"{groupName}\"에 초대할까요?",
|
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"redactedByBecause": "{username}님이 삭제함. 사유: \"{reason}\"",
|
"redactedByBecause": "{username}님이 삭제함. 사유: \"{reason}\"",
|
||||||
"@redactedByBecause": {
|
"@redactedByBecause": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2446,10 +2157,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"appearOnTopDetails": "앱이 상단에 표시되도록 허용 (이미 FluffyChat을 통화 계정으로 설정한 경우에는 필요하지 않음)",
|
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"enterRoom": "방에 입장",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"youInvitedUser": "📩 {user}님을 초대했습니다",
|
"youInvitedUser": "📩 {user}님을 초대했습니다",
|
||||||
"@youInvitedUser": {
|
"@youInvitedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2473,18 +2180,12 @@
|
||||||
"@recoveryKey": {},
|
"@recoveryKey": {},
|
||||||
"invalidInput": "잘못된 입력!",
|
"invalidInput": "잘못된 입력!",
|
||||||
"@invalidInput": {},
|
"@invalidInput": {},
|
||||||
"dehydrateTorLong": "TOR 사용자들은 창을 닫기 전에 세션을 내보내는것이 권장됩니다.",
|
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"doNotShowAgain": "다시 보지 않기",
|
"doNotShowAgain": "다시 보지 않기",
|
||||||
"@doNotShowAgain": {},
|
"@doNotShowAgain": {},
|
||||||
"report": "신고",
|
"report": "신고",
|
||||||
"@report": {},
|
"@report": {},
|
||||||
"hideUnimportantStateEvents": "중요하지 않은 상태 이벤트 숨기기",
|
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"screenSharingTitle": "화면 공유",
|
"screenSharingTitle": "화면 공유",
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"widgetCustom": "사용자 정의",
|
|
||||||
"@widgetCustom": {},
|
|
||||||
"youBannedUser": "{user}님을 영구 추방함",
|
"youBannedUser": "{user}님을 영구 추방함",
|
||||||
"@youBannedUser": {
|
"@youBannedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2493,8 +2194,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addChatDescription": "채팅 설명 추가하기...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"hasKnocked": "🚪 {user}님이 참가를 요청했습니다",
|
"hasKnocked": "🚪 {user}님이 참가를 요청했습니다",
|
||||||
"@hasKnocked": {
|
"@hasKnocked": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2522,10 +2221,6 @@
|
||||||
"@sendTypingNotifications": {},
|
"@sendTypingNotifications": {},
|
||||||
"inviteGroupChat": "📨 그룹 채팅에 초대",
|
"inviteGroupChat": "📨 그룹 채팅에 초대",
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"appearOnTop": "상단에 표시",
|
|
||||||
"@appearOnTop": {},
|
|
||||||
"invitePrivateChat": "📨 비공개 채팅에 초대",
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"foregroundServiceRunning": "이 알림은 백그라운드 서비스가 실행중일때 표시됩니다.",
|
"foregroundServiceRunning": "이 알림은 백그라운드 서비스가 실행중일때 표시됩니다.",
|
||||||
"@foregroundServiceRunning": {},
|
"@foregroundServiceRunning": {},
|
||||||
"importEmojis": "이모지 불러오기",
|
"importEmojis": "이모지 불러오기",
|
||||||
|
|
@ -2551,8 +2246,6 @@
|
||||||
"@chatDescriptionHasBeenChanged": {},
|
"@chatDescriptionHasBeenChanged": {},
|
||||||
"newGroup": "새 그룹 채팅",
|
"newGroup": "새 그룹 채팅",
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"dehydrateTor": "TOR 사용자: 세션 내보내기",
|
|
||||||
"@dehydrateTor": {},
|
|
||||||
"roomUpgradeDescription": "채팅이 새로운 방 버전으로 다시 생성됩니다. 모든 참가자는 새로운 채팅으로 전환해야합니다. https://spec.matrix.org/latest/rooms/ 에서 방 버전에 대해 자세히 알아볼 수 있습니다.",
|
"roomUpgradeDescription": "채팅이 새로운 방 버전으로 다시 생성됩니다. 모든 참가자는 새로운 채팅으로 전환해야합니다. https://spec.matrix.org/latest/rooms/ 에서 방 버전에 대해 자세히 알아볼 수 있습니다.",
|
||||||
"@roomUpgradeDescription": {},
|
"@roomUpgradeDescription": {},
|
||||||
"pleaseEnterANumber": "0보다 큰 숫자를 입력하세요",
|
"pleaseEnterANumber": "0보다 큰 숫자를 입력하세요",
|
||||||
|
|
@ -2565,8 +2258,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"profileNotFound": "유저를 서버에서 찾을 수 있습니다. 연결 문제가 있거나 유저가 존재하지 않을 수 있습니다.",
|
|
||||||
"@profileNotFound": {},
|
|
||||||
"jump": "점프",
|
"jump": "점프",
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"sorryThatsNotPossible": "죄송합니다...그것은 불가능합니다",
|
"sorryThatsNotPossible": "죄송합니다...그것은 불가능합니다",
|
||||||
|
|
@ -2593,14 +2284,8 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setTheme": "테마 설정:",
|
|
||||||
"@setTheme": {},
|
|
||||||
"youJoinedTheChat": "채팅에 참가하였습니다",
|
"youJoinedTheChat": "채팅에 참가하였습니다",
|
||||||
"@youJoinedTheChat": {},
|
"@youJoinedTheChat": {},
|
||||||
"widgetName": "이름",
|
|
||||||
"@widgetName": {},
|
|
||||||
"errorAddingWidget": "위젯 추가중 오류 발생.",
|
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"commandHint_hug": "허그 보내기",
|
"commandHint_hug": "허그 보내기",
|
||||||
"@commandHint_hug": {},
|
"@commandHint_hug": {},
|
||||||
"replace": "대체",
|
"replace": "대체",
|
||||||
|
|
@ -2615,12 +2300,8 @@
|
||||||
},
|
},
|
||||||
"newSpace": "새 스페이스",
|
"newSpace": "새 스페이스",
|
||||||
"@newSpace": {},
|
"@newSpace": {},
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "나중에 다시 시도하거나 다른 서버를 선택하십시오.",
|
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"createGroup": "새 그룹 채팅",
|
"createGroup": "새 그룹 채팅",
|
||||||
"@createGroup": {},
|
"@createGroup": {},
|
||||||
"hydrateTorLong": "지난 TOR 이용에서 세션을 내보내셨나요? 빠르게 불러오고 채팅을 계속하세요.",
|
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"custom": "커스텀",
|
"custom": "커스텀",
|
||||||
"@custom": {},
|
"@custom": {},
|
||||||
"noBackupWarning": "경고! 채팅 백업을 켜지 않을경우, 당신은 암호화된 메시지에 대한 접근권한을 잃을것 입니다. 로그아웃 하기 전에 채팅을 백업하는것이 강력히 권장됩니다.",
|
"noBackupWarning": "경고! 채팅 백업을 켜지 않을경우, 당신은 암호화된 메시지에 대한 접근권한을 잃을것 입니다. 로그아웃 하기 전에 채팅을 백업하는것이 강력히 권장됩니다.",
|
||||||
|
|
@ -2633,8 +2314,6 @@
|
||||||
"@importNow": {},
|
"@importNow": {},
|
||||||
"invite": "초대",
|
"invite": "초대",
|
||||||
"@invite": {},
|
"@invite": {},
|
||||||
"indexedDbErrorTitle": "사생활 보호 모드의 문제",
|
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"storeSecurlyOnThisDevice": "이 기기에 안전하게 저장",
|
"storeSecurlyOnThisDevice": "이 기기에 안전하게 저장",
|
||||||
"@storeSecurlyOnThisDevice": {},
|
"@storeSecurlyOnThisDevice": {},
|
||||||
"screenSharingDetail": "FluffyChat에 당신의 화면을 공유하는중",
|
"screenSharingDetail": "FluffyChat에 당신의 화면을 공유하는중",
|
||||||
|
|
@ -2653,24 +2332,12 @@
|
||||||
"@pleaseChooseAStrongPassword": {},
|
"@pleaseChooseAStrongPassword": {},
|
||||||
"addChatOrSubSpace": "채팅 또는 하위 스페이스 추가",
|
"addChatOrSubSpace": "채팅 또는 하위 스페이스 추가",
|
||||||
"@addChatOrSubSpace": {},
|
"@addChatOrSubSpace": {},
|
||||||
"subspace": "하위 스페이스",
|
|
||||||
"@subspace": {},
|
|
||||||
"youInvitedToBy": "📩 링크를 통해 초대되셨습니다:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"databaseMigrationBody": "잠시만 기다리세요. 시간이 걸릴 수 있습니다.",
|
"databaseMigrationBody": "잠시만 기다리세요. 시간이 걸릴 수 있습니다.",
|
||||||
"@databaseMigrationBody": {},
|
"@databaseMigrationBody": {},
|
||||||
"select": "선택",
|
"select": "선택",
|
||||||
"@select": {},
|
"@select": {},
|
||||||
"joinSpace": "스페이스 참가",
|
"joinSpace": "스페이스 참가",
|
||||||
"@joinSpace": {},
|
"@joinSpace": {},
|
||||||
"decline": "거절",
|
|
||||||
"@decline": {},
|
|
||||||
"formattedMessagesDescription": "마크다운을 이용한 볼드등의 서식이 있는 메시지를 봅니다.",
|
"formattedMessagesDescription": "마크다운을 이용한 볼드등의 서식이 있는 메시지를 봅니다.",
|
||||||
"@formattedMessagesDescription": {},
|
"@formattedMessagesDescription": {},
|
||||||
"completedKeyVerification": "{sender}가 키 검증을 완료함",
|
"completedKeyVerification": "{sender}가 키 검증을 완료함",
|
||||||
|
|
@ -2697,8 +2364,6 @@
|
||||||
"@passwordsDoNotMatch": {},
|
"@passwordsDoNotMatch": {},
|
||||||
"passwordIsWrong": "비밀번호가 틀립니다",
|
"passwordIsWrong": "비밀번호가 틀립니다",
|
||||||
"@passwordIsWrong": {},
|
"@passwordIsWrong": {},
|
||||||
"publicLink": "공개 링크",
|
|
||||||
"@publicLink": {},
|
|
||||||
"thisDevice": "이 기기:",
|
"thisDevice": "이 기기:",
|
||||||
"@thisDevice": {},
|
"@thisDevice": {},
|
||||||
"sendReadReceipts": "읽음 확인 보내기",
|
"sendReadReceipts": "읽음 확인 보내기",
|
||||||
|
|
@ -2753,11 +2418,6 @@
|
||||||
"@commandHint_unignore": {},
|
"@commandHint_unignore": {},
|
||||||
"blockListDescription": "당신은 당신을 방해하는 유저들을 차단할 수 있습니다. 당신은 당신의 개인 차단 목록에 있는 어떠한 유저의 메시지와 방 초대도 받지 않을것 입니다.",
|
"blockListDescription": "당신은 당신을 방해하는 유저들을 차단할 수 있습니다. 당신은 당신의 개인 차단 목록에 있는 어떠한 유저의 메시지와 방 초대도 받지 않을것 입니다.",
|
||||||
"@blockListDescription": {},
|
"@blockListDescription": {},
|
||||||
"presenceStyle": "상태:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sessionLostBody": "세션을 잃었습니다. {url} 에서 개발자에게 오류를 신고하세요. 오류 메시지는 다음과 같습니다: {error}",
|
"sessionLostBody": "세션을 잃었습니다. {url} 에서 개발자에게 오류를 신고하세요. 오류 메시지는 다음과 같습니다: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2783,8 +2443,6 @@
|
||||||
},
|
},
|
||||||
"nothingFound": "아무것도 찾지 못했습니다...",
|
"nothingFound": "아무것도 찾지 못했습니다...",
|
||||||
"@nothingFound": {},
|
"@nothingFound": {},
|
||||||
"startConversation": "대화 시작",
|
|
||||||
"@startConversation": {},
|
|
||||||
"databaseMigrationTitle": "데이터베이스가 최적화됨",
|
"databaseMigrationTitle": "데이터베이스가 최적화됨",
|
||||||
"@databaseMigrationTitle": {},
|
"@databaseMigrationTitle": {},
|
||||||
"pleaseEnterYourCurrentPassword": "현재 비밀번호 입력",
|
"pleaseEnterYourCurrentPassword": "현재 비밀번호 입력",
|
||||||
|
|
@ -2793,31 +2451,10 @@
|
||||||
"@publicSpaces": {},
|
"@publicSpaces": {},
|
||||||
"initAppError": "앱 초기화중 오류 발생",
|
"initAppError": "앱 초기화중 오류 발생",
|
||||||
"@initAppError": {},
|
"@initAppError": {},
|
||||||
"databaseBuildErrorBody": "SQlite 데이터베이스를 구축할 수 없습니다. 현재 레거시 데이터베이스 사용을 시도중입니다. {url} 에서 개발자에게 오류를 신고하세요. 오류 메시지는 다음과 같습니다: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendTypingNotificationsDescription": "채팅의 다른 참가자들이 당신이 새 메시지를 입력중인것을 볼 수 있습니다.",
|
"sendTypingNotificationsDescription": "채팅의 다른 참가자들이 당신이 새 메시지를 입력중인것을 볼 수 있습니다.",
|
||||||
"@sendTypingNotificationsDescription": {},
|
"@sendTypingNotificationsDescription": {},
|
||||||
"formattedMessages": "형식이 지정된 메시지",
|
"formattedMessages": "형식이 지정된 메시지",
|
||||||
"@formattedMessages": {},
|
"@formattedMessages": {},
|
||||||
"forwardMessageTo": "{roomName}에 메시지를 전달할까요?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"verifyOtherDevice": "🔐 다른 기기를 확인",
|
"verifyOtherDevice": "🔐 다른 기기를 확인",
|
||||||
"@verifyOtherDevice": {},
|
"@verifyOtherDevice": {},
|
||||||
"verifyOtherUserDescription": "다른 유저를 확인하면, 당신은 당신이 누구에게 말하고있는지 알 수 있습니다. 💪\n\n확인을 시작할 때, 다른 유저는 앱에서 팝업을 볼 수 있습니다. 당신은 그런 다음 서로 비교해야 이모지 또는 숫자의 목록을 볼 수 있습니다.\n\n이 작업을 수행하는 가장 좋은 방법은 직접 만나거나 영상통화를 하는것입니다. 👭",
|
"verifyOtherUserDescription": "다른 유저를 확인하면, 당신은 당신이 누구에게 말하고있는지 알 수 있습니다. 💪\n\n확인을 시작할 때, 다른 유저는 앱에서 팝업을 볼 수 있습니다. 당신은 그런 다음 서로 비교해야 이모지 또는 숫자의 목록을 볼 수 있습니다.\n\n이 작업을 수행하는 가장 좋은 방법은 직접 만나거나 영상통화를 하는것입니다. 👭",
|
||||||
|
|
@ -2893,22 +2530,8 @@
|
||||||
"@hideInvalidOrUnknownMessageFormats": {},
|
"@hideInvalidOrUnknownMessageFormats": {},
|
||||||
"overview": "개요",
|
"overview": "개요",
|
||||||
"@overview": {},
|
"@overview": {},
|
||||||
"notifyMeFor": "나에게 알림",
|
|
||||||
"@notifyMeFor": {},
|
|
||||||
"passwordRecoverySettings": "비밀번호 복구 설정",
|
"passwordRecoverySettings": "비밀번호 복구 설정",
|
||||||
"@passwordRecoverySettings": {},
|
"@passwordRecoverySettings": {},
|
||||||
"hideMemberChangesInPublicChats": "공개 채팅에서의 참가자 변화 숨김",
|
|
||||||
"@hideMemberChangesInPublicChats": {},
|
|
||||||
"userWouldLikeToChangeTheChat": "{user}님이 참가를 희망합니다.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "공개 링크가 아직 생성되지 않았음",
|
|
||||||
"@noPublicLinkHasBeenCreatedYet": {},
|
|
||||||
"knock": "참가 요청",
|
"knock": "참가 요청",
|
||||||
"@knock": {},
|
"@knock": {},
|
||||||
"usersMustKnock": "유저들이 참가를 허가받아야함",
|
"usersMustKnock": "유저들이 참가를 허가받아야함",
|
||||||
|
|
@ -2931,25 +2554,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"count": {}
|
"count": {}
|
||||||
},
|
},
|
||||||
"minimumPowerLevel": "{level}은 최소 권한 레벨입니다.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noDatabaseEncryption": "데이터베이스 암호화는 이 플랫폼에서 지원되지 않음",
|
"noDatabaseEncryption": "데이터베이스 암호화는 이 플랫폼에서 지원되지 않음",
|
||||||
"@noDatabaseEncryption": {},
|
"@noDatabaseEncryption": {},
|
||||||
"publicChatAddresses": "공개 채팅 주소",
|
"publicChatAddresses": "공개 채팅 주소",
|
||||||
"@publicChatAddresses": {},
|
"@publicChatAddresses": {},
|
||||||
"userRole": "유저 역할",
|
|
||||||
"@userRole": {},
|
|
||||||
"createNewAddress": "새 주소 만들기",
|
"createNewAddress": "새 주소 만들기",
|
||||||
"@createNewAddress": {},
|
"@createNewAddress": {},
|
||||||
"hideMemberChangesInPublicChatsBody": "공개 채팅에 누군가가 참가하거나 떠날때 타임라인에 표시하지 않습니다.",
|
|
||||||
"@hideMemberChangesInPublicChatsBody": {},
|
|
||||||
"searchMore": "더 검색...",
|
"searchMore": "더 검색...",
|
||||||
"@searchMore": {},
|
"@searchMore": {},
|
||||||
"files": "파일",
|
"files": "파일",
|
||||||
|
|
@ -2988,20 +2598,6 @@
|
||||||
},
|
},
|
||||||
"markAsUnread": "읽지 않음으로 표시",
|
"markAsUnread": "읽지 않음으로 표시",
|
||||||
"@markAsUnread": {},
|
"@markAsUnread": {},
|
||||||
"countChatsAndCountParticipants": "{chats} 채팅과 {participants} 참여자",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"joinedChats": "참가한 채팅",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"noMoreChatsFound": "채팅을 찾을 수 없습니다...",
|
"noMoreChatsFound": "채팅을 찾을 수 없습니다...",
|
||||||
"@noMoreChatsFound": {},
|
"@noMoreChatsFound": {},
|
||||||
"moderatorLevel": "{level} - 관리자",
|
"moderatorLevel": "{level} - 관리자",
|
||||||
|
|
@ -3047,8 +2643,6 @@
|
||||||
"@changeTheCanonicalRoomAlias": {},
|
"@changeTheCanonicalRoomAlias": {},
|
||||||
"sendCanceled": "전송 최소됨",
|
"sendCanceled": "전송 최소됨",
|
||||||
"@sendCanceled": {},
|
"@sendCanceled": {},
|
||||||
"homeserverDescription": "당신의 모든 데이터는 이메일과 흡사하게 당신의 홈서버에 저장됩니다. 당신이 소통하고 싶은 사람들과 다른 서버를 사용해도 무관하니 당신이 원하는 홈서버를 선택해도 됩니다. https://matrix.org에서 자세히 알아보세요.",
|
|
||||||
"@homeserverDescription": {},
|
|
||||||
"sendingAttachmentCountOfCount": "첨부파일 {length}개중 {index}번째 전송 중...",
|
"sendingAttachmentCountOfCount": "첨부파일 {length}개중 {index}번째 전송 중...",
|
||||||
"@sendingAttachmentCountOfCount": {
|
"@sendingAttachmentCountOfCount": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
|
|
@ -3125,10 +2719,6 @@
|
||||||
"@chatPermissionsDescription": {},
|
"@chatPermissionsDescription": {},
|
||||||
"loginWithMatrixId": "Matrix-ID로 로그인",
|
"loginWithMatrixId": "Matrix-ID로 로그인",
|
||||||
"@loginWithMatrixId": {},
|
"@loginWithMatrixId": {},
|
||||||
"discoverHomeservers": "홈서버 찾아보기",
|
|
||||||
"@discoverHomeservers": {},
|
|
||||||
"whatIsAHomeserver": "홈서버가 무엇인가요?",
|
|
||||||
"@whatIsAHomeserver": {},
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "호환되는 홈서버가 아닌 것 같습니다. URL을 올바르게 입력됐나요?",
|
"doesNotSeemToBeAValidHomeserver": "호환되는 홈서버가 아닌 것 같습니다. URL을 올바르게 입력됐나요?",
|
||||||
"@doesNotSeemToBeAValidHomeserver": {},
|
"@doesNotSeemToBeAValidHomeserver": {},
|
||||||
"continueText": "계속하기",
|
"continueText": "계속하기",
|
||||||
|
|
@ -3196,8 +2786,6 @@
|
||||||
"@previous": {},
|
"@previous": {},
|
||||||
"newChatRequest": "📩 새 채팅 요청",
|
"newChatRequest": "📩 새 채팅 요청",
|
||||||
"@newChatRequest": {},
|
"@newChatRequest": {},
|
||||||
"appIntroduction": "FluffyChat는 다른 메신저들을 사용하는 친구들과도 채팅할 수 있습니다. https://matrix.org에 방문하거나 *계속*을 눌러 자세한 정보를 확인하세요.",
|
|
||||||
"@appIntroduction": {},
|
|
||||||
"synchronizingPleaseWaitCounter": " 동기화중… ({percentage}%)",
|
"synchronizingPleaseWaitCounter": " 동기화중… ({percentage}%)",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3271,14 +2859,8 @@
|
||||||
"@notificationRuleSuppressEditsDescription": {},
|
"@notificationRuleSuppressEditsDescription": {},
|
||||||
"notificationRuleCall": "전화",
|
"notificationRuleCall": "전화",
|
||||||
"@notificationRuleCall": {},
|
"@notificationRuleCall": {},
|
||||||
"setCustomPermissionLevel": "사용자 지정 권한 수준 설정",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"setPermissionsLevelDescription": "아래에서 미리 정의된 역할을 선택하거나 0부터 100 사이의 사용자 지정 권한 수준을 입력해 주세요.",
|
|
||||||
"@setPermissionsLevelDescription": {},
|
|
||||||
"ignoreUser": "사용자 무시",
|
"ignoreUser": "사용자 무시",
|
||||||
"@ignoreUser": {},
|
"@ignoreUser": {},
|
||||||
"normalUser": "일반 사용자",
|
|
||||||
"@normalUser": {},
|
|
||||||
"commandHint_roomupgrade": "이 방을 주어진 방 버전으로 업그레이드합니다",
|
"commandHint_roomupgrade": "이 방을 주어진 방 버전으로 업그레이드합니다",
|
||||||
"@commandHint_roomupgrade": {},
|
"@commandHint_roomupgrade": {},
|
||||||
"checkList": "체크리스트",
|
"checkList": "체크리스트",
|
||||||
|
|
@ -3292,4 +2874,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -4,11 +4,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /leave"
|
"description": "Usage hint for the command /leave"
|
||||||
},
|
},
|
||||||
"confirm": "Patvirtinti",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Atšaukti",
|
"cancel": "Atšaukti",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -179,11 +174,6 @@
|
||||||
},
|
},
|
||||||
"homeserver": "Namų serveris",
|
"homeserver": "Namų serveris",
|
||||||
"@homeserver": {},
|
"@homeserver": {},
|
||||||
"enterYourHomeserver": "Įveskite namų serverį",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"everythingReady": "Viskas paruošta!",
|
"everythingReady": "Viskas paruošta!",
|
||||||
"@everythingReady": {
|
"@everythingReady": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -201,16 +191,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"connect": "Prisijungti",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"people": "Žmonės",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"moderator": "Moderatorius",
|
"moderator": "Moderatorius",
|
||||||
"@moderator": {
|
"@moderator": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -246,11 +226,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Pranešimai aktyvuoti šitai paskyrai",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"obtainingLocation": "Gaunama vieta…",
|
"obtainingLocation": "Gaunama vieta…",
|
||||||
"@obtainingLocation": {
|
"@obtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -318,11 +293,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Prašome pasirinkti",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Pasirinkite slaptą kodą",
|
"pleaseChooseAPasscode": "Pasirinkite slaptą kodą",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -383,11 +353,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"rejoin": "Vėl prisijungti",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Pašalinti",
|
"remove": "Pašalinti",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -398,11 +363,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"removeDevice": "Pašalinti įrenginį",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"removeYourAvatar": "Pašalinti savo avatarą",
|
"removeYourAvatar": "Pašalinti savo avatarą",
|
||||||
"@removeYourAvatar": {
|
"@removeYourAvatar": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -649,11 +609,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Eiti į naują kambarį",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Grupė",
|
"group": "Grupė",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -694,11 +649,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Tapatybė",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Ignoruoti",
|
"ignore": "Ignoruoti",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -714,11 +664,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Narių pokyčiai",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Paminėti",
|
"mention": "Paminėti",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -853,11 +798,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licencija",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Šviesi",
|
"lightTheme": "Šviesi",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -898,16 +838,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setInvitationLink": "Nustatyti pakvietimo nuorodą",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"singlesignon": "Vienkartinis prisijungimas",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sourceCode": "Programinis kodas",
|
"sourceCode": "Programinis kodas",
|
||||||
"@sourceCode": {
|
"@sourceCode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1031,31 +961,16 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Siųsti originalą",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Siųsti video",
|
"sendVideo": "Siųsti video",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"separateChatTypes": "Atskirti tiesioginius pokalbius ir grupes",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "Nustatyti kaip pagrindinį slapyvardį",
|
"setAsCanonicalAlias": "Nustatyti kaip pagrindinį slapyvardį",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setPermissionsLevel": "Nustatyti leidimų lygį",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Nustatyti būseną",
|
"setStatus": "Nustatyti būseną",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1118,8 +1033,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"addToSpaceDescription": "Pasirinkite erdvę, kad prie jos pridėtumėte šį pokalbį.",
|
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"start": "Pradžia",
|
"start": "Pradžia",
|
||||||
"@start": {},
|
"@start": {},
|
||||||
"account": "Paskyra",
|
"account": "Paskyra",
|
||||||
|
|
@ -1139,18 +1052,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Botų žinutės",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"channelCorruptedDecryptError": "Šifravimas buvo sugadintas",
|
"channelCorruptedDecryptError": "Šifravimas buvo sugadintas",
|
||||||
"@channelCorruptedDecryptError": {
|
"@channelCorruptedDecryptError": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Pokalbis buvo pridėtas prie šios erdvės",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"compareEmojiMatch": "Palyginkite jaustukus",
|
"compareEmojiMatch": "Palyginkite jaustukus",
|
||||||
"@compareEmojiMatch": {
|
"@compareEmojiMatch": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1201,11 +1107,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleUnread": "Pažymėti kaip skaitytą/neskaitytą",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Per daug užklausų. Pabandykite dar kartą vėliau!",
|
"tooManyRequestsWarning": "Per daug užklausų. Pabandykite dar kartą vėliau!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1221,11 +1122,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Užsklanda",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Įspėjimas!",
|
"warning": "Įspėjimas!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1333,11 +1229,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Atidarykite kamerą vaizdo įrašui",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"editBundlesForAccount": "Redaguoti šios paskyros paketus",
|
"editBundlesForAccount": "Redaguoti šios paskyros paketus",
|
||||||
"@editBundlesForAccount": {},
|
"@editBundlesForAccount": {},
|
||||||
"serverRequiresEmail": "Šis serveris turi patvirtinti jūsų el. pašto adresą registracijai.",
|
"serverRequiresEmail": "Šis serveris turi patvirtinti jūsų el. pašto adresą registracijai.",
|
||||||
|
|
@ -1399,20 +1290,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Matė {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendSticker": "Siųsti lipduką",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sentAFile": "📁 {username} atsiuntė failą",
|
"sentAFile": "📁 {username} atsiuntė failą",
|
||||||
"@sentAFile": {
|
"@sentAFile": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1534,8 +1411,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"publish": "Paskelbti",
|
|
||||||
"@publish": {},
|
|
||||||
"openChat": "Atverti pokalbį",
|
"openChat": "Atverti pokalbį",
|
||||||
"@openChat": {},
|
"@openChat": {},
|
||||||
"reportUser": "Pranešti apie vartotoją",
|
"reportUser": "Pranešti apie vartotoją",
|
||||||
|
|
@ -1556,12 +1431,6 @@
|
||||||
},
|
},
|
||||||
"unsupportedAndroidVersion": "Nepalaikoma Android versija",
|
"unsupportedAndroidVersion": "Nepalaikoma Android versija",
|
||||||
"@unsupportedAndroidVersion": {},
|
"@unsupportedAndroidVersion": {},
|
||||||
"emailOrUsername": "El. paštas arba vartotojo vardas",
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"widgetVideo": "Video",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"widgetNameError": "Pateikite rodomą vardą.",
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"acceptedTheInvitation": "👍 {username} priėmė kvietimą",
|
"acceptedTheInvitation": "👍 {username} priėmė kvietimą",
|
||||||
"@acceptedTheInvitation": {
|
"@acceptedTheInvitation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1610,18 +1479,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Namų serveris palaiko spec. versijas:\n{serverVersions}\nTačiau ši programa palaiko tik {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"bannedUser": "{username} užblokavo {targetName}",
|
"bannedUser": "{username} užblokavo {targetName}",
|
||||||
"@bannedUser": {
|
"@bannedUser": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1695,16 +1552,6 @@
|
||||||
},
|
},
|
||||||
"description": "State that {command} is not a valid /command."
|
"description": "State that {command} is not a valid /command."
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Turi rodomą vardą",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Turi vartotojo vardą",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"couldNotDecryptMessage": "Nepavyko iššifruoti pranešimo: {error}",
|
"couldNotDecryptMessage": "Nepavyko iššifruoti pranešimo: {error}",
|
||||||
"@couldNotDecryptMessage": {
|
"@couldNotDecryptMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1762,11 +1609,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Turite pasirinkti jaustuko trumpąjį kodą ir paveiksliuką!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"enableEmotesGlobally": "Įgalinti jaustukų paketą visur",
|
"enableEmotesGlobally": "Įgalinti jaustukų paketą visur",
|
||||||
"@enableEmotesGlobally": {
|
"@enableEmotesGlobally": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1811,11 +1653,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Pakvietimas man",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteContactToGroup": "Pakviesti kontaktą į {groupName}",
|
"inviteContactToGroup": "Pakviesti kontaktą į {groupName}",
|
||||||
"@inviteContactToGroup": {
|
"@inviteContactToGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1909,16 +1746,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Perjungti parankinius",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Perjungti nutildytą",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cantOpenUri": "Nepavyksta atidaryti URI {uri}",
|
"cantOpenUri": "Nepavyksta atidaryti URI {uri}",
|
||||||
"@cantOpenUri": {
|
"@cantOpenUri": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2051,15 +1878,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"videoWithSize": "Vaizdo įrašas ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"pinMessage": "Prisegti prie kambario",
|
"pinMessage": "Prisegti prie kambario",
|
||||||
"@pinMessage": {},
|
"@pinMessage": {},
|
||||||
"confirmEventUnpin": "Ar tikrai norite visam laikui atsegti įvykį?",
|
"confirmEventUnpin": "Ar tikrai norite visam laikui atsegti įvykį?",
|
||||||
|
|
@ -2076,27 +1894,6 @@
|
||||||
"@videoCallsBetaWarning": {},
|
"@videoCallsBetaWarning": {},
|
||||||
"experimentalVideoCalls": "Eksperimentiniai vaizdo skambučiai",
|
"experimentalVideoCalls": "Eksperimentiniai vaizdo skambučiai",
|
||||||
"@experimentalVideoCalls": {},
|
"@experimentalVideoCalls": {},
|
||||||
"switchToAccount": "Perjungti paskyrą į {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"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": "Jūs atmetėte kvietimą",
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"youJoinedTheChat": "Jūs prisijungėte prie pokalbio",
|
"youJoinedTheChat": "Jūs prisijungėte prie pokalbio",
|
||||||
|
|
@ -2171,33 +1968,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{year}-{month}-{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"locationDisabledNotice": "Vietos nustatymo paslaugos yra išjungtos. Kad galėtumėte bendrinti savo buvimo vietą, įjunkite jas.",
|
"locationDisabledNotice": "Vietos nustatymo paslaugos yra išjungtos. Kad galėtumėte bendrinti savo buvimo vietą, įjunkite jas.",
|
||||||
"@locationDisabledNotice": {
|
"@locationDisabledNotice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2258,11 +2028,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Nustatyti pasirinktinius jaustukus",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"userLeftTheChat": "🚪 {username} paliko pokalbį",
|
"userLeftTheChat": "🚪 {username} paliko pokalbį",
|
||||||
"@userLeftTheChat": {
|
"@userLeftTheChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2279,21 +2044,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 unread chat} other{{unreadCount} neperskaityti pokalbiai}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"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": "Kad galėtumėte prijungti kitą asmenį, įveskite savo saugyklos slaptafrazę arba atkūrimo raktą.",
|
||||||
"@askSSSSSign": {
|
"@askSSSSSign": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2306,32 +2056,16 @@
|
||||||
},
|
},
|
||||||
"commandHint_markasdm": "Pažymėti kaip tiesioginio pokalbio kambarį",
|
"commandHint_markasdm": "Pažymėti kaip tiesioginio pokalbio kambarį",
|
||||||
"@commandHint_markasdm": {},
|
"@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": "Šio veiksmo negalima atšaukti. Įsitikinkite, kad saugiai saugote atsarginę kopiją.",
|
||||||
"@dehydrateWarning": {},
|
"@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": "Pažymėti kaip grupę",
|
||||||
"@commandHint_markasgroup": {},
|
"@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": "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": {},
|
"@pleaseEnterRecoveryKeyDescription": {},
|
||||||
"callingPermissions": "Skambinimo leidimai",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"storeInAppleKeyChain": "Saugoti Apple raktų grandinėje",
|
"storeInAppleKeyChain": "Saugoti Apple raktų grandinėje",
|
||||||
"@storeInAppleKeyChain": {},
|
"@storeInAppleKeyChain": {},
|
||||||
"callingAccount": "Skambinimo paskyra",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"newSpace": "Nauja erdvė",
|
"newSpace": "Nauja erdvė",
|
||||||
"@newSpace": {},
|
"@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": "Visos erdvės",
|
||||||
"@allSpaces": {},
|
"@allSpaces": {},
|
||||||
"user": "Vartotojas",
|
"user": "Vartotojas",
|
||||||
|
|
@ -2351,20 +2085,12 @@
|
||||||
},
|
},
|
||||||
"dehydrate": "Eksportuoti sesiją ir išvalyti įrenginį",
|
"dehydrate": "Eksportuoti sesiją ir išvalyti įrenginį",
|
||||||
"@dehydrate": {},
|
"@dehydrate": {},
|
||||||
"dehydrateTor": "TOR Naudotojai: Eksportuoti sesiją",
|
|
||||||
"@dehydrateTor": {},
|
|
||||||
"hydrateTor": "TOR Naudotojai: Importuoti sesijos eksportą",
|
|
||||||
"@hydrateTor": {},
|
|
||||||
"hydrate": "Atkurti iš atsarginės kopijos failo",
|
"hydrate": "Atkurti iš atsarginės kopijos failo",
|
||||||
"@hydrate": {},
|
"@hydrate": {},
|
||||||
"pleaseEnterRecoveryKey": "Įveskite savo atkūrimo raktą:",
|
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"recoveryKey": "Atkūrimo raktas",
|
"recoveryKey": "Atkūrimo raktas",
|
||||||
"@recoveryKey": {},
|
"@recoveryKey": {},
|
||||||
"recoveryKeyLost": "Pamestas atkūrimo raktas?",
|
"recoveryKeyLost": "Pamestas atkūrimo raktas?",
|
||||||
"@recoveryKeyLost": {},
|
"@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": {},
|
|
||||||
"countFiles": "{count} failai",
|
"countFiles": "{count} failai",
|
||||||
"@countFiles": {
|
"@countFiles": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2385,33 +2111,16 @@
|
||||||
"@unlockOldMessages": {},
|
"@unlockOldMessages": {},
|
||||||
"storeInAndroidKeystore": "Saugoti Android raktų saugykloje",
|
"storeInAndroidKeystore": "Saugoti Android raktų saugykloje",
|
||||||
"@storeInAndroidKeystore": {},
|
"@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": "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": {},
|
"@noKeyForThisMessage": {},
|
||||||
"foregroundServiceRunning": "Šis pranešimas rodomas, kai veikia pirmojo plano paslauga.",
|
"foregroundServiceRunning": "Šis pranešimas rodomas, kai veikia pirmojo plano paslauga.",
|
||||||
"@foregroundServiceRunning": {},
|
"@foregroundServiceRunning": {},
|
||||||
"screenSharingTitle": "ekrano bendrinimas",
|
"screenSharingTitle": "ekrano bendrinimas",
|
||||||
"@screenSharingTitle": {},
|
"@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": "Kodėl ši žinutė neperskaitoma?",
|
||||||
"@whyIsThisMessageEncrypted": {},
|
"@whyIsThisMessageEncrypted": {},
|
||||||
"newGroup": "Nauja grupė",
|
"newGroup": "Nauja grupė",
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"screenSharingDetail": "Bendrinate savo ekraną per FuffyChat",
|
"screenSharingDetail": "Bendrinate savo ekraną per FuffyChat",
|
||||||
"@screenSharingDetail": {},
|
"@screenSharingDetail": {}
|
||||||
"numChats": "{number} pokalbiai",
|
}
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Slėpti nesvarbius būsenos įvykius",
|
|
||||||
"@hideUnimportantStateEvents": {}
|
|
||||||
}
|
|
||||||
|
|
@ -33,17 +33,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"connect": "Savienot",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"jumpToLastReadMessage": "Pārlēkt uz pēdējo izlasīto ziņu",
|
"jumpToLastReadMessage": "Pārlēkt uz pēdējo izlasīto ziņu",
|
||||||
"allRooms": "Visām kopu tērzēšanām",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"obtainingLocation": "Iegūst atrašanās vietu…",
|
"obtainingLocation": "Iegūst atrašanās vietu…",
|
||||||
"@obtainingLocation": {
|
"@obtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -55,7 +45,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"widgetVideo": "Video",
|
|
||||||
"dismiss": "Atmest",
|
"dismiss": "Atmest",
|
||||||
"unknownDevice": "Nezināma ierīce",
|
"unknownDevice": "Nezināma ierīce",
|
||||||
"@unknownDevice": {
|
"@unknownDevice": {
|
||||||
|
|
@ -83,11 +72,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setPermissionsLevel": "Iestatīt atļauju līmeni",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteContactToGroup": "Uzaicināt kontaktpersonu {groupName}",
|
"inviteContactToGroup": "Uzaicināt kontaktpersonu {groupName}",
|
||||||
"@inviteContactToGroup": {
|
"@inviteContactToGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -108,7 +92,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Šai vietai tika pievienota tērzēšana",
|
|
||||||
"reply": "Atbildēt",
|
"reply": "Atbildēt",
|
||||||
"@reply": {
|
"@reply": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -140,7 +123,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /html"
|
"description": "Usage hint for the command /html"
|
||||||
},
|
},
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"youAreNoLongerParticipatingInThisChat": "Tu vairs nepiedalies šajā tērzēšanā",
|
"youAreNoLongerParticipatingInThisChat": "Tu vairs nepiedalies šajā tērzēšanā",
|
||||||
"@youAreNoLongerParticipatingInThisChat": {
|
"@youAreNoLongerParticipatingInThisChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -152,13 +134,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"messageType": "Ziņas veids",
|
"messageType": "Ziņas veids",
|
||||||
"indexedDbErrorLong": "Diemžēl ziņu krātuve pēc noklusējuma nav iespējota privātajā režīmā.\nLūgums apmeklēt\n - about:config\n - iestatīt dom.indexedDB.privateBrowsing.enabled kā true\nPretējā gadījumā nav iespējams palaist FluffyChat.",
|
|
||||||
"oneClientLoggedOut": "Viens no klientiem ir atteicies",
|
"oneClientLoggedOut": "Viens no klientiem ir atteicies",
|
||||||
"toggleMuted": "Pārslēgt apklusināšanu",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unsupportedAndroidVersionLong": "Šai iespējai ir nepieciešama jaunāka Android versija. Lūgums pārbaudīt atjauninājumus vai Lineage OS atbalstu.",
|
"unsupportedAndroidVersionLong": "Šai iespējai ir nepieciešama jaunāka Android versija. Lūgums pārbaudīt atjauninājumus vai Lineage OS atbalstu.",
|
||||||
"kicked": "👞 {username} izmeta {targetName}",
|
"kicked": "👞 {username} izmeta {targetName}",
|
||||||
"@kicked": {
|
"@kicked": {
|
||||||
|
|
@ -207,8 +183,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"startFirstChat": "Uzsāc savu pirmo tērzēšanu",
|
|
||||||
"callingAccount": "Zvanīšanas konts",
|
|
||||||
"requestPermission": "Pieprasīt atļauju",
|
"requestPermission": "Pieprasīt atļauju",
|
||||||
"@requestPermission": {
|
"@requestPermission": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -241,17 +215,11 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setColorTheme": "Iestatīt krāsu izskatu:",
|
"setColorTheme": "Iestatīt krāsu izskatu:",
|
||||||
"nextAccount": "Nākamais konts",
|
|
||||||
"commandHint_create": "Izveidot tukšu kopas tērzēšanu\nLai atspējotu šifrēšanu, jāizmanto --no-encryption",
|
"commandHint_create": "Izveidot tukšu kopas tērzēšanu\nLai atspējotu šifrēšanu, jāizmanto --no-encryption",
|
||||||
"@commandHint_create": {
|
"@commandHint_create": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /create"
|
"description": "Usage hint for the command /create"
|
||||||
},
|
},
|
||||||
"singlesignon": "Vienotā pieteikšanās",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Uzmanību!",
|
"warning": "Uzmanību!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -369,7 +337,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"widgetEtherpad": "Teksta piezīme",
|
|
||||||
"waitingPartnerAcceptRequest": "Gaida, līdz biedrs apstiprinās pieprasījumu…",
|
"waitingPartnerAcceptRequest": "Gaida, līdz biedrs apstiprinās pieprasījumu…",
|
||||||
"@waitingPartnerAcceptRequest": {
|
"@waitingPartnerAcceptRequest": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -417,11 +384,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"separateChatTypes": "Atdalīt tiešās tērzēšanas un kopas",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tryAgain": "Jāmēģina vēlreiz",
|
"tryAgain": "Jāmēģina vēlreiz",
|
||||||
"areGuestsAllowedToJoin": "Vai vieslietotājiem ir ļauts pievienoties",
|
"areGuestsAllowedToJoin": "Vai vieslietotājiem ir ļauts pievienoties",
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
|
|
@ -441,23 +403,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}.{month}.",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"removeDevice": "Noņemt ierīci",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanUserDescription": "Lietotājs varēs atkal pievienoties tērzēšanai, ja mēģinās.",
|
"unbanUserDescription": "Lietotājs varēs atkal pievienoties tērzēšanai, ja mēģinās.",
|
||||||
"userAndUserAreTyping": "{username} un {username2} raksta…",
|
"userAndUserAreTyping": "{username} un {username2} raksta…",
|
||||||
"@userAndUserAreTyping": {
|
"@userAndUserAreTyping": {
|
||||||
|
|
@ -497,7 +442,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"youRejectedTheInvitation": "Tu noraidīji uzaicinājumu",
|
"youRejectedTheInvitation": "Tu noraidīji uzaicinājumu",
|
||||||
"otherCallingPermissions": "Mikrofons, kamera un citas FluffyChat atļaujas",
|
|
||||||
"messagesStyle": "Ziņas:",
|
"messagesStyle": "Ziņas:",
|
||||||
"couldNotDecryptMessage": "Nevarēja atšifrēt ziņu: {error}",
|
"couldNotDecryptMessage": "Nevarēja atšifrēt ziņu: {error}",
|
||||||
"@couldNotDecryptMessage": {
|
"@couldNotDecryptMessage": {
|
||||||
|
|
@ -514,11 +458,8 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"link": "Saite",
|
"link": "Saite",
|
||||||
"widgetUrlError": "Tas nav derīgs URL.",
|
|
||||||
"emailOrUsername": "E-pasta adrese vai lietotājvārds",
|
|
||||||
"newSpaceDescription": "Vietas ļauj apvienot tērzēšanas un būvēt privātas vai publiskas kopienas.",
|
"newSpaceDescription": "Vietas ļauj apvienot tērzēšanas un būvēt privātas vai publiskas kopienas.",
|
||||||
"chatDescription": "Tērzēšanas apraksts",
|
"chatDescription": "Tērzēšanas apraksts",
|
||||||
"callingAccountDetails": "Ļauj FluffyChat izmantot iebūvēto Android zvanīšanas lietotni.",
|
|
||||||
"next": "Nākamais",
|
"next": "Nākamais",
|
||||||
"@next": {
|
"@next": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -538,27 +479,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{year}.{month}.{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"editRoomAliases": "Labot istabu aizstājvārdus",
|
"editRoomAliases": "Labot istabu aizstājvārdus",
|
||||||
"@editRoomAliases": {
|
"@editRoomAliases": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterSpace": "Ieiet vietā",
|
|
||||||
"encryptThisChat": "Šifrēt šo tērzēšanu",
|
"encryptThisChat": "Šifrēt šo tērzēšanu",
|
||||||
"fileName": "Datnes nosaukums",
|
"fileName": "Datnes nosaukums",
|
||||||
"@fileName": {
|
"@fileName": {
|
||||||
|
|
@ -570,7 +495,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"previousAccount": "Iepriekšējais konts",
|
|
||||||
"publicRooms": "Publiskas istabas",
|
"publicRooms": "Publiskas istabas",
|
||||||
"@publicRooms": {
|
"@publicRooms": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -591,23 +515,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Nepieciešams izvēlēties emocijas īskodu un attēlu.",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reopenChat": "Atkārtoti atvērt tērzēšanu",
|
"reopenChat": "Atkārtoti atvērt tērzēšanu",
|
||||||
"pleaseEnterRecoveryKey": "Lūgums ievadīt savu atkopes atslēgu:",
|
|
||||||
"create": "Izveidot",
|
"create": "Izveidot",
|
||||||
"@create": {
|
"@create": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Pārslēgt iecienīto",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"no": "Nē",
|
"no": "Nē",
|
||||||
"@no": {
|
"@no": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -618,7 +531,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"widgetNameError": "Lūgums norādīt attēlojamo nosaukumu.",
|
|
||||||
"inoffensive": "Nav aizskarošs",
|
"inoffensive": "Nav aizskarošs",
|
||||||
"@inoffensive": {
|
"@inoffensive": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -640,7 +552,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"addWidget": "Pievienot logrīku",
|
|
||||||
"all": "Viss",
|
"all": "Viss",
|
||||||
"@all": {
|
"@all": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -702,7 +613,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"hydrateTor": "TOR lietotāji: ievietot sesijas izguvi",
|
|
||||||
"pushNotificationsNotAvailable": "Pašpiegādes paziņojumi nav pieejami",
|
"pushNotificationsNotAvailable": "Pašpiegādes paziņojumi nav pieejami",
|
||||||
"passwordRecovery": "Paroles atkope",
|
"passwordRecovery": "Paroles atkope",
|
||||||
"@passwordRecovery": {
|
"@passwordRecovery": {
|
||||||
|
|
@ -761,7 +671,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"signInWithPassword": "Pieteikties ar paroli",
|
|
||||||
"lastActiveAgo": "Pēdējoreiz tiešsaistē: {localizedTimeShort}",
|
"lastActiveAgo": "Pēdējoreiz tiešsaistē: {localizedTimeShort}",
|
||||||
"@lastActiveAgo": {
|
"@lastActiveAgo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -834,11 +743,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Doties uz jauno istabu",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"commandHint_clearcache": "Iztīrīt kešatmiņu",
|
"commandHint_clearcache": "Iztīrīt kešatmiņu",
|
||||||
"@commandHint_clearcache": {
|
"@commandHint_clearcache": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -867,15 +771,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"whyIsThisMessageEncrypted": "Kādēļ šī ziņa ir nelasāma?",
|
"whyIsThisMessageEncrypted": "Kādēļ šī ziņa ir nelasāma?",
|
||||||
"unreadChats": "{unreadCount, plural, zero{{unreadCount} nelasītu tērzēšanu} =1{{unreadCount} nelasīta tērzēšana} other{{unreadCount} nelasītas tērzēšanas}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rejectedTheInvitation": "{username} noraidīja uzaicinājumu",
|
"rejectedTheInvitation": "{username} noraidīja uzaicinājumu",
|
||||||
"@rejectedTheInvitation": {
|
"@rejectedTheInvitation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -901,22 +796,12 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"importFromZipFile": "Ievietot no .zip datnes",
|
"importFromZipFile": "Ievietot no .zip datnes",
|
||||||
"toggleUnread": "Atzīmēt kā lasītu/nelasītu",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"or": "Vai",
|
"or": "Vai",
|
||||||
"@or": {
|
"@or": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dehydrateWarning": "Šī darbība nav atdarāma. Jānodrošina, ka rezerves kopijas datne tiek droši uzglabāta.",
|
"dehydrateWarning": "Šī darbība nav atdarāma. Jānodrošina, ka rezerves kopijas datne tiek droši uzglabāta.",
|
||||||
"sendOriginal": "Nosūtīt sākotnējo",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"noOtherDevicesFound": "Netika atrastas citas ierīces",
|
"noOtherDevicesFound": "Netika atrastas citas ierīces",
|
||||||
"whoIsAllowedToJoinThisGroup": "Kuram ir ļauts pievienoties šai kopai",
|
"whoIsAllowedToJoinThisGroup": "Kuram ir ļauts pievienoties šai kopai",
|
||||||
"@whoIsAllowedToJoinThisGroup": {
|
"@whoIsAllowedToJoinThisGroup": {
|
||||||
|
|
@ -928,15 +813,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "{username} redzēja",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"storeSecurlyOnThisDevice": "Droši uzglabāt šajā ierīcē",
|
"storeSecurlyOnThisDevice": "Droši uzglabāt šajā ierīcē",
|
||||||
"yourChatBackupHasBeenSetUp": "Tērzēšanu rezerves kopēšana iestatīta.",
|
"yourChatBackupHasBeenSetUp": "Tērzēšanu rezerves kopēšana iestatīta.",
|
||||||
"chatBackup": "Tērzēšanu rezerves kopēšana",
|
"chatBackup": "Tērzēšanu rezerves kopēšana",
|
||||||
|
|
@ -1011,20 +887,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Satur attēlojamo vārdu",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"signInWith": "Pieteikties ar {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"username": "Lietotājvārds",
|
"username": "Lietotājvārds",
|
||||||
"@username": {
|
"@username": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1051,11 +913,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Cilvēki",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"changedTheHistoryVisibilityTo": "{username} nomainīja vēstures redzamību uz {rules}",
|
"changedTheHistoryVisibilityTo": "{username} nomainīja vēstures redzamību uz {rules}",
|
||||||
"@changedTheHistoryVisibilityTo": {
|
"@changedTheHistoryVisibilityTo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1093,7 +950,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"callingPermissions": "Zvanīšanas atļaujas",
|
|
||||||
"delete": "Izdzēst",
|
"delete": "Izdzēst",
|
||||||
"@delete": {
|
"@delete": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1122,20 +978,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unlockOldMessages": "Atslēgt vecās ziņas",
|
"unlockOldMessages": "Atslēgt vecās ziņas",
|
||||||
"identity": "Identitāte",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numChats": "{number} tērzēšanas",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"changedTheJoinRulesTo": "{username} nomainīja pievienošanās nosacījumus uz {joinRules}",
|
"changedTheJoinRulesTo": "{username} nomainīja pievienošanās nosacījumus uz {joinRules}",
|
||||||
"@changedTheJoinRulesTo": {
|
"@changedTheJoinRulesTo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1249,11 +1091,6 @@
|
||||||
"@sendAsText": {
|
"@sendAsText": {
|
||||||
"type": "String"
|
"type": "String"
|
||||||
},
|
},
|
||||||
"inviteForMe": "Uzaicinājumu man",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"archiveRoomDescription": "Tērzēšana tiks pārvietota uz arhīvu. Citi lietotāji redzēs, ka pameti tērzēšanu.",
|
"archiveRoomDescription": "Tērzēšana tiks pārvietota uz arhīvu. Citi lietotāji redzēs, ka pameti tērzēšanu.",
|
||||||
"exportEmotePack": "Izgūt emociju paku kā .zip",
|
"exportEmotePack": "Izgūt emociju paku kā .zip",
|
||||||
"changedTheChatNameTo": "{username} nomainīja tērzēšanas nosaukumu uz '{chatname}'",
|
"changedTheChatNameTo": "{username} nomainīja tērzēšanas nosaukumu uz '{chatname}'",
|
||||||
|
|
@ -1268,25 +1105,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sendSticker": "Nosūtīt uzlīmi",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"account": "Konts",
|
"account": "Konts",
|
||||||
"@account": {
|
"@account": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"switchToAccount": "Pārslēgties uz kontu {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"commandInvalid": "Nederīga komanda",
|
"commandInvalid": "Nederīga komanda",
|
||||||
"@commandInvalid": {
|
"@commandInvalid": {
|
||||||
"type": "String"
|
"type": "String"
|
||||||
|
|
@ -1372,7 +1195,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteContactToGroupQuestion": "Vai vēlies uzaicināt {contact} uz tērzēšanu \"{groupName}\"?",
|
|
||||||
"emoteExists": "Emocija jau pastāv.",
|
"emoteExists": "Emocija jau pastāv.",
|
||||||
"@emoteExists": {
|
"@emoteExists": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1423,13 +1245,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"appearOnTopDetails": "Ļauj lietotnei parādīties virspusē (nav nepieciešams, ja FluffyChat jau ir iestatīts kā zvanīšanas konts)",
|
|
||||||
"roomHasBeenUpgraded": "Istaba tika atjaunināta",
|
"roomHasBeenUpgraded": "Istaba tika atjaunināta",
|
||||||
"@roomHasBeenUpgraded": {
|
"@roomHasBeenUpgraded": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterRoom": "Ieiet istabā",
|
|
||||||
"enableEmotesGlobally": "Iespējot kā vispārēju emociju paku",
|
"enableEmotesGlobally": "Iespējot kā vispārēju emociju paku",
|
||||||
"@enableEmotesGlobally": {
|
"@enableEmotesGlobally": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1497,18 +1317,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"confirmEventUnpin": "Vai tiešām neatgriezeniski atspraust šo notikumu?",
|
"confirmEventUnpin": "Vai tiešām neatgriezeniski atspraust šo notikumu?",
|
||||||
"badServerVersionsException": "Mājasserveris nodrošina specifikācijas versijas:\n{serverVersions}\nSavukārt, lietotne atbalsta tikai {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"youInvitedUser": "📩 Tu uzaicināji {user}",
|
"youInvitedUser": "📩 Tu uzaicināji {user}",
|
||||||
"@youInvitedUser": {
|
"@youInvitedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1543,11 +1351,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"license": "Licence",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"addToSpace": "Pievienot vietai",
|
"addToSpace": "Pievienot vietai",
|
||||||
"unbanFromChat": "Atcelt liegumu tērzēšanā",
|
"unbanFromChat": "Atcelt liegumu tērzēšanā",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
|
|
@ -1565,11 +1368,6 @@
|
||||||
"description": "State that {command} is not a valid /command."
|
"description": "State that {command} is not a valid /command."
|
||||||
},
|
},
|
||||||
"redactMessageDescription": "Ziņa tiks labota visiem šīs sarunas dalībniekiem. To nevar atdarīt.",
|
"redactMessageDescription": "Ziņa tiks labota visiem šīs sarunas dalībniekiem. To nevar atdarīt.",
|
||||||
"rejoin": "Pievienoties atkārtoti",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"recoveryKey": "Atkopes atslēga",
|
"recoveryKey": "Atkopes atslēga",
|
||||||
"redactMessage": "Labot ziņu",
|
"redactMessage": "Labot ziņu",
|
||||||
"@redactMessage": {
|
"@redactMessage": {
|
||||||
|
|
@ -1597,7 +1395,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dehydrateTorLong": "TOR lietotājiem ir ieteicams izgūt sesiju pirms loga aizvēršanas.",
|
|
||||||
"yourPublicKey": "Tava publiskā atslēga",
|
"yourPublicKey": "Tava publiskā atslēga",
|
||||||
"@yourPublicKey": {
|
"@yourPublicKey": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1671,11 +1468,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Dalībnieku izmaiņām",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"joinRoom": "Pievienoties istabai",
|
"joinRoom": "Pievienoties istabai",
|
||||||
"@joinRoom": {
|
"@joinRoom": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1693,9 +1485,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"serverRequiresEmail": "Šim serverim ir nepieciešams pārbaudīt Tavu e-pasta adresi reģistrācijai.",
|
"serverRequiresEmail": "Šim serverim ir nepieciešams pārbaudīt Tavu e-pasta adresi reģistrācijai.",
|
||||||
"hideUnimportantStateEvents": "Paslēpt nebūtiskus stāvokļa notikumus",
|
|
||||||
"screenSharingTitle": "ekrāna kopīgošana",
|
"screenSharingTitle": "ekrāna kopīgošana",
|
||||||
"widgetCustom": "Pielāgots",
|
|
||||||
"sentCallInformations": "{senderName} nosūtīja informāciju par zvanu",
|
"sentCallInformations": "{senderName} nosūtīja informāciju par zvanu",
|
||||||
"@sentCallInformations": {
|
"@sentCallInformations": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1705,7 +1495,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addToSpaceDescription": "Atlasīt vietu, kurai pievienot šo tērzēšanu.",
|
|
||||||
"googlyEyesContent": "{senderName} sūta izbolītas acis",
|
"googlyEyesContent": "{senderName} sūta izbolītas acis",
|
||||||
"@googlyEyesContent": {
|
"@googlyEyesContent": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1738,7 +1527,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"addChatDescription": "Pievienot tērzēšanas aprakstu…",
|
|
||||||
"sentAnAudio": "🎤 {username} nosūtīja skaņu",
|
"sentAnAudio": "🎤 {username} nosūtīja skaņu",
|
||||||
"@sentAnAudio": {
|
"@sentAnAudio": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1781,7 +1569,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"publish": "Publicēt",
|
|
||||||
"openLinkInBrowser": "Atvērt saiti pārlūkā",
|
"openLinkInBrowser": "Atvērt saiti pārlūkā",
|
||||||
"clearArchive": "Iztīrīt arhīvu",
|
"clearArchive": "Iztīrīt arhīvu",
|
||||||
"appLock": "Lietotnes aizslēgšana",
|
"appLock": "Lietotnes aizslēgšana",
|
||||||
|
|
@ -1837,8 +1624,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteGroupChat": "📨 Uzaicinājums uz kopas tērzēšanu",
|
"inviteGroupChat": "📨 Uzaicinājums uz kopas tērzēšanu",
|
||||||
"appearOnTop": "Parādīt virspusē",
|
|
||||||
"invitePrivateChat": "📨 Uzaicinājums uz privātu tērzēšanu",
|
|
||||||
"verifyTitle": "Apliecina citu kontu",
|
"verifyTitle": "Apliecina citu kontu",
|
||||||
"@verifyTitle": {
|
"@verifyTitle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1882,11 +1667,6 @@
|
||||||
"description": "Usage hint for the command /ban"
|
"description": "Usage hint for the command /ban"
|
||||||
},
|
},
|
||||||
"importEmojis": "Ievietot emocijzīmes",
|
"importEmojis": "Ievietot emocijzīmes",
|
||||||
"confirm": "Apstiprināt",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"wasDirectChatDisplayName": "Tukša tērzēšana (bija {oldDisplayName})",
|
"wasDirectChatDisplayName": "Tukša tērzēšana (bija {oldDisplayName})",
|
||||||
"@wasDirectChatDisplayName": {
|
"@wasDirectChatDisplayName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1945,7 +1725,6 @@
|
||||||
},
|
},
|
||||||
"newGroup": "Jauna kopa",
|
"newGroup": "Jauna kopa",
|
||||||
"bundleName": "Komplekta nosaukums",
|
"bundleName": "Komplekta nosaukums",
|
||||||
"dehydrateTor": "TOR lietotāji: izgūt sesiju",
|
|
||||||
"removeFromSpace": "Noņemt no vietas",
|
"removeFromSpace": "Noņemt no vietas",
|
||||||
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
||||||
"@dateAndTimeOfDay": {
|
"@dateAndTimeOfDay": {
|
||||||
|
|
@ -2026,7 +1805,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"profileNotFound": "Lietotāju serverī nevarēja atrast. Varbūt ir nebūšanas ar savienojumu vai lietotājs nepastāv.",
|
|
||||||
"jump": "Pārlēkt",
|
"jump": "Pārlēkt",
|
||||||
"groups": "Kopas",
|
"groups": "Kopas",
|
||||||
"@groups": {
|
"@groups": {
|
||||||
|
|
@ -2058,15 +1836,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sorryThatsNotPossible": "Atvaino! Tas nav iespējams",
|
"sorryThatsNotPossible": "Atvaino! Tas nav iespējams",
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"oopsSomethingWentWrong": "Ups! Kaut kas nogāja greizi…",
|
"oopsSomethingWentWrong": "Ups! Kaut kas nogāja greizi…",
|
||||||
"@oopsSomethingWentWrong": {
|
"@oopsSomethingWentWrong": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2102,11 +1871,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"containsUserName": "Satur lietotājvārdu",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"messages": "Ziņas",
|
"messages": "Ziņas",
|
||||||
"@messages": {
|
"@messages": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2143,11 +1907,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Iestatīt pielāgotas emocijas",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"startedACall": "{senderName} uzsāka zvanu",
|
"startedACall": "{senderName} uzsāka zvanu",
|
||||||
"@startedACall": {
|
"@startedACall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2167,11 +1926,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Paziņojumi iespējoti šim kontam",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"deleteMessage": "Izdzēst ziņu",
|
"deleteMessage": "Izdzēst ziņu",
|
||||||
"@deleteMessage": {
|
"@deleteMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2187,23 +1941,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setTheme": "Iestatīt izskatu:",
|
|
||||||
"changeTheHomeserver": "Mainīt mājasserveri",
|
"changeTheHomeserver": "Mainīt mājasserveri",
|
||||||
"@changeTheHomeserver": {
|
"@changeTheHomeserver": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"youJoinedTheChat": "Tu pievienojies tērzēšanai",
|
"youJoinedTheChat": "Tu pievienojies tērzēšanai",
|
||||||
"wallpaper": "Ekrāntapete:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"openVideoCamera": "Atvērt kameru video uzņemšanai",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"play": "Atskaņot {fileName}",
|
"play": "Atskaņot {fileName}",
|
||||||
"@play": {
|
"@play": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2244,7 +1987,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"widgetName": "Nosaukums",
|
|
||||||
"sentASticker": "😊 {username} nosūtīja uzlīmi",
|
"sentASticker": "😊 {username} nosūtīja uzlīmi",
|
||||||
"@sentASticker": {
|
"@sentASticker": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2254,7 +1996,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"errorAddingWidget": "Kļūda logrīka pievienošanā.",
|
|
||||||
"commandHint_dm": "Uzsākt tiešu tērzēšanu\nLai atspējotu šifrēšanu, jāizmanto --no-encryption",
|
"commandHint_dm": "Uzsākt tiešu tērzēšanu\nLai atspējotu šifrēšanu, jāizmanto --no-encryption",
|
||||||
"@commandHint_dm": {
|
"@commandHint_dm": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2350,18 +2091,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Lūgums izvēlēties",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"share": "Kopīgot",
|
"share": "Kopīgot",
|
||||||
"@share": {
|
"@share": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"commandHint_googly": "Nosūtīt izbolītu acu pāri",
|
"commandHint_googly": "Nosūtīt izbolītu acu pāri",
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Lūgums vēlāk mēģināt vēlreiz vai izvēlēties citu serveri.",
|
|
||||||
"createGroup": "Izveidot kopu",
|
"createGroup": "Izveidot kopu",
|
||||||
"privacy": "Privātums",
|
"privacy": "Privātums",
|
||||||
"@privacy": {
|
"@privacy": {
|
||||||
|
|
@ -2378,18 +2113,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"hydrateTorLong": "Vai sesija pēdējoreiz tika izgūta TOR? Ātri ievieto to un turpini tērzēšanu!",
|
|
||||||
"time": "Laiks",
|
"time": "Laiks",
|
||||||
"enterYourHomeserver": "Jāievada mājasserveris",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"botMessages": "Robotprogrammatūras ziņām",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Par saturu tika ziņos servera pārvaldītājiem",
|
"contentHasBeenReported": "Par saturu tika ziņos servera pārvaldītājiem",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2431,11 +2155,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setInvitationLink": "Iestatīt uzaicinājumu saiti",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pinMessage": "Piespraust istabai",
|
"pinMessage": "Piespraust istabai",
|
||||||
"screenSharingDetail": "Tu kopīgo savu ekrānu FluffyChat",
|
"screenSharingDetail": "Tu kopīgo savu ekrānu FluffyChat",
|
||||||
"muteChat": "Apklusināt tērzēšanu",
|
"muteChat": "Apklusināt tērzēšanu",
|
||||||
|
|
@ -2455,7 +2174,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"indexedDbErrorTitle": "Privātā režīma nebūšanas",
|
|
||||||
"endedTheCall": "{senderName} beidza zvanu",
|
"endedTheCall": "{senderName} beidza zvanu",
|
||||||
"@endedTheCall": {
|
"@endedTheCall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2477,33 +2195,20 @@
|
||||||
"hideRedactedMessages": "Paslēpt labošanas ziņas",
|
"hideRedactedMessages": "Paslēpt labošanas ziņas",
|
||||||
"hideRedactedMessagesBody": "Ja kāds labo ziņu, tā vairs nebūs redzama tērzēšanā.",
|
"hideRedactedMessagesBody": "Ja kāds labo ziņu, tā vairs nebūs redzama tērzēšanā.",
|
||||||
"blockListDescription": "Ir iespējams atslēgt traucējošus lietotājus. Nebūs iespējams saņem jebkādas ziņas vai uzaicinājumus uz istabām no lietotājiem, kas ir personīgajā izslēgšanas sarakstā.",
|
"blockListDescription": "Ir iespējams atslēgt traucējošus lietotājus. Nebūs iespējams saņem jebkādas ziņas vai uzaicinājumus uz istabām no lietotājiem, kas ir personīgajā izslēgšanas sarakstā.",
|
||||||
"hideMemberChangesInPublicChatsBody": "Nerādīt tērzēšanas plūsmā, ja kāds pievienojas publiskai tērzēšanai vai pamet to, lai uzlabotu lasāmību.",
|
|
||||||
"overview": "Pārskats",
|
"overview": "Pārskats",
|
||||||
"notifyMeFor": "Paziņot man par",
|
|
||||||
"wrongRecoveryKey": "Atvaino... Nešķiet, ka šī būtu pareiza atkopes atslēga.",
|
"wrongRecoveryKey": "Atvaino... Nešķiet, ka šī būtu pareiza atkopes atslēga.",
|
||||||
"block": "Izslēgt",
|
"block": "Izslēgt",
|
||||||
"hideMemberChangesInPublicChats": "Paslēpt dalībnieku izmaiņas publiskajās tērzēšanās",
|
|
||||||
"passwordRecoverySettings": "Paroles atkopes iestatījumi",
|
"passwordRecoverySettings": "Paroles atkopes iestatījumi",
|
||||||
"blockedUsers": "Atslēgtie lietotāji",
|
"blockedUsers": "Atslēgtie lietotāji",
|
||||||
"transparent": "Caurspīdīgs",
|
"transparent": "Caurspīdīgs",
|
||||||
"searchForUsers": "Meklēt @lietotājus...",
|
"searchForUsers": "Meklēt @lietotājus...",
|
||||||
"pleaseEnterYourCurrentPassword": "Lūgums ievadīt savu pašreizējo paroli",
|
"pleaseEnterYourCurrentPassword": "Lūgums ievadīt savu pašreizējo paroli",
|
||||||
"publicSpaces": "Publiskas vietas",
|
"publicSpaces": "Publiskas vietas",
|
||||||
"decline": "Atteikt",
|
|
||||||
"joinSpace": "Pievienoties vietai",
|
"joinSpace": "Pievienoties vietai",
|
||||||
"createGroupAndInviteUsers": "Izveidot kopu un uzaicināt lietotājus",
|
"createGroupAndInviteUsers": "Izveidot kopu un uzaicināt lietotājus",
|
||||||
"groupCanBeFoundViaSearch": "Kopu var atrast meklēšanā",
|
"groupCanBeFoundViaSearch": "Kopu var atrast meklēšanā",
|
||||||
"commandHint_sendraw": "Nosūtīt neapstrādātu JSON",
|
"commandHint_sendraw": "Nosūtīt neapstrādātu JSON",
|
||||||
"newPassword": "Jauna parole",
|
"newPassword": "Jauna parole",
|
||||||
"forwardMessageTo": "Pārsūtīt ziņu uz {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceipts": "Nosūtīt lasīšanas atskaites",
|
"sendReadReceipts": "Nosūtīt lasīšanas atskaites",
|
||||||
"verifyOtherUser": "🔐 Apliecināt otru lietotāju",
|
"verifyOtherUser": "🔐 Apliecināt otru lietotāju",
|
||||||
"verifyOtherDevice": "🔐 Apliecināt otru ierīci",
|
"verifyOtherDevice": "🔐 Apliecināt otru ierīci",
|
||||||
|
|
@ -2561,28 +2266,6 @@
|
||||||
"commandHint_ignore": "Neņemt vērā norādīto Matrix Id",
|
"commandHint_ignore": "Neņemt vērā norādīto Matrix Id",
|
||||||
"searchChatsRooms": "Meklēt #tērzēšanas, @lietotājus...",
|
"searchChatsRooms": "Meklēt #tērzēšanas, @lietotājus...",
|
||||||
"groupName": "Kopas nosaukums",
|
"groupName": "Kopas nosaukums",
|
||||||
"presenceStyle": "Klātesamība:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"youInvitedToBy": "📩 Tu tiki uzaicināts ar saiti:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userWouldLikeToChangeTheChat": "{user} vēlas pievienoties tērzēšanai.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Vēl nav izveidota neviena publiska saite",
|
|
||||||
"knock": "Pieklauvēt",
|
"knock": "Pieklauvēt",
|
||||||
"stickers": "Uzlīmes",
|
"stickers": "Uzlīmes",
|
||||||
"usersMustKnock": "Lietotājiem jāpieklauvē",
|
"usersMustKnock": "Lietotājiem jāpieklauvē",
|
||||||
|
|
@ -2599,12 +2282,10 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nothingFound": "Nekas netika atrasts...",
|
"nothingFound": "Nekas netika atrasts...",
|
||||||
"startConversation": "Uzsākt sarunu",
|
|
||||||
"databaseMigrationTitle": "Datubāze ir optimizēta",
|
"databaseMigrationTitle": "Datubāze ir optimizēta",
|
||||||
"leaveEmptyToClearStatus": "Atstāt tukšu, lai notīrītu savu stāvokli.",
|
"leaveEmptyToClearStatus": "Atstāt tukšu, lai notīrītu savu stāvokli.",
|
||||||
"pleaseChooseAStrongPassword": "Lūgums izvēlēties spēcīgu paroli",
|
"pleaseChooseAStrongPassword": "Lūgums izvēlēties spēcīgu paroli",
|
||||||
"passwordIsWrong": "Ievadītā parole ir nepareiza",
|
"passwordIsWrong": "Ievadītā parole ir nepareiza",
|
||||||
"publicLink": "Publiska saite",
|
|
||||||
"thisDevice": "Šī ierīce:",
|
"thisDevice": "Šī ierīce:",
|
||||||
"acceptedKeyVerification": "{sender} apstiprināja atslēgas apliecināšanu",
|
"acceptedKeyVerification": "{sender} apstiprināja atslēgas apliecināšanu",
|
||||||
"@acceptedKeyVerification": {
|
"@acceptedKeyVerification": {
|
||||||
|
|
@ -2615,7 +2296,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"userRole": "Lietotāja loma",
|
|
||||||
"noDatabaseEncryption": "Šajā platformā datubāzes šifrēšana netiek nodrošināta",
|
"noDatabaseEncryption": "Šajā platformā datubāzes šifrēšana netiek nodrošināta",
|
||||||
"presencesToggle": "Rādīt citu lietotāju stāvokļa ziņas",
|
"presencesToggle": "Rādīt citu lietotāju stāvokļa ziņas",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
|
|
@ -2626,15 +2306,6 @@
|
||||||
"passwordsDoNotMatch": "Paroles nesakrīt",
|
"passwordsDoNotMatch": "Paroles nesakrīt",
|
||||||
"publicChatAddresses": "Publiskas tērzēšanas adreses",
|
"publicChatAddresses": "Publiskas tērzēšanas adreses",
|
||||||
"createNewAddress": "Izveidot jaunu adresi",
|
"createNewAddress": "Izveidot jaunu adresi",
|
||||||
"minimumPowerLevel": "{level} ir zemākais spēka līmenis.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"discover": "Atklāt",
|
"discover": "Atklāt",
|
||||||
"unreadChatsInApp": "{appname}: {unread} nelasītas tērzēšanas",
|
"unreadChatsInApp": "{appname}: {unread} nelasītas tērzēšanas",
|
||||||
"@unreadChatsInApp": {
|
"@unreadChatsInApp": {
|
||||||
|
|
@ -2648,21 +2319,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"subspace": "Apakšvieta",
|
|
||||||
"addChatOrSubSpace": "Pievienot tērzēšanu vai apakšvietu",
|
"addChatOrSubSpace": "Pievienot tērzēšanu vai apakšvietu",
|
||||||
"formattedMessagesDescription": "Attēlot bagātinātu ziņu saturu, piemēram, ar Markdown iezīmētu treknrakstu.",
|
"formattedMessagesDescription": "Attēlot bagātinātu ziņu saturu, piemēram, ar Markdown iezīmētu treknrakstu.",
|
||||||
"databaseBuildErrorBody": "Nebija iespējams izveidot SQlite datubāzi. Lietotne pagaidām mēģina izmantot iepriekšējo datubāzi. Lūgums ziņot par šo kļūdu izstrādātājiem {url}. Kļūdas ziņojums ir: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sessionLostBody": "Sesija ir zaudēta. Lūgums ziņot par šo kļūdu izstrādātājiem {url}. Kļūdas ziņojums ir: {error}",
|
"sessionLostBody": "Sesija ir zaudēta. Lūgums ziņot par šo kļūdu izstrādātājiem {url}. Kļūdas ziņojums ir: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2776,9 +2434,6 @@
|
||||||
"chatPermissionsDescription": "Noteikt, kurš spēka līmenis ir nepieciešams noteiktām darbībām šajā tērzēšanā. Spēka līmeņi 0, 50 un 100 parasti atbilst lietotājiem, moderatoriem un pārvaldītājiem, bet ir iespējams jebkāds iedalījums.",
|
"chatPermissionsDescription": "Noteikt, kurš spēka līmenis ir nepieciešams noteiktām darbībām šajā tērzēšanā. Spēka līmeņi 0, 50 un 100 parasti atbilst lietotājiem, moderatoriem un pārvaldītājiem, bet ir iespējams jebkāds iedalījums.",
|
||||||
"doesNotSeemToBeAValidHomeserver": "Neizskatās pēc saderīga mājasservera. Nepareizs URL?",
|
"doesNotSeemToBeAValidHomeserver": "Neizskatās pēc saderīga mājasservera. Nepareizs URL?",
|
||||||
"loginWithMatrixId": "Pieteikties ar Matrix-Id",
|
"loginWithMatrixId": "Pieteikties ar Matrix-Id",
|
||||||
"discoverHomeservers": "Atklāt mājasserverus",
|
|
||||||
"whatIsAHomeserver": "Kas ir mājasserveris?",
|
|
||||||
"homeserverDescription": "Visi lietotāja dati tiek glabāti mājasserverī, gluži kā ar e-pasta nodrošinātāju. Ir iespējams izvēlēties, kuru mājasserveri izmantot, saglabājot iespēju sazināties ar ikvienu. Vairāk var uzzināt https://matrix.org.",
|
|
||||||
"updateInstalled": "🎉 Atjauninājums {version} uzstādīts.",
|
"updateInstalled": "🎉 Atjauninājums {version} uzstādīts.",
|
||||||
"@updateInstalled": {
|
"@updateInstalled": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2789,20 +2444,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"changelog": "Izmaiņu žurnāls",
|
"changelog": "Izmaiņu žurnāls",
|
||||||
"countChatsAndCountParticipants": "{chats} tērzēšanas un {participants} dalībnieki",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "Vairs netika atrasta neviena tērzēšana...",
|
"noMoreChatsFound": "Vairs netika atrasta neviena tērzēšana...",
|
||||||
"joinedChats": "Tērzēšanas, kurās piedalos",
|
|
||||||
"unread": "Nelasītas",
|
"unread": "Nelasītas",
|
||||||
"space": "Vieta",
|
"space": "Vieta",
|
||||||
"spaces": "Vietas",
|
"spaces": "Vietas",
|
||||||
|
|
@ -2876,7 +2518,6 @@
|
||||||
"compress": "Saspiest",
|
"compress": "Saspiest",
|
||||||
"unableToJoinChat": "Nevarēja pievienoties tērzēšanai. Varbūt otra puse jau ir aizvērusi sarunu.",
|
"unableToJoinChat": "Nevarēja pievienoties tērzēšanai. Varbūt otra puse jau ir aizvērusi sarunu.",
|
||||||
"appWantsToUseForLoginDescription": "Ar šo tiek ļauts lietotnei un tīmekļvietnei kopīgot informāciju par Tevi.",
|
"appWantsToUseForLoginDescription": "Ar šo tiek ļauts lietotnei un tīmekļvietnei kopīgot informāciju par Tevi.",
|
||||||
"appIntroduction": "FluffyChat ļauj tērzēt ar draugiem, kuri izmanto dažādas ziņojumapmaiņas lietotnes. Vairāk var uzzināt https://matrix.org vai vienkārši piesitot *Turpināt*.",
|
|
||||||
"synchronizingPleaseWaitCounter": " Sinhronizē... ({percentage}%)",
|
"synchronizingPleaseWaitCounter": " Sinhronizē... ({percentage}%)",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2968,10 +2609,7 @@
|
||||||
"notSupportedOnThisDevice": "Šajā ierīcē nav atbalstīts",
|
"notSupportedOnThisDevice": "Šajā ierīcē nav atbalstīts",
|
||||||
"enterNewChat": "Ieiet jaunajā tērzēšanā",
|
"enterNewChat": "Ieiet jaunajā tērzēšanā",
|
||||||
"commandHint_roomupgrade": "Uzlabot šo istabu uz norādīto istabas versiju",
|
"commandHint_roomupgrade": "Uzlabot šo istabu uz norādīto istabas versiju",
|
||||||
"setCustomPermissionLevel": "Iestatīt pielāgotu atļauju līmeni",
|
|
||||||
"setPermissionsLevelDescription": "Lūgums zemāk atlasīt iepriekšizveidotu lomu vai ievadīt pielāgotu atļauju līmeni starp 0 un 100.",
|
|
||||||
"ignoreUser": "Neņemt vērā lietotāju",
|
"ignoreUser": "Neņemt vērā lietotāju",
|
||||||
"normalUser": "Parasts lietotājs",
|
|
||||||
"youHaveKnocked": "Tu pieklauvēji",
|
"youHaveKnocked": "Tu pieklauvēji",
|
||||||
"pleaseWaitUntilInvited": "Lūgums tagad uzgaidīt, līdz kāds no istabas uzaicinās Tevi.",
|
"pleaseWaitUntilInvited": "Lūgums tagad uzgaidīt, līdz kāds no istabas uzaicinās Tevi.",
|
||||||
"approve": "Apstiprināt",
|
"approve": "Apstiprināt",
|
||||||
|
|
@ -3007,10 +2645,6 @@
|
||||||
"longPressToRecordVoiceMessage": "Ilga piespiešana, lai ierakstītu balss ziņu.",
|
"longPressToRecordVoiceMessage": "Ilga piespiešana, lai ierakstītu balss ziņu.",
|
||||||
"pause": "Apturēt",
|
"pause": "Apturēt",
|
||||||
"resume": "Atsākt",
|
"resume": "Atsākt",
|
||||||
"newSubSpace": "Jauna apakšvieta",
|
|
||||||
"moveToDifferentSpace": "Pārvietot uz citu vietu",
|
|
||||||
"moveUp": "Pārvietot augšup",
|
|
||||||
"moveDown": "Pārvietot lejup",
|
|
||||||
"removeFromSpaceDescription": "Tērzēšana tiks noņemta no vietas, bet tā joprojām būs redzama tērzēšanu sarakstā.",
|
"removeFromSpaceDescription": "Tērzēšana tiks noņemta no vietas, bet tā joprojām būs redzama tērzēšanu sarakstā.",
|
||||||
"countChats": "{chats} tērzēšanas",
|
"countChats": "{chats} tērzēšanas",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3039,7 +2673,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Ziedot",
|
|
||||||
"startedAPoll": "{username} uzsāka aptauju.",
|
"startedAPoll": "{username} uzsāka aptauju.",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3053,7 +2686,6 @@
|
||||||
"startPoll": "Sākt aptauju",
|
"startPoll": "Sākt aptauju",
|
||||||
"endPoll": "Noslēgt aptauju",
|
"endPoll": "Noslēgt aptauju",
|
||||||
"answersVisible": "Atbildes ir redzamas",
|
"answersVisible": "Atbildes ir redzamas",
|
||||||
"answersHidden": "Atbildes ir paslēptas",
|
|
||||||
"pollQuestion": "Aptaujas jautājums",
|
"pollQuestion": "Aptaujas jautājums",
|
||||||
"answerOption": "Atbildes iespēja",
|
"answerOption": "Atbildes iespēja",
|
||||||
"addAnswerOption": "Pievienot atbildes iespēju",
|
"addAnswerOption": "Pievienot atbildes iespēju",
|
||||||
|
|
@ -3121,5 +2753,10 @@
|
||||||
"logs": "Žurnāli",
|
"logs": "Žurnāli",
|
||||||
"advancedConfigs": "Izvērsta konfigurācijas",
|
"advancedConfigs": "Izvērsta konfigurācijas",
|
||||||
"advancedConfigurations": "Izvērstas konfigurācijas",
|
"advancedConfigurations": "Izvērstas konfigurācijas",
|
||||||
"signInWithLabel": "Pieteikties ar:"
|
"theProcessWasCanceled": "Darbība tika atcelta.",
|
||||||
}
|
"signIn": "Pieteikties",
|
||||||
|
"createNewAccount": "Izveidot jaunu kontu",
|
||||||
|
"signUpGreeting": "FluffyChat ir decentralizēta. Jāatlasa serveris, kurā ir vēlēšanās izveidot savu kontu, un aiziet!",
|
||||||
|
"signInGreeting": "Jau ir Matrix konts? Laipni lūdzam atpakaļ! Jāatlasa savs mājasserveris un jāpiesakās.",
|
||||||
|
"appIntro": "Ar FluffyChat vari tērzēt ar saviem draugiem. Tā ir droša un decentralizēta [matrix] ziņapmaiņas lietotne. Vairāk var uzzināt https://matrix.org, ja ir vēlēšanās, vai vienkārši jāpiesakās."
|
||||||
|
}
|
||||||
|
|
@ -72,7 +72,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"areGuestsAllowedToJoin": "Skal gjester tillates å ta del",
|
"areGuestsAllowedToJoin": "Kan gjester bli med?",
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -128,11 +128,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Bot-meldinger",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Avbryt",
|
"cancel": "Avbryt",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -357,31 +352,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Bekreft",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Koble til",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kontakt invitert til gruppen",
|
"contactHasBeenInvitedToTheGroup": "Kontakt invitert til gruppen",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Inneholder visningsnavn",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Inneholder brukernavn",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Innholdet har blitt rapportert til tjeneradministratorene",
|
"contentHasBeenReported": "Innholdet har blitt rapportert til tjeneradministratorene",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -456,33 +431,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day} {month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day} {month} {year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Dette vil skru av din brukerkonto for godt, og kan ikke angres! Er du sikker?",
|
"deactivateAccountWarning": "Dette vil skru av din brukerkonto for godt, og kan ikke angres! Er du sikker?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -583,11 +531,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Du må velge en smilefjes-kode og et bilde!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Tom sludring",
|
"emptyChat": "Tom sludring",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -637,11 +580,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Skriv inn din hjemmetjener",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"everythingReady": "Alt er klart!",
|
"everythingReady": "Alt er klart!",
|
||||||
"@everythingReady": {
|
"@everythingReady": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -753,11 +691,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identitet",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Ignorer",
|
"ignore": "Ignorer",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -819,11 +752,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Invitasjon for meg",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} har invitert deg til FluffyChat. \n1. Installer FluffyChat: https://fluffychat.im \n2. Registrer deg eller logg inn \n3. Åpne invitasjonslenken: \n {link}",
|
"inviteText": "{username} har invitert deg til FluffyChat. \n1. Installer FluffyChat: https://fluffychat.im \n2. Registrer deg eller logg inn \n3. Åpne invitasjonslenken: \n {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -903,11 +831,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Lisens",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Lys",
|
"lightTheme": "Lys",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -951,11 +874,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Medlemsendringer",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Nevn",
|
"mention": "Nevn",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1041,11 +959,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Merknader påslått for denne kontoen",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} brukere skriver …",
|
"numUsersTyping": "{count} brukere skriver …",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1065,7 +978,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"ok": "OK",
|
"ok": "Ok",
|
||||||
"@ok": {
|
"@ok": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1212,11 +1125,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Ta del igjen",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Fjern",
|
"remove": "Fjern",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1236,11 +1144,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Fjern enhet",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Opphev bannlysning",
|
"unbanFromChat": "Opphev bannlysning",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1281,15 +1184,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Sett av {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Send",
|
"send": "Send",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1320,11 +1214,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Send original",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Send video",
|
"sendVideo": "Send video",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1384,21 +1273,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Sett tilpassede smilefjes",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Sett invitasjonslenke",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Sett tilgangsnivå",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Angi status",
|
"setStatus": "Angi status",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1544,15 +1418,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, other{{unreadCount} uleste sludringer}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} og {count} andre skriver…",
|
"userAndOthersAreTyping": "{username} og {count} andre skriver…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1662,11 +1527,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Bakgrunnsbilde:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Advarsel!",
|
"warning": "Advarsel!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1727,21 +1587,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleUnread": "Marker som lest/ulest",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Veksle forstumming",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleFavorite": "Veksle favorittmerking",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"noConnectionToTheServer": "Ingen tilkobling til tjeneren",
|
"noConnectionToTheServer": "Ingen tilkobling til tjeneren",
|
||||||
"@noConnectionToTheServer": {
|
"@noConnectionToTheServer": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1777,18 +1622,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sendOnEnter": "Trykk på enter for å sende",
|
"sendOnEnter": "Trykk på enter for å sende",
|
||||||
"badServerVersionsException": "Hjemmeserveren støtter følgene Spec-versjoner:\n{serverVersions}\nMen applikasjonen støtter kun {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"blocked": "Blokkert",
|
"blocked": "Blokkert",
|
||||||
"@blocked": {
|
"@blocked": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1832,8 +1665,6 @@
|
||||||
},
|
},
|
||||||
"appLockDescription": "Lås appen med en PIN-kode når den ikke er i bruk",
|
"appLockDescription": "Lås appen med en PIN-kode når den ikke er i bruk",
|
||||||
"ignoreUser": "Ignorer bruker",
|
"ignoreUser": "Ignorer bruker",
|
||||||
"setCustomPermissionLevel": "Angi egendefinert tillatelsesnivå",
|
|
||||||
"normalUser": "Vanlig bruker",
|
|
||||||
"replace": "Erstatt",
|
"replace": "Erstatt",
|
||||||
"noMoreChatsFound": "Ingen flere chatter funnet ...",
|
"noMoreChatsFound": "Ingen flere chatter funnet ...",
|
||||||
"confirmMatrixId": "Bekreft Matrix-IDen din for å slette kontoen din.",
|
"confirmMatrixId": "Bekreft Matrix-IDen din for å slette kontoen din.",
|
||||||
|
|
@ -1852,18 +1683,10 @@
|
||||||
"openLinkInBrowser": "Åpne lenke i nettleser",
|
"openLinkInBrowser": "Åpne lenke i nettleser",
|
||||||
"start": "Start",
|
"start": "Start",
|
||||||
"passwordsDoNotMatch": "Passordene stemmer ikke overens",
|
"passwordsDoNotMatch": "Passordene stemmer ikke overens",
|
||||||
"decline": "Avslå",
|
|
||||||
"emailOrUsername": "E-post eller brukernavn",
|
|
||||||
"encryptThisChat": "Krypter denne chatten",
|
"encryptThisChat": "Krypter denne chatten",
|
||||||
"nextAccount": "Neste konto",
|
|
||||||
"doNotShowAgain": "Ikke vis igjen",
|
"doNotShowAgain": "Ikke vis igjen",
|
||||||
"notificationRuleContainsUserName": "Inneholder brukernavn",
|
"notificationRuleContainsUserName": "Inneholder brukernavn",
|
||||||
"notificationRuleMaster": "Demp alle varslinger",
|
"notificationRuleMaster": "Demp alle varslinger",
|
||||||
"presenceStyle": "Tilstedeværelse:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"verified": "Verifisert",
|
"verified": "Verifisert",
|
||||||
"@verified": {
|
"@verified": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1875,11 +1698,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"recoveryKey": "Gjenopprettingsnøkkel",
|
"recoveryKey": "Gjenopprettingsnøkkel",
|
||||||
"sendSticker": "Send sticker",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"shareLocation": "Del lokasjon",
|
"shareLocation": "Del lokasjon",
|
||||||
"@shareLocation": {
|
"@shareLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1897,7 +1715,6 @@
|
||||||
},
|
},
|
||||||
"dismiss": "Avvis",
|
"dismiss": "Avvis",
|
||||||
"openChat": "Åpne chat",
|
"openChat": "Åpne chat",
|
||||||
"addWidget": "Legg til widget",
|
|
||||||
"reopenChat": "Gjenåpne chat",
|
"reopenChat": "Gjenåpne chat",
|
||||||
"changeTheDescriptionOfTheGroup": "Endre beskrivelsen til chatten",
|
"changeTheDescriptionOfTheGroup": "Endre beskrivelsen til chatten",
|
||||||
"inviteOtherUsers": "Inviter andre brukere til denne chatten",
|
"inviteOtherUsers": "Inviter andre brukere til denne chatten",
|
||||||
|
|
@ -1906,14 +1723,7 @@
|
||||||
"notificationRuleJitsi": "Jitsi",
|
"notificationRuleJitsi": "Jitsi",
|
||||||
"takeAPhoto": "Ta et bilde",
|
"takeAPhoto": "Ta et bilde",
|
||||||
"setChatDescription": "Sett chat beskrivelse",
|
"setChatDescription": "Sett chat beskrivelse",
|
||||||
"singlesignon": "Single Sign on (SSO)",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"openGallery": "Åpne galleri",
|
"openGallery": "Åpne galleri",
|
||||||
"widgetCustom": "Egendefinert",
|
|
||||||
"widgetVideo": "Video",
|
|
||||||
"pushNotificationsNotAvailable": "Push-varsler er ikke tilgjengelige",
|
"pushNotificationsNotAvailable": "Push-varsler er ikke tilgjengelige",
|
||||||
"gallery": "Galleri",
|
"gallery": "Galleri",
|
||||||
"moderatorLevel": "{level} - Moderator",
|
"moderatorLevel": "{level} - Moderator",
|
||||||
|
|
@ -1956,7 +1766,6 @@
|
||||||
"notificationRuleEncrypted": "Kkryptert",
|
"notificationRuleEncrypted": "Kkryptert",
|
||||||
"more": "Mer",
|
"more": "Mer",
|
||||||
"passwordIsWrong": "Det inntastede passordet ditt er feil",
|
"passwordIsWrong": "Det inntastede passordet ditt er feil",
|
||||||
"startConversation": "Start samtale",
|
|
||||||
"manageAccount": "Administrer konto",
|
"manageAccount": "Administrer konto",
|
||||||
"nothingFound": "Ingenting funnet...",
|
"nothingFound": "Ingenting funnet...",
|
||||||
"incomingMessages": "Innkommende meldinger",
|
"incomingMessages": "Innkommende meldinger",
|
||||||
|
|
@ -1964,10 +1773,7 @@
|
||||||
"contactServerAdmin": "Kontakt serveradministrator",
|
"contactServerAdmin": "Kontakt serveradministrator",
|
||||||
"setWallpaper": "Sett bakgrunnsbilde",
|
"setWallpaper": "Sett bakgrunnsbilde",
|
||||||
"unsupportedAndroidVersion": "Usupportert Android-versjon",
|
"unsupportedAndroidVersion": "Usupportert Android-versjon",
|
||||||
"widgetName": "Navn",
|
|
||||||
"youJoinedTheChat": "Du har blitt med i chatten",
|
"youJoinedTheChat": "Du har blitt med i chatten",
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"widgetNameError": "Vennligst oppgi et visningsnavn.",
|
|
||||||
"youRejectedTheInvitation": "Du har avvist invitasjonen",
|
"youRejectedTheInvitation": "Du har avvist invitasjonen",
|
||||||
"formattedMessages": "Formaterte meldinger",
|
"formattedMessages": "Formaterte meldinger",
|
||||||
"allDevices": "Alle enheter",
|
"allDevices": "Alle enheter",
|
||||||
|
|
@ -1975,7 +1781,6 @@
|
||||||
"sorryThatsNotPossible": "Beklager... det er ikke mulig",
|
"sorryThatsNotPossible": "Beklager... det er ikke mulig",
|
||||||
"markAsUnread": "Marker som ulest",
|
"markAsUnread": "Marker som ulest",
|
||||||
"newGroup": "Ny gruppe",
|
"newGroup": "Ny gruppe",
|
||||||
"userRole": "Brukerrolle",
|
|
||||||
"addLink": "Legg til lenke",
|
"addLink": "Legg til lenke",
|
||||||
"synchronizingPleaseWaitCounter": " Synkroniserer… ({percentage}%)",
|
"synchronizingPleaseWaitCounter": " Synkroniserer… ({percentage}%)",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
|
|
@ -2037,22 +1842,9 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addChatDescription": "Legg til chat beskrivelse...",
|
|
||||||
"commandHint_roomupgrade": "Oppgrader dette rommet til den gitte romversjonen",
|
"commandHint_roomupgrade": "Oppgrader dette rommet til den gitte romversjonen",
|
||||||
"hideMemberChangesInPublicChatsBody": "Ikke vis i chattens tidslinje hvis noen blir med i eller forlater en offentlig chat for økt lesbarhet.",
|
|
||||||
"overview": "Oversikt",
|
"overview": "Oversikt",
|
||||||
"notifyMeFor": "Varsle meg om",
|
|
||||||
"passwordRecoverySettings": "Innstillinger for gjenoppretting av passord",
|
"passwordRecoverySettings": "Innstillinger for gjenoppretting av passord",
|
||||||
"people": "Folk",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChoose": "Vennligst velg",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Vennligst velg en passordkode",
|
"pleaseChooseAPasscode": "Vennligst velg en passordkode",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2063,20 +1855,13 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseEnterRecoveryKey": "Vennligst skriv inn gjenopprettingsnøkkelen din:",
|
"pleaseEnterYourPin": "Oppgi din PIN-kode",
|
||||||
"pleaseEnterYourPin": "Vennligst skriv inn PIN-koden din",
|
|
||||||
"@pleaseEnterYourPin": {
|
"@pleaseEnterYourPin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"globalChatId": "Global chat-ID",
|
"globalChatId": "Global chat-ID",
|
||||||
"allRooms": "Alle gruppechatter",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"chatPermissions": "Chat tillatelser",
|
"chatPermissions": "Chat tillatelser",
|
||||||
"setPermissionsLevelDescription": "Vennligst velg en forhåndsdefinert rolle nedenfor eller skriv inn et tilpasset tillatelsesnivå mellom 0 og 100.",
|
|
||||||
"commandHint_invite": "Inviter den gitte brukeren til dette rommet",
|
"commandHint_invite": "Inviter den gitte brukeren til dette rommet",
|
||||||
"@commandHint_invite": {
|
"@commandHint_invite": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2101,7 +1886,6 @@
|
||||||
},
|
},
|
||||||
"sendCanceled": "Sending avbrutt",
|
"sendCanceled": "Sending avbrutt",
|
||||||
"loginWithMatrixId": "Logg på med Matrix ID",
|
"loginWithMatrixId": "Logg på med Matrix ID",
|
||||||
"discoverHomeservers": "Oppdag hjemmeservere",
|
|
||||||
"shareInviteLink": "Del invitasjonslenke",
|
"shareInviteLink": "Del invitasjonslenke",
|
||||||
"scanQrCode": "Skann QR-kode",
|
"scanQrCode": "Skann QR-kode",
|
||||||
"messagesStyle": "Meldinger:",
|
"messagesStyle": "Meldinger:",
|
||||||
|
|
@ -2121,8 +1905,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"previousAccount": "Forrige konto",
|
|
||||||
"widgetUrlError": "Dette er ikke en gyldig URL.",
|
|
||||||
"custom": "Egendefinert",
|
"custom": "Egendefinert",
|
||||||
"user": "Bruker",
|
"user": "Bruker",
|
||||||
"users": "Brukere",
|
"users": "Brukere",
|
||||||
|
|
@ -2151,16 +1933,6 @@
|
||||||
"time": "Tid",
|
"time": "Tid",
|
||||||
"messageType": "Meldingstype",
|
"messageType": "Meldingstype",
|
||||||
"sender": "Avsender",
|
"sender": "Avsender",
|
||||||
"publish": "Publiser",
|
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"reportUser": "Rapporter bruker",
|
"reportUser": "Rapporter bruker",
|
||||||
"youHaveWithdrawnTheInvitationFor": "Du har trukket tilbake invitasjonen for {user}",
|
"youHaveWithdrawnTheInvitationFor": "Du har trukket tilbake invitasjonen for {user}",
|
||||||
"@youHaveWithdrawnTheInvitationFor": {
|
"@youHaveWithdrawnTheInvitationFor": {
|
||||||
|
|
@ -2180,24 +1952,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chatDescriptionHasBeenChanged": "Chatbeskrivelsen er endret",
|
"chatDescriptionHasBeenChanged": "Chatbeskrivelsen er endret",
|
||||||
"goToTheNewRoom": "Gå til det nye rommet",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"screenSharingTitle": "skjermdeling",
|
"screenSharingTitle": "skjermdeling",
|
||||||
"screenSharingDetail": "Du deler skjermen din i FuffyChat",
|
"screenSharingDetail": "Du deler skjermen din i FuffyChat",
|
||||||
"callingPermissions": "Anropstillatelser",
|
|
||||||
"callingAccountDetails": "Lar FluffyChat bruke den innebygde Android-oppringingsappen.",
|
|
||||||
"appearOnTop": "Vis øverst",
|
|
||||||
"otherCallingPermissions": "Mikrofon, kamera og andre FluffyChat-tillatelser",
|
|
||||||
"whyIsThisMessageEncrypted": "Hvorfor er denne meldingen uleselig?",
|
"whyIsThisMessageEncrypted": "Hvorfor er denne meldingen uleselig?",
|
||||||
"yourGlobalUserIdIs": "Din globale bruker-ID er: ",
|
"yourGlobalUserIdIs": "Din globale bruker-ID er: ",
|
||||||
"searchChatsRooms": "Søk etter #chatter, @brukere...",
|
"searchChatsRooms": "Søk etter #chatter, @brukere...",
|
||||||
"groupName": "Gruppenavn",
|
"groupName": "Gruppenavn",
|
||||||
"createGroupAndInviteUsers": "Opprett en gruppe og inviter brukere",
|
"createGroupAndInviteUsers": "Opprett en gruppe og inviter brukere",
|
||||||
"invite": "Inviter",
|
"invite": "Inviter",
|
||||||
"wrongPinEntered": "Feil PIN-kode tastet inn! Prøv igjen om {seconds} sekunder...",
|
"wrongPinEntered": "Feil PIN-kode oppgitt! Prøv igjen om {seconds} sekunder...",
|
||||||
"@wrongPinEntered": {
|
"@wrongPinEntered": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2233,11 +1996,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Åpne kameraet for en video",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"obtainingLocation": "Henter sted …",
|
"obtainingLocation": "Henter sted …",
|
||||||
"@obtainingLocation": {
|
"@obtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2246,14 +2004,6 @@
|
||||||
"noDatabaseEncryption": "Databasekryptering støttes ikke på denne plattformen",
|
"noDatabaseEncryption": "Databasekryptering støttes ikke på denne plattformen",
|
||||||
"changeGeneralChatSettings": "Endre generelle chatinnstillinger",
|
"changeGeneralChatSettings": "Endre generelle chatinnstillinger",
|
||||||
"changeTheChatPermissions": "Endre chattillatelsene",
|
"changeTheChatPermissions": "Endre chattillatelsene",
|
||||||
"youInvitedToBy": "📩 Du har blitt invitert via lenke til:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"youInvitedBy": "📩 Du har blitt invitert av {user}",
|
"youInvitedBy": "📩 Du har blitt invitert av {user}",
|
||||||
"@youInvitedBy": {
|
"@youInvitedBy": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2355,25 +2105,12 @@
|
||||||
"pleaseEnterANumber": "Vennligst skriv inn et tall større enn 0",
|
"pleaseEnterANumber": "Vennligst skriv inn et tall større enn 0",
|
||||||
"archiveRoomDescription": "Chatten vil bli flyttet til arkivet. Andre brukere vil kunne se at du har forlatt chatten.",
|
"archiveRoomDescription": "Chatten vil bli flyttet til arkivet. Andre brukere vil kunne se at du har forlatt chatten.",
|
||||||
"removeDevicesDescription": "Du vil bli logget ut av denne enheten og vil ikke lenger kunne motta meldinger.",
|
"removeDevicesDescription": "Du vil bli logget ut av denne enheten og vil ikke lenger kunne motta meldinger.",
|
||||||
"profileNotFound": "Brukeren ble ikke funnet på serveren. Kanskje det er et tilkoblingsproblem, eller brukeren finnes ikke.",
|
|
||||||
"setTheme": "Angi tema:",
|
|
||||||
"setColorTheme": "Angi fargetema:",
|
"setColorTheme": "Angi fargetema:",
|
||||||
"inviteGroupChat": "📨 Invitasjon til gruppechat",
|
"inviteGroupChat": "📨 Invitasjon til gruppechat",
|
||||||
"invitePrivateChat": "📨 Invitasjon til privat chat",
|
|
||||||
"pleaseChooseAStrongPassword": "Vennligst velg et sterkt passord",
|
"pleaseChooseAStrongPassword": "Vennligst velg et sterkt passord",
|
||||||
"publicLink": "Offentlig lenke",
|
|
||||||
"publicChatAddresses": "Offentlige chatadresser",
|
"publicChatAddresses": "Offentlige chatadresser",
|
||||||
"createNewAddress": "Opprett ny adresse",
|
"createNewAddress": "Opprett ny adresse",
|
||||||
"initAppError": "Det oppsto en feil under oppstart av appen",
|
"initAppError": "Det oppsto en feil under oppstart av appen",
|
||||||
"minimumPowerLevel": "{level} er det laveste strømnivået.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceipts": "Send lesebekreftelser",
|
"sendReadReceipts": "Send lesebekreftelser",
|
||||||
"searchMore": "Søk mer...",
|
"searchMore": "Søk mer...",
|
||||||
"shareKeysWithDescription": "Hvilke enheter bør man stole på, slik at de kan lese meldingene dine i krypterte chatter?",
|
"shareKeysWithDescription": "Hvilke enheter bør man stole på, slik at de kan lese meldingene dine i krypterte chatter?",
|
||||||
|
|
@ -2436,28 +2173,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"forwardMessageTo": "Videresende melding til {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Skjul uviktige tilstandshendelser",
|
|
||||||
"hidePresences": "Skjul statuslisten?",
|
"hidePresences": "Skjul statuslisten?",
|
||||||
"signInWithPassword": "Logg inn med passord",
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Prøv igjen senere eller velg en annen server.",
|
|
||||||
"signInWith": "Logg inn med {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMessagesYet": "Ingen meldinger enda",
|
"noMessagesYet": "Ingen meldinger enda",
|
||||||
"notificationRuleMasterDescription": "Overstyrer alle andre regler og deaktiverer alle varsler.",
|
"notificationRuleMasterDescription": "Overstyrer alle andre regler og deaktiverer alle varsler.",
|
||||||
"notificationRuleSuppressNotices": "Undertrykk automatiserte meldinger",
|
"notificationRuleSuppressNotices": "Undertrykk automatiserte meldinger",
|
||||||
|
|
@ -2575,7 +2291,6 @@
|
||||||
"hideRedactedMessagesBody": "Hvis noen redigerer en melding, vil ikke denne meldingen lenger være synlig i chatten.",
|
"hideRedactedMessagesBody": "Hvis noen redigerer en melding, vil ikke denne meldingen lenger være synlig i chatten.",
|
||||||
"blockListDescription": "Du kan blokkere brukere som forstyrrer deg. Du vil ikke kunne motta meldinger eller rominvitasjoner fra brukerne på din personlige blokkeringsliste.",
|
"blockListDescription": "Du kan blokkere brukere som forstyrrer deg. Du vil ikke kunne motta meldinger eller rominvitasjoner fra brukerne på din personlige blokkeringsliste.",
|
||||||
"blockUsername": "Ignorer brukernavn",
|
"blockUsername": "Ignorer brukernavn",
|
||||||
"inviteContactToGroupQuestion": "Vil du invitere {contact} til chatten «{groupName}»?",
|
|
||||||
"noChatDescriptionYet": "Ingen chatbeskrivelse er opprettet ennå.",
|
"noChatDescriptionYet": "Ingen chatbeskrivelse er opprettet ennå.",
|
||||||
"redactMessageDescription": "Meldingen vil bli redigert for alle deltakerne i denne samtalen. Dette kan ikke angres.",
|
"redactMessageDescription": "Meldingen vil bli redigert for alle deltakerne i denne samtalen. Dette kan ikke angres.",
|
||||||
"optionalRedactReason": "(Valgfritt) Årsak til redigering av denne meldingen...",
|
"optionalRedactReason": "(Valgfritt) Årsak til redigering av denne meldingen...",
|
||||||
|
|
@ -2591,10 +2306,6 @@
|
||||||
},
|
},
|
||||||
"dehydrate": "Eksporter økten og slett enheten",
|
"dehydrate": "Eksporter økten og slett enheten",
|
||||||
"dehydrateWarning": "Denne handlingen kan ikke angres. Sørg for at du lagrer sikkerhetskopifilen på en trygg måte.",
|
"dehydrateWarning": "Denne handlingen kan ikke angres. Sørg for at du lagrer sikkerhetskopifilen på en trygg måte.",
|
||||||
"dehydrateTor": "TOR-brukere: Eksporter økt",
|
|
||||||
"dehydrateTorLong": "For TOR-brukere anbefales det å eksportere økten før vinduet lukkes.",
|
|
||||||
"hydrateTor": "TOR-brukere: Importer eksportert økt",
|
|
||||||
"hydrateTorLong": "Eksporterte du økten din sist gang på TOR? Importer den raskt og fortsett å chatte.",
|
|
||||||
"noEncryptionForPublicRooms": "Du kan bare aktivere kryptering på rom som ikke er offentlig tilgjengelig.",
|
"noEncryptionForPublicRooms": "Du kan bare aktivere kryptering på rom som ikke er offentlig tilgjengelig.",
|
||||||
"@noEncryptionForPublicRooms": {
|
"@noEncryptionForPublicRooms": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2617,11 +2328,8 @@
|
||||||
"otherNotificationSettings": "Andre varslingsinnstillinger",
|
"otherNotificationSettings": "Andre varslingsinnstillinger",
|
||||||
"contentNotificationSettings": "Innstillinger for innholdsvarslinger",
|
"contentNotificationSettings": "Innstillinger for innholdsvarslinger",
|
||||||
"generalNotificationSettings": "Generelle varslingsinnstillinger",
|
"generalNotificationSettings": "Generelle varslingsinnstillinger",
|
||||||
"appIntroduction": "Med FluffyChat kan du chatte med vennene dine på tvers av forskjellige meldingstjenester. Finn ut mer på https://matrix.org eller trykk bare på *Fortsett*.",
|
|
||||||
"notificationRuleContainsUserNameDescription": "Varsler bruker når en melding inneholder ens brukernavn.",
|
"notificationRuleContainsUserNameDescription": "Varsler bruker når en melding inneholder ens brukernavn.",
|
||||||
"hideMemberChangesInPublicChats": "Skjul medlemsendringer i offentlige chatter",
|
|
||||||
"removeFromSpace": "Fjern fra området",
|
"removeFromSpace": "Fjern fra området",
|
||||||
"addToSpaceDescription": "Velg områder hvor denne chatten legges til.",
|
|
||||||
"pleaseEnterRecoveryKeyDescription": "For å låse opp gamle meldinger, vennligst skriv inn gjenopprettingsnøkkelen som ble generert i en tidligere økt. Gjenopprettingsnøkkelen er IKKE passordet ditt.",
|
"pleaseEnterRecoveryKeyDescription": "For å låse opp gamle meldinger, vennligst skriv inn gjenopprettingsnøkkelen som ble generert i en tidligere økt. Gjenopprettingsnøkkelen er IKKE passordet ditt.",
|
||||||
"reactedWith": "{sender} reagerte med {reaction}",
|
"reactedWith": "{sender} reagerte med {reaction}",
|
||||||
"@reactedWith": {
|
"@reactedWith": {
|
||||||
|
|
@ -2645,7 +2353,6 @@
|
||||||
"notificationRuleTombstoneDescription": "Varsler brukeren om meldinger om deaktivering av rom.",
|
"notificationRuleTombstoneDescription": "Varsler brukeren om meldinger om deaktivering av rom.",
|
||||||
"notificationRuleReactionDescription": "Demper varsler for reaksjoner.",
|
"notificationRuleReactionDescription": "Demper varsler for reaksjoner.",
|
||||||
"notificationRuleSuppressEdits": "Demp redigeringer",
|
"notificationRuleSuppressEdits": "Demp redigeringer",
|
||||||
"chatHasBeenAddedToThisSpace": "Chatten er lagt til i dette området",
|
|
||||||
"clearArchive": "Tøm arkivet",
|
"clearArchive": "Tøm arkivet",
|
||||||
"commandHint_markasgroup": "Merk som gruppe",
|
"commandHint_markasgroup": "Merk som gruppe",
|
||||||
"commandHint_ban": "Utesteng den gitte brukeren fra dette rommet",
|
"commandHint_ban": "Utesteng den gitte brukeren fra dette rommet",
|
||||||
|
|
@ -2658,7 +2365,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /clearcache"
|
"description": "Usage hint for the command /clearcache"
|
||||||
},
|
},
|
||||||
"homeserverDescription": "Alle dataene dine lagres på hjemmeserveren, akkurat som hos en e-postleverandør. Du kan velge hvilken hjemmeserver du vil bruke, samtidig som du fortsatt kan kommunisere med alle. Lær mer på https://matrix.org.",
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Ser ikke ut til å være en kompatibel hjemmeserver. Feil URL?",
|
"doesNotSeemToBeAValidHomeserver": "Ser ikke ut til å være en kompatibel hjemmeserver. Feil URL?",
|
||||||
"prepareSendingAttachment": "Forbered sending av vedlegg...",
|
"prepareSendingAttachment": "Forbered sending av vedlegg...",
|
||||||
"generatingVideoThumbnail": "Genererer videominiatyrbilde ...",
|
"generatingVideoThumbnail": "Genererer videominiatyrbilde ...",
|
||||||
|
|
@ -2669,7 +2375,6 @@
|
||||||
"notificationRuleContainsDisplayNameDescription": "Varsler brukeren når en melding inneholder ens visningsnavnet.",
|
"notificationRuleContainsDisplayNameDescription": "Varsler brukeren når en melding inneholder ens visningsnavnet.",
|
||||||
"notificationRuleIsUserMention": "Brukeromtale",
|
"notificationRuleIsUserMention": "Brukeromtale",
|
||||||
"notificationRuleIsRoomMention": "Romomtale",
|
"notificationRuleIsRoomMention": "Romomtale",
|
||||||
"whatIsAHomeserver": "Hva er en hjemmeserver?",
|
|
||||||
"commandHint_me": "Beskriv deg selv",
|
"commandHint_me": "Beskriv deg selv",
|
||||||
"@commandHint_me": {
|
"@commandHint_me": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2751,26 +2456,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"switchToAccount": "Bytt til konto {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"widgetEtherpad": "Tekstnotat",
|
|
||||||
"noOneCanJoin": "Ingen kan bli med",
|
"noOneCanJoin": "Ingen kan bli med",
|
||||||
"userWouldLikeToChangeTheChat": "{user} vil gjerne bli med i chatten.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Ingen offentlig lenke er opprettet ennå",
|
|
||||||
"commandHint_html": "Send HTML-formatert tekst",
|
"commandHint_html": "Send HTML-formatert tekst",
|
||||||
"@commandHint_html": {
|
"@commandHint_html": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2835,15 +2521,6 @@
|
||||||
},
|
},
|
||||||
"newSpace": "Nytt område",
|
"newSpace": "Nytt område",
|
||||||
"allSpaces": "Alle områder",
|
"allSpaces": "Alle områder",
|
||||||
"numChats": "{number} chats",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"wasDirectChatDisplayName": "Tom chat (var {oldDisplayName})",
|
"wasDirectChatDisplayName": "Tom chat (var {oldDisplayName})",
|
||||||
"@wasDirectChatDisplayName": {
|
"@wasDirectChatDisplayName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2853,7 +2530,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"moveDown": "Flytt ned",
|
|
||||||
"removeFromSpaceDescription": "Chatten blir fjernet fra området, men vises fortsatt i chatlisten din.",
|
"removeFromSpaceDescription": "Chatten blir fjernet fra området, men vises fortsatt i chatlisten din.",
|
||||||
"countChats": "{chats} chats",
|
"countChats": "{chats} chats",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -2864,13 +2540,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Doner",
|
|
||||||
"banUserDescription": "Brukeren vil bli utestengt fra chatten og vil ikke kunne delta i chatten igjen før utestengelsen er opphevet.",
|
"banUserDescription": "Brukeren vil bli utestengt fra chatten og vil ikke kunne delta i chatten igjen før utestengelsen er opphevet.",
|
||||||
"unbanUserDescription": "Brukeren vil kunne gå inn i chatten igjen hvis vedkommende prøver.",
|
"unbanUserDescription": "Brukeren vil kunne gå inn i chatten igjen hvis vedkommende prøver.",
|
||||||
"kickUserDescription": "Brukeren blir kastet ut av chatten, men ikke utestengt. I offentlige chatter kan brukeren bli med på nytt når som helst.",
|
"kickUserDescription": "Brukeren blir kastet ut av chatten, men ikke utestengt. I offentlige chatter kan brukeren bli med på nytt når som helst.",
|
||||||
"sendTypingNotifications": "Send varsler ved skriving",
|
"sendTypingNotifications": "Send varsler ved skriving",
|
||||||
"swipeRightToLeftToReply": "Sveip fra høyre mot venstre for å svare",
|
"swipeRightToLeftToReply": "Sveip fra høyre mot venstre for å svare",
|
||||||
"startFirstChat": "Start din første chat",
|
|
||||||
"unlockOldMessages": "Lås opp gamle meldinger",
|
"unlockOldMessages": "Lås opp gamle meldinger",
|
||||||
"storeInAndroidKeystore": "Lagre i Android KeyStore",
|
"storeInAndroidKeystore": "Lagre i Android KeyStore",
|
||||||
"storeInAppleKeyChain": "Lagre i Apple nøkkelring",
|
"storeInAppleKeyChain": "Lagre i Apple nøkkelring",
|
||||||
|
|
@ -2892,12 +2566,8 @@
|
||||||
"notificationRuleJitsiDescription": "Varsler brukeren om hendelser i Jitsi-widgeten.",
|
"notificationRuleJitsiDescription": "Varsler brukeren om hendelser i Jitsi-widgeten.",
|
||||||
"customReaction": "Egendefinert reaksjon",
|
"customReaction": "Egendefinert reaksjon",
|
||||||
"pause": "Pause",
|
"pause": "Pause",
|
||||||
"moveToDifferentSpace": "Flytt til et annet område",
|
|
||||||
"moveUp": "Flytt opp",
|
|
||||||
"storeInSecureStorageDescription": "Oppbevar gjenopprettingsnøkkelen på en sikker lagringsplass på denne enheten.",
|
"storeInSecureStorageDescription": "Oppbevar gjenopprettingsnøkkelen på en sikker lagringsplass på denne enheten.",
|
||||||
"foregroundServiceRunning": "Denne varslingen vises når forgrunnstjenesten kjører.",
|
"foregroundServiceRunning": "Denne varslingen vises når forgrunnstjenesten kjører.",
|
||||||
"callingAccount": "Ringekonto",
|
|
||||||
"appearOnTopDetails": "Lar appen vises øverst (ikke nødvendig hvis du allerede har Fluffychat konfigurert som en ringekonto)",
|
|
||||||
"longPressToRecordVoiceMessage": "Langt trykk for å spille inn talemelding.",
|
"longPressToRecordVoiceMessage": "Langt trykk for å spille inn talemelding.",
|
||||||
"startedAPoll": "{username} startet en avstemning.",
|
"startedAPoll": "{username} startet en avstemning.",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
|
|
@ -2912,7 +2582,6 @@
|
||||||
"startPoll": "Start avstemning",
|
"startPoll": "Start avstemning",
|
||||||
"endPoll": "Avslutt avstemning",
|
"endPoll": "Avslutt avstemning",
|
||||||
"answersVisible": "Svar synlige",
|
"answersVisible": "Svar synlige",
|
||||||
"answersHidden": "Svar skjult",
|
|
||||||
"addAnswerOption": "Legg til svaralternativ",
|
"addAnswerOption": "Legg til svaralternativ",
|
||||||
"answerOption": "Svaralternativ",
|
"answerOption": "Svaralternativ",
|
||||||
"allowMultipleAnswers": "Tillat flere svar",
|
"allowMultipleAnswers": "Tillat flere svar",
|
||||||
|
|
@ -2953,30 +2622,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"countChatsAndCountParticipants": "{chats} chatter og {participants} deltakere",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noChatsFoundHere": "Ingen chatter her. Bruk knappen under for å starte en ny samtale. ⤵️",
|
"noChatsFoundHere": "Ingen chatter her. Bruk knappen under for å starte en ny samtale. ⤵️",
|
||||||
"joinedChats": "Mine chatter",
|
|
||||||
"changedTheChatDescription": "{username} endret beskrivelsen av chatten",
|
"changedTheChatDescription": "{username} endret beskrivelsen av chatten",
|
||||||
"changedTheChatName": "{username} endret navnet på chatten",
|
"changedTheChatName": "{username} endret navnet på chatten",
|
||||||
"commandHint_markasdm": "Marker som rom for direktemeldinger for den angitte Matrix-IDen",
|
"commandHint_markasdm": "Marker som rom for direktemeldinger for den angitte Matrix-IDen",
|
||||||
"indexedDbErrorTitle": "Problemer med privat modus",
|
|
||||||
"recoveryKeyLost": "Mistet gjenopprettingsnøkkel?",
|
"recoveryKeyLost": "Mistet gjenopprettingsnøkkel?",
|
||||||
"separateChatTypes": "Skille direktemeldinger og grupper",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "Angi som hovedalias",
|
"setAsCanonicalAlias": "Angi som hovedalias",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2996,9 +2646,6 @@
|
||||||
"stickerPackNameAlreadyExists": "Klistremerkepakken finnes allerede",
|
"stickerPackNameAlreadyExists": "Klistremerkepakken finnes allerede",
|
||||||
"newStickerPack": "Ny klistremerkepakke",
|
"newStickerPack": "Ny klistremerkepakke",
|
||||||
"stickerPackName": "Navn på klistremerkepakke",
|
"stickerPackName": "Navn på klistremerkepakke",
|
||||||
"signInWithLabel": "Logg inn med:",
|
|
||||||
"enterSpace": "Bli med i området",
|
|
||||||
"enterRoom": "Bli med i rommet",
|
|
||||||
"addToBundle": "Legg til i pakke",
|
"addToBundle": "Legg til i pakke",
|
||||||
"removeFromBundle": "Fjern fra denne pakken",
|
"removeFromBundle": "Fjern fra denne pakken",
|
||||||
"bundleName": "Navn på pakke",
|
"bundleName": "Navn på pakke",
|
||||||
|
|
@ -3014,22 +2661,9 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"errorAddingWidget": "Kunne ikke legge til widget.",
|
|
||||||
"makeAdminDescription": "Når du gjør denne brukeren til administrator, kan du kanskje ikke omgjøre det senere. Brukeren vil da få de samme rettighetene som deg.",
|
"makeAdminDescription": "Når du gjør denne brukeren til administrator, kan du kanskje ikke omgjøre det senere. Brukeren vil da få de samme rettighetene som deg.",
|
||||||
"joinSpace": "Bli med i området",
|
"joinSpace": "Bli med i området",
|
||||||
"publicSpaces": "Offentlige områder",
|
"publicSpaces": "Offentlige områder",
|
||||||
"databaseBuildErrorBody": "Kunne ikke bygge SQLite-databasen. Appen prøver å bruke den gamle databasen enn så lenge. Vennligst rapporter denne feilen til utviklerne på {url}. Feilmeldingen er: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"verifyOtherUserDescription": "Hvis du verifiserer en annen bruker, kan du være trygg på at du vet hvem du faktisk skriver med. 💪\n\nNår du starter en verifisering, vil både du og den andre brukeren se et popup-vindu i appen. Der vil dere se en serie emojier eller tall som dere må sammenligne med hverandre.\n\nDen beste måten å gjøre dette på er å møtes ansikt til ansikt eller starte en videosamtale. 👭",
|
"verifyOtherUserDescription": "Hvis du verifiserer en annen bruker, kan du være trygg på at du vet hvem du faktisk skriver med. 💪\n\nNår du starter en verifisering, vil både du og den andre brukeren se et popup-vindu i appen. Der vil dere se en serie emojier eller tall som dere må sammenligne med hverandre.\n\nDen beste måten å gjøre dette på er å møtes ansikt til ansikt eller starte en videosamtale. 👭",
|
||||||
"verifyOtherDeviceDescription": "Når du verifiserer en annen enhet, kan disse enhetene utveksle nøkler, noe som øker den generelle sikkerheten din. 💪 Når du starter en verifisering, vil det dukke opp et popup-vindu i appen på begge enhetene. Der vil du se en serie emojier eller tall som du må sammenligne med hverandre. Det er best å ha begge enhetene forhånden før du starter verifiseringen. 🤳",
|
"verifyOtherDeviceDescription": "Når du verifiserer en annen enhet, kan disse enhetene utveksle nøkler, noe som øker den generelle sikkerheten din. 💪 Når du starter en verifisering, vil det dukke opp et popup-vindu i appen på begge enhetene. Der vil du se en serie emojier eller tall som du må sammenligne med hverandre. Det er best å ha begge enhetene forhånden før du starter verifiseringen. 🤳",
|
||||||
"clientWellKnownInformation": "Velkjent informasjon om klienten:",
|
"clientWellKnownInformation": "Velkjent informasjon om klienten:",
|
||||||
|
|
@ -3065,5 +2699,121 @@
|
||||||
"attribution": "Kreditering",
|
"attribution": "Kreditering",
|
||||||
"skipChatBackupWarning": "Er du sikker? Uten sikkerhetskopi av chattene kan du miste meldingene dine hvis du bytter enhet.",
|
"skipChatBackupWarning": "Er du sikker? Uten sikkerhetskopi av chattene kan du miste meldingene dine hvis du bytter enhet.",
|
||||||
"noMoreResultsFound": "Ingen flere treff",
|
"noMoreResultsFound": "Ingen flere treff",
|
||||||
"federationBaseUrl": "Federation Base URL"
|
"federationBaseUrl": "Federation Base URL",
|
||||||
|
"notificationRuleServerAclDescription": "Skjuler varslinger for Server ACL-hendelser.",
|
||||||
|
"notificationRuleServerAcl": "Skjul Server ACL-hendelser",
|
||||||
|
"notificationRuleMemberEventDescription": "Skjuler varslinger for medlemsskapshendelser.",
|
||||||
|
"youHaveKnocked": "Du har banket på",
|
||||||
|
"moreEvents": "Flere hendelser",
|
||||||
|
"knockRestricted": "Banking deaktivert",
|
||||||
|
"contactServerSecurity": "Kontakt sikkerhetsansvarlig for serveren",
|
||||||
|
"notificationRuleMemberEvent": "Medlemshendelse",
|
||||||
|
"spaceMemberOfCanKnock": "Et medlem av området {spaces} kan banke på",
|
||||||
|
"@spaceMemberOfCanKnock": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"spaces": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"countVotes": "{count, plural, =1{En stemme} other{{count} stemmer}}",
|
||||||
|
"@countVotes": {
|
||||||
|
"type": "int",
|
||||||
|
"placeholders": {
|
||||||
|
"count": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"countReplies": "{count, plural, =1{Et svar} other{{count} svar}}",
|
||||||
|
"@countReplies": {
|
||||||
|
"type": "int",
|
||||||
|
"placeholders": {
|
||||||
|
"count": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"chatSearchedUntil": "Søkte i chatten frem til {time}",
|
||||||
|
"@chatSearchedUntil": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"time": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sendingAttachmentCountOfCount": "Sender vedlegg {index} av {length}...",
|
||||||
|
"@sendingAttachmentCountOfCount": {
|
||||||
|
"type": "integer",
|
||||||
|
"placeholders": {
|
||||||
|
"index": {
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
"length": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"spaceMemberOf": "Områdemedlem av {spaces}",
|
||||||
|
"@spaceMemberOf": {
|
||||||
|
"type": "String",
|
||||||
|
"placeholders": {
|
||||||
|
"spaces": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"confirmEventUnpin": "Er du sikker på at du vil løsne hendelsen permanent?",
|
||||||
|
"saveKeyManuallyDescription": "Lagre denne nøkkelen manuelt ved å åpne systemets delingsmeny eller kopiere til utklippstavlen.",
|
||||||
|
"newSpaceDescription": "Områder lar deg samle chattene dine og bygge private eller offentlige fellesskap.",
|
||||||
|
"chatPermissionsDescription": "Definer hvilket tilgangsnivå som kreves for bestemte handlinger i denne chatten. Nivåene 0, 50 og 100 representerer vanligvis brukere, moderatorer og administratorer, men alle mellomtrinn er mulige.",
|
||||||
|
"knocking": "Banker på",
|
||||||
|
"alwaysUse24HourFormat": "false",
|
||||||
|
"@alwaysUse24HourFormat": {
|
||||||
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
|
},
|
||||||
|
"noKeyForThisMessage": "Dette kan skje hvis meldingen ble sendt før du logget inn på kontoen din på denne enheten.\n\nDet er også mulig at senderen har blokkert enheten din, eller at noe gikk galt med internettforbindelsen.\n\nEr du i stand til å lese meldingen i en annen sesjon? Da kan du overføre meldingen fra den! Gå til Innstillinger > Enheter og sørg for at enhetene dine har verifisert hverandre. Neste gang du åpner rommet og begge sesjonene er i forgrunnen, vil nøklene bli overført automatisk.\n\nVil du unngå å miste nøklene når du logger ut eller bytter enhet? Sørg for at du har aktivert sikkerhetskopiering av chat i innstillingene.",
|
||||||
|
"report": "rapportere",
|
||||||
|
"addChatOrSubSpace": "Legg til chat eller underområde",
|
||||||
|
"signIn": "Logg på",
|
||||||
|
"createNewAccount": "Opprett ny konto",
|
||||||
|
"signUpGreeting": "FluffyChat er desentralisert! Velg en server der du vil opprette kontoen din, så kjører vi på!",
|
||||||
|
"signInGreeting": "Har du allerede en Matrix-konto? Velkommen tilbake! Velg hjemmeserveren din og logg inn.",
|
||||||
|
"appIntro": "Med FluffyChat kan du chatte med vennene dine. Det er en sikker, desentralisert [matrix]-meldingsapp! Les mer på https://matrix.org hvis du vil, eller bare registrer deg.",
|
||||||
|
"theProcessWasCanceled": "Prosessen ble avbrutt.",
|
||||||
|
"join": "Bli med",
|
||||||
|
"searchOrEnterHomeserverAddress": "Søk eller angi adresse til hjemmeserver",
|
||||||
|
"matrixId": "Matrix ID",
|
||||||
|
"setPowerLevel": "Angi styrkenivå",
|
||||||
|
"makeModerator": "Gjør til moderator",
|
||||||
|
"makeAdmin": "Gjør til admin",
|
||||||
|
"removeModeratorRights": "Fjern moderator-rettigheter",
|
||||||
|
"removeAdminRights": "Fjern admin-rettigheter",
|
||||||
|
"powerLevel": "Styrkenivå",
|
||||||
|
"setPowerLevelDescription": "Styrkenivåer definerer hva et medlem har lov til å gjøre i dette rommet, og varierer vanligvis mellom 0 og 100.",
|
||||||
|
"owner": "Eier",
|
||||||
|
"mute": "Demp",
|
||||||
|
"@mute": {
|
||||||
|
"description": "This should be a very short string because there is not much space in the button!"
|
||||||
|
},
|
||||||
|
"createNewChat": "Opprett ny chat",
|
||||||
|
"reset": "Nullstill",
|
||||||
|
"supportFluffyChat": "Støtt FluffyChat",
|
||||||
|
"support": "Støtte",
|
||||||
|
"fluffyChatSupportBannerMessage": "FluffyChat trenger DIN hjelp!\n❤️❤️❤️\nFluffyChat vil alltid være gratis, men utvikling og drift koster fortsatt penger. \nProsjektets fremtid avhenger av støtte fra folk som deg.",
|
||||||
|
"skipSupportingFluffyChat": "Hopp over støtte til FluffyChat",
|
||||||
|
"iDoNotWantToSupport": "Jeg ønsker ikke å støtte",
|
||||||
|
"iAlreadySupportFluffyChat": "Jeg støtter allerede FluffyChat",
|
||||||
|
"setLowPriority": "Sett lav prioritet",
|
||||||
|
"unsetLowPriority": "Fjern lav prioritet",
|
||||||
|
"removeCallFromChat": "Fjern anrop fra chat",
|
||||||
|
"removeCallFromChatDescription": "Vil du fjerne anropet fra chatten for alle medlemmer?",
|
||||||
|
"removeCallForEveryone": "Fjern anrop fra alle",
|
||||||
|
"startVoiceCall": "Start lydsamtale",
|
||||||
|
"startVideoCall": "Start videosamtale",
|
||||||
|
"joinVoiceCall": "Bli med i lydsamtale",
|
||||||
|
"joinVideoCall": "Bli med i videosamtale",
|
||||||
|
"live": "Direkte"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"areGuestsAllowedToJoin": "Mogen gasten deelnemen",
|
"areGuestsAllowedToJoin": "Mogen gasten deelnemen?",
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -129,18 +129,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "De homeserver ondersteunt de Spec-versies:\n{serverVersions}\nMaar deze app ondersteunt alleen {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Van chat verbannen",
|
"banFromChat": "Van chat verbannen",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -173,11 +161,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Bot-berichten",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Annuleren",
|
"cancel": "Annuleren",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -391,7 +374,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Chat is toegevoegd aan deze space",
|
|
||||||
"chats": "Chats",
|
"chats": "Chats",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -453,7 +435,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /myroomnick"
|
"description": "Usage hint for the command /myroomnick"
|
||||||
},
|
},
|
||||||
"commandHint_op": "Machtsniveau van de persoon instellen (standaard: 50)",
|
"commandHint_op": "Rechtenniveau van de persoon instellen (standaard: 50)",
|
||||||
"@commandHint_op": {
|
"@commandHint_op": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /op"
|
"description": "Usage hint for the command /op"
|
||||||
|
|
@ -507,31 +489,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Bevestigen",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Verbinden",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Contact is voor de groep uitgenodigd",
|
"contactHasBeenInvitedToTheGroup": "Contact is voor de groep uitgenodigd",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Bevat naam",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Bevat inlognaam",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "De inhoud is gerapporteerd aan de serverbeheerders",
|
"contentHasBeenReported": "De inhoud is gerapporteerd aan de serverbeheerders",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -611,33 +573,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}-{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}-{month}-{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Hierdoor wordt je account gedeactiveerd. Dit kan niet ongedaan gemaakt worden! Weet je het zeker?",
|
"deactivateAccountWarning": "Hierdoor wordt je account gedeactiveerd. Dit kan niet ongedaan gemaakt worden! Weet je het zeker?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -743,11 +678,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Je moet een emoticon korte code en afbeelding kiezen!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Lege chat",
|
"emptyChat": "Lege chat",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -797,11 +727,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Vul je homeserver in",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Locatie ophalen fout: {error}",
|
"errorObtainingLocation": "Locatie ophalen fout: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -851,17 +776,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Ga naar de nieuwe chat",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Groep",
|
"group": "Groep",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"groupIsPublic": "Groep is openbaar",
|
"groupIsPublic": "Groep is publiek",
|
||||||
"@groupIsPublic": {
|
"@groupIsPublic": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -927,11 +847,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identiteit",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Negeer",
|
"ignore": "Negeer",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -993,11 +908,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Persoonlijke uitnodiging",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} heeft je uitgenodigd voor FluffyChat.\n1. Bezoek https://fluffychat.im en installeer de app\n2. Registreer of log in\n3. Open deze uitnodigingslink:\n{link}",
|
"inviteText": "{username} heeft je uitgenodigd voor FluffyChat.\n1. Bezoek https://fluffychat.im en installeer de app\n2. Registreer of log in\n3. Open deze uitnodigingslink:\n{link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1077,11 +987,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licentie",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Licht",
|
"lightTheme": "Licht",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1135,11 +1040,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Persoon wijzigingen",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Vermeld",
|
"mention": "Vermeld",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1200,7 +1100,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"noEncryptionForPublicRooms": "Je kunt de versleuteling pas activeren zodra de chat niet meer openbaar toegankelijk is.",
|
"noEncryptionForPublicRooms": "Je kunt de versleuteling pas activeren zodra de chat niet meer publiek toegankelijk is.",
|
||||||
"@noEncryptionForPublicRooms": {
|
"@noEncryptionForPublicRooms": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1247,11 +1147,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Meldingen ingeschakeld voor dit account",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} personen typen…",
|
"numUsersTyping": "{count} personen typen…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1276,7 +1171,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"ok": "OK",
|
"ok": "Ok",
|
||||||
"@ok": {
|
"@ok": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1351,11 +1246,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Personen",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Kies een afbeelding",
|
"pickImage": "Kies een afbeelding",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1375,11 +1265,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Maak een keuze",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Kies een toegangscode",
|
"pleaseChooseAPasscode": "Kies een toegangscode",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1420,7 +1305,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"publicRooms": "Openbare chats",
|
"publicRooms": "Publieke chats",
|
||||||
"@publicRooms": {
|
"@publicRooms": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1473,11 +1358,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Opnieuw deelnemen",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Verwijder",
|
"remove": "Verwijder",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1497,11 +1377,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Verwijder apparaat",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Verbanning opheffen",
|
"unbanFromChat": "Verbanning opheffen",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1557,15 +1432,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Gezien door {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Verstuur",
|
"send": "Verstuur",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1600,16 +1466,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Origineel versturen",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Sticker versturen",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Video versturen",
|
"sendVideo": "Video versturen",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1674,21 +1530,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Aangepaste emoticons instellen",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Uitnodigingslink instellen",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Rechten-niveau instellen",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Status instellen",
|
"setStatus": "Status instellen",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1723,11 +1564,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Eenmalig Inloggen",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Overslaan",
|
"skip": "Overslaan",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1738,7 +1574,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"spaceIsPublic": "Space is openbaar",
|
"spaceIsPublic": "Space is publiek",
|
||||||
"@spaceIsPublic": {
|
"@spaceIsPublic": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1798,21 +1634,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Favoriet in- of uitschakelen",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Dempen in- of uitschakelen",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Markeer gelezen/ongelezen",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Te veel verzoeken. Probeer het later nog eens!",
|
"tooManyRequestsWarning": "Te veel verzoeken. Probeer het later nog eens!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1879,15 +1700,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 ongelezen chat} other{{unreadCount} ongelezen chats}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} en {count} anderen zijn aan het typen …",
|
"userAndOthersAreTyping": "{username} en {count} anderen zijn aan het typen …",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2012,11 +1824,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Achtergrond:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Waarschuwing!",
|
"warning": "Waarschuwing!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2102,7 +1909,6 @@
|
||||||
"messageType": "Berichttype",
|
"messageType": "Berichttype",
|
||||||
"sender": "Afzender",
|
"sender": "Afzender",
|
||||||
"openGallery": "Galerij openen",
|
"openGallery": "Galerij openen",
|
||||||
"addToSpaceDescription": "Selecteer een space om deze chat aan toe te voegen.",
|
|
||||||
"removeFromSpace": "Uit de space verwijderen",
|
"removeFromSpace": "Uit de space verwijderen",
|
||||||
"start": "Start",
|
"start": "Start",
|
||||||
"commandHint_clearcache": "Cache wissen",
|
"commandHint_clearcache": "Cache wissen",
|
||||||
|
|
@ -2125,21 +1931,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /discardsession"
|
"description": "Usage hint for the command /discardsession"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Videocamera openen",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"publish": "Publiceren",
|
|
||||||
"dismiss": "Sluiten",
|
"dismiss": "Sluiten",
|
||||||
"markAsRead": "Markeer als gelezen",
|
"markAsRead": "Markeer als gelezen",
|
||||||
"reportUser": "Persoon rapporteren",
|
"reportUser": "Persoon rapporteren",
|
||||||
|
|
@ -2162,35 +1953,9 @@
|
||||||
"unsupportedAndroidVersion": "Niet-ondersteunde Android-versie",
|
"unsupportedAndroidVersion": "Niet-ondersteunde Android-versie",
|
||||||
"unsupportedAndroidVersionLong": "Voor deze functie is een nieuwe Android-versie verplicht. Controleer je updates of Lineage OS-ondersteuning.",
|
"unsupportedAndroidVersionLong": "Voor deze functie is een nieuwe Android-versie verplicht. Controleer je updates of Lineage OS-ondersteuning.",
|
||||||
"videoCallsBetaWarning": "Houd er rekening mee dat videogesprekken momenteel in bèta zijn. Ze werken misschien niet zoals je verwacht of werken niet op alle platformen.",
|
"videoCallsBetaWarning": "Houd er rekening mee dat videogesprekken momenteel in bèta zijn. Ze werken misschien niet zoals je verwacht of werken niet op alle platformen.",
|
||||||
"voiceCall": "Spraakoproep",
|
"voiceCall": "Spraakgesprek",
|
||||||
"confirmEventUnpin": "Weet je zeker dat je de gebeurtenis definitief wilt losmaken?",
|
"confirmEventUnpin": "Weet je zeker dat je de gebeurtenis definitief wilt losmaken?",
|
||||||
"experimentalVideoCalls": "Videogesprekken (experimenteel)",
|
"experimentalVideoCalls": "Videogesprekken (experimenteel)",
|
||||||
"emailOrUsername": "Email of inlognaam",
|
|
||||||
"nextAccount": "Volgende account",
|
|
||||||
"switchToAccount": "Naar account {number} overschakelen",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"previousAccount": "Vorige account",
|
|
||||||
"widgetCustom": "Aangepast",
|
|
||||||
"widgetName": "Naam",
|
|
||||||
"widgetUrlError": "Dit is geen geldige link.",
|
|
||||||
"widgetNameError": "Geef een naam op.",
|
|
||||||
"errorAddingWidget": "Fout bij het toevoegen van de widget.",
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"addWidget": "Widget toevoegen",
|
|
||||||
"widgetVideo": "Video",
|
|
||||||
"widgetEtherpad": "Tekstnotitie",
|
|
||||||
"separateChatTypes": "Directe chats en groepen los weergeven",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"youAcceptedTheInvitation": "👍 Je hebt de uitnodiging geaccepteerd",
|
"youAcceptedTheInvitation": "👍 Je hebt de uitnodiging geaccepteerd",
|
||||||
"youRejectedTheInvitation": "Je hebt de uitnodiging afgewezen",
|
"youRejectedTheInvitation": "Je hebt de uitnodiging afgewezen",
|
||||||
"youJoinedTheChat": "Je bent toegetreden tot de chat",
|
"youJoinedTheChat": "Je bent toegetreden tot de chat",
|
||||||
|
|
@ -2252,7 +2017,6 @@
|
||||||
},
|
},
|
||||||
"recoveryKey": "Herstelsleutel",
|
"recoveryKey": "Herstelsleutel",
|
||||||
"recoveryKeyLost": "Herstelsleutel verloren?",
|
"recoveryKeyLost": "Herstelsleutel verloren?",
|
||||||
"pleaseEnterRecoveryKey": "Voer jouw herstelsleutel in:",
|
|
||||||
"users": "Personen",
|
"users": "Personen",
|
||||||
"unlockOldMessages": "Oude berichten ontgrendelen",
|
"unlockOldMessages": "Oude berichten ontgrendelen",
|
||||||
"storeInAndroidKeystore": "In Android KeyStore opslaan",
|
"storeInAndroidKeystore": "In Android KeyStore opslaan",
|
||||||
|
|
@ -2263,13 +2027,7 @@
|
||||||
"storeSecurlyOnThisDevice": "Veilig opslaan op dit apparaat",
|
"storeSecurlyOnThisDevice": "Veilig opslaan op dit apparaat",
|
||||||
"dehydrate": "Sessie exporteren en apparaat wissen",
|
"dehydrate": "Sessie exporteren en apparaat wissen",
|
||||||
"dehydrateWarning": "Deze actie kan niet ongedaan worden gemaakt. Zorg ervoor dat je het back-upbestand veilig opslaat.",
|
"dehydrateWarning": "Deze actie kan niet ongedaan worden gemaakt. Zorg ervoor dat je het back-upbestand veilig opslaat.",
|
||||||
"dehydrateTor": "TOR-sessies: Exporteer sessie",
|
|
||||||
"dehydrateTorLong": "Voor TOR-sessies is het aanbevolen de sessie te exporteren alvorens het venster te sluiten.",
|
|
||||||
"hydrateTor": "TOR-sessie: Importeren sessie export",
|
|
||||||
"hydrateTorLong": "Heb je de vorige keer jouw sessie geëxporteerd met TOR? Importeer het dan snel en ga verder met chatten.",
|
|
||||||
"hydrate": "Herstellen vanuit back-upbestand",
|
"hydrate": "Herstellen vanuit back-upbestand",
|
||||||
"indexedDbErrorTitle": "Problemen met privémodus",
|
|
||||||
"indexedDbErrorLong": "Het opslaan van berichten is helaas niet standaard ingeschakeld in de privémodus.\nBezoek alsjeblieft\n - about:config\n - stel dom.indexedDB.privateBrowsing.enabled in op true\nAnders is het niet mogelijk om FluffyChat op te starten.",
|
|
||||||
"countFiles": "{count} bestanden",
|
"countFiles": "{count} bestanden",
|
||||||
"@countFiles": {
|
"@countFiles": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2294,30 +2052,12 @@
|
||||||
"commandHint_markasgroup": "Markeer als groep",
|
"commandHint_markasgroup": "Markeer als groep",
|
||||||
"whyIsThisMessageEncrypted": "Waarom is dit bericht onleesbaar?",
|
"whyIsThisMessageEncrypted": "Waarom is dit bericht onleesbaar?",
|
||||||
"noKeyForThisMessage": "Dit kan gebeuren als het bericht is verzonden voordat je bij je account op dit apparaat hebt aangemeld.\n\nHet is ook mogelijk dat de afzender je apparaat heeft geblokkeerd of dat er iets mis is gegaan met de internetverbinding.\n\nKan je het bericht wel lezen in een andere sessie? Dan kan je het bericht daarvandaan overzetten! Ga naar Instellingen > Apparaten en zorg ervoor dat je apparaten elkaar hebben geverifieerd. Wanneer je de chat de volgende keer opent en beide sessies op de voorgrond staan, zullen de sleutels automatisch worden verzonden.\n\nWil je de sleutels niet verliezen als je uitlogt of van apparaat wisselt? Zorg er dan voor dat je de chatback-up hebt aangezet in de instellingen.",
|
"noKeyForThisMessage": "Dit kan gebeuren als het bericht is verzonden voordat je bij je account op dit apparaat hebt aangemeld.\n\nHet is ook mogelijk dat de afzender je apparaat heeft geblokkeerd of dat er iets mis is gegaan met de internetverbinding.\n\nKan je het bericht wel lezen in een andere sessie? Dan kan je het bericht daarvandaan overzetten! Ga naar Instellingen > Apparaten en zorg ervoor dat je apparaten elkaar hebben geverifieerd. Wanneer je de chat de volgende keer opent en beide sessies op de voorgrond staan, zullen de sleutels automatisch worden verzonden.\n\nWil je de sleutels niet verliezen als je uitlogt of van apparaat wisselt? Zorg er dan voor dat je de chatback-up hebt aangezet in de instellingen.",
|
||||||
"enterSpace": "Space betreden",
|
|
||||||
"allSpaces": "Alle spaces",
|
"allSpaces": "Alle spaces",
|
||||||
"foregroundServiceRunning": "Deze melding verschijnt wanneer de voorgronddienst draait.",
|
"foregroundServiceRunning": "Deze melding verschijnt wanneer de voorgronddienst draait.",
|
||||||
"screenSharingTitle": "scherm delen",
|
"screenSharingTitle": "scherm delen",
|
||||||
"screenSharingDetail": "Je deelt je scherm in FuffyChat",
|
"screenSharingDetail": "Je deelt je scherm in FuffyChat",
|
||||||
"callingPermissions": "Telefoon-rechten",
|
|
||||||
"callingAccount": "Telefoon-account",
|
|
||||||
"callingAccountDetails": "Hiermee kan FluffyChat de Android telefoon-app gebruiken.",
|
|
||||||
"appearOnTop": "Bovenaan verschijnen",
|
|
||||||
"appearOnTopDetails": "Laat de app bovenaan verschijnen (niet nodig als je FluffyChat al hebt ingesteld als een bel-account)",
|
|
||||||
"otherCallingPermissions": "Microfoon, camera en andere FluffyChat-rechten",
|
|
||||||
"newGroup": "Nieuwe groep",
|
"newGroup": "Nieuwe groep",
|
||||||
"newSpace": "Space aanmaken",
|
"newSpace": "Space aanmaken",
|
||||||
"enterRoom": "Chat betreden",
|
|
||||||
"numChats": "{number} chats",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Onbelangrijke statusgebeurtenissen verbergen",
|
|
||||||
"doNotShowAgain": "Niet meer tonen",
|
"doNotShowAgain": "Niet meer tonen",
|
||||||
"googlyEyesContent": "{senderName} stuurt je wiebelogen",
|
"googlyEyesContent": "{senderName} stuurt je wiebelogen",
|
||||||
"@googlyEyesContent": {
|
"@googlyEyesContent": {
|
||||||
|
|
@ -2363,8 +2103,7 @@
|
||||||
"reopenChat": "Chat heropenen",
|
"reopenChat": "Chat heropenen",
|
||||||
"encryptThisChat": "Versleutel deze chat",
|
"encryptThisChat": "Versleutel deze chat",
|
||||||
"deviceKeys": "Apparaatsleutels:",
|
"deviceKeys": "Apparaatsleutels:",
|
||||||
"startFirstChat": "Begin je eerste chat",
|
"newSpaceDescription": "Met spaces kun je je chats samenvoegen en privé- of publieke community's bouwen.",
|
||||||
"newSpaceDescription": "Met spaces kun je je chats samenvoegen en privé- of openbare community's bouwen.",
|
|
||||||
"noOtherDevicesFound": "Geen andere apparaten gevonden",
|
"noOtherDevicesFound": "Geen andere apparaten gevonden",
|
||||||
"noBackupWarning": "Waarschuwing! Zonder de chatback-up in te schakelen, verlies je de toegang tot je versleutelde berichten. Het is sterk aanbevolen om eerst de chatback-up in te schakelen voordat je uitlogt.",
|
"noBackupWarning": "Waarschuwing! Zonder de chatback-up in te schakelen, verlies je de toegang tot je versleutelde berichten. Het is sterk aanbevolen om eerst de chatback-up in te schakelen voordat je uitlogt.",
|
||||||
"fileIsTooBigForServer": "Kan niet verzenden! De server ondersteunt alleen bijlages tot {max}.",
|
"fileIsTooBigForServer": "Kan niet verzenden! De server ondersteunt alleen bijlages tot {max}.",
|
||||||
|
|
@ -2381,20 +2120,6 @@
|
||||||
"readUpToHere": "Lees tot hier",
|
"readUpToHere": "Lees tot hier",
|
||||||
"jump": "Spring",
|
"jump": "Spring",
|
||||||
"openLinkInBrowser": "Link in browser openen",
|
"openLinkInBrowser": "Link in browser openen",
|
||||||
"allRooms": "Alle groepschats",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"signInWith": "Aanmelden met {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notAnImage": "Geen afbeeldingsbestand.",
|
"notAnImage": "Geen afbeeldingsbestand.",
|
||||||
"importNow": "Nu importeren",
|
"importNow": "Nu importeren",
|
||||||
"importEmojis": "Emoji's importeren",
|
"importEmojis": "Emoji's importeren",
|
||||||
|
|
@ -2404,12 +2129,10 @@
|
||||||
"report": "Rapporteer",
|
"report": "Rapporteer",
|
||||||
"reportErrorDescription": "😭 Oh nee. Er is iets misgegaan. Probeer het later nog eens. Als je wilt, kun je de bug rapporteren aan de ontwikkelaars.",
|
"reportErrorDescription": "😭 Oh nee. Er is iets misgegaan. Probeer het later nog eens. Als je wilt, kun je de bug rapporteren aan de ontwikkelaars.",
|
||||||
"sendTypingNotifications": "Typemeldingen verzenden",
|
"sendTypingNotifications": "Typemeldingen verzenden",
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Probeer het later nog eens of kies een andere server.",
|
"chatPermissions": "Chatrechten",
|
||||||
"signInWithPassword": "Aanmelden met wachtwoord",
|
"chatDescription": "Onderwerp",
|
||||||
"chatPermissions": "Chat rechten",
|
"chatDescriptionHasBeenChanged": "Onderwerp gewijzigd",
|
||||||
"chatDescription": "Chatomschrijving",
|
"noChatDescriptionYet": "Nog geen onderwerp gemaakt.",
|
||||||
"chatDescriptionHasBeenChanged": "Chatomschrijving gewijzigd",
|
|
||||||
"noChatDescriptionYet": "Nog geen chatomschrijving gemaakt.",
|
|
||||||
"tryAgain": "Opnieuw proberen",
|
"tryAgain": "Opnieuw proberen",
|
||||||
"redactMessageDescription": "Het bericht zal worden aangepast voor alle deelnemers in dit gesprek. Dit kan niet ongedaan gemaakt worden.",
|
"redactMessageDescription": "Het bericht zal worden aangepast voor alle deelnemers in dit gesprek. Dit kan niet ongedaan gemaakt worden.",
|
||||||
"redactedByBecause": "Aangepast door {username}, reden: \"{reason}\"",
|
"redactedByBecause": "Aangepast door {username}, reden: \"{reason}\"",
|
||||||
|
|
@ -2424,11 +2147,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"profileNotFound": "De persoon kan niet gevonden worden op de server. Misschien is er een verbindingsprobleem of de persoon bestaat niet.",
|
|
||||||
"createGroup": "Groep aanmaken",
|
"createGroup": "Groep aanmaken",
|
||||||
"inviteContactToGroupQuestion": "Wil je {contact} uitnodigingen voor de chat \"{groupName}\"?",
|
|
||||||
"optionalRedactReason": "(Optioneel) Reden voor aanpassing van dit bericht...",
|
"optionalRedactReason": "(Optioneel) Reden voor aanpassing van dit bericht...",
|
||||||
"addChatDescription": "Voeg een chatomschrijving toe...",
|
|
||||||
"invalidServerName": "Foute servernaam",
|
"invalidServerName": "Foute servernaam",
|
||||||
"messagesStyle": "Berichten:",
|
"messagesStyle": "Berichten:",
|
||||||
"shareInviteLink": "Uitnodigingslink delen",
|
"shareInviteLink": "Uitnodigingslink delen",
|
||||||
|
|
@ -2442,12 +2162,10 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"directChat": "Directe chat",
|
"directChat": "Directe chat",
|
||||||
"setChatDescription": "Chatomschrijving instellen",
|
"setChatDescription": "Onderwerp instellen",
|
||||||
"setTheme": "Thema instellen:",
|
|
||||||
"setColorTheme": "Kleurthema instellen:",
|
"setColorTheme": "Kleurthema instellen:",
|
||||||
"invite": "Uitnodigen",
|
"invite": "Uitnodigen",
|
||||||
"inviteGroupChat": "📨 Groeps-chat uitnodiging",
|
"inviteGroupChat": "📨 Groeps-chat uitnodiging",
|
||||||
"invitePrivateChat": "📨 Privé-chat uitnodiging",
|
|
||||||
"emoteKeyboardNoRecents": "Recent gebruikte emoticons zullen hier verschijnen...",
|
"emoteKeyboardNoRecents": "Recent gebruikte emoticons zullen hier verschijnen...",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2480,7 +2198,7 @@
|
||||||
"learnMore": "Lees meer",
|
"learnMore": "Lees meer",
|
||||||
"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": "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/",
|
||||||
"pleaseEnterANumber": "Vul een getal in groter dan 0",
|
"pleaseEnterANumber": "Vul een getal in groter dan 0",
|
||||||
"kickUserDescription": "De persoon is verwijderd uit de chat, maar is niet verbannen. In openbare chats kan de persoon op elk moment opnieuw deelnemen.",
|
"kickUserDescription": "De persoon is verwijderd uit de chat, maar is niet verbannen. In publieke chats kan de persoon op elk moment opnieuw deelnemen.",
|
||||||
"alwaysUse24HourFormat": "true",
|
"alwaysUse24HourFormat": "true",
|
||||||
"@alwaysUse24HourFormat": {
|
"@alwaysUse24HourFormat": {
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
|
|
@ -2488,11 +2206,6 @@
|
||||||
"joinSpace": "Toetreden tot de space",
|
"joinSpace": "Toetreden tot de space",
|
||||||
"block": "Blokkeren",
|
"block": "Blokkeren",
|
||||||
"blockedUsers": "Geblokkeerde personen",
|
"blockedUsers": "Geblokkeerde personen",
|
||||||
"presenceStyle": "Aanwezigheid:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"searchChatsRooms": "Zoek #chats, @personen...",
|
"searchChatsRooms": "Zoek #chats, @personen...",
|
||||||
"swipeRightToLeftToReply": "Veeg van rechts naar links om te reageren",
|
"swipeRightToLeftToReply": "Veeg van rechts naar links om te reageren",
|
||||||
"calls": "Gesprekken",
|
"calls": "Gesprekken",
|
||||||
|
|
@ -2503,14 +2216,6 @@
|
||||||
"hideRedactedMessagesBody": "Als iemand een bericht verwijdert is dit bericht niet meer zichtbaar in de chat.",
|
"hideRedactedMessagesBody": "Als iemand een bericht verwijdert is dit bericht niet meer zichtbaar in de chat.",
|
||||||
"hideInvalidOrUnknownMessageFormats": "Ongeldige of onbekende berichtformaten verbergen",
|
"hideInvalidOrUnknownMessageFormats": "Ongeldige of onbekende berichtformaten verbergen",
|
||||||
"passwordRecoverySettings": "Wachtwoordherstel-instellingen",
|
"passwordRecoverySettings": "Wachtwoordherstel-instellingen",
|
||||||
"youInvitedToBy": "📩 Je bent uitgenodigd via een link voor:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"knock": "Klop",
|
"knock": "Klop",
|
||||||
"overview": "Overzicht",
|
"overview": "Overzicht",
|
||||||
"hidePresences": "Verberg statuslijst?",
|
"hidePresences": "Verberg statuslijst?",
|
||||||
|
|
@ -2527,46 +2232,20 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"publicSpaces": "Openbare spaces",
|
"publicSpaces": "Publieke spaces",
|
||||||
"blockUsername": "Negeer inlognaam",
|
"blockUsername": "Negeer inlognaam",
|
||||||
"publicChatAddresses": "Openbare chat adressen",
|
"publicChatAddresses": "Publieke chat adressen",
|
||||||
"createNewAddress": "Creëer nieuw adres",
|
"createNewAddress": "Creëer nieuw adres",
|
||||||
"countChatsAndCountParticipants": "{chats} chats en {participants} deelnemers",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "Geen chats gevonden...",
|
"noMoreChatsFound": "Geen chats gevonden...",
|
||||||
"joinedChats": "Chats waaraan je deelneemt",
|
|
||||||
"knocking": "Kloppen",
|
"knocking": "Kloppen",
|
||||||
"space": "Space",
|
"space": "Space",
|
||||||
"spaces": "Spaces",
|
"spaces": "Spaces",
|
||||||
"unread": "Ongelezen",
|
"unread": "Ongelezen",
|
||||||
"databaseBuildErrorBody": "Het aanmaken van de SQlite database is mislukt. De app probeert nu een traditionele database te gebruiken. Meldt alsjeblieft deze fout aan de ontwikkelaars via deze {url}. De foutmelding is: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"groupName": "Groepsnaam",
|
"groupName": "Groepsnaam",
|
||||||
"changeGeneralChatSettings": "Algemene chat instellingen wijzigen",
|
"changeGeneralChatSettings": "Algemene chat instellingen wijzigen",
|
||||||
"restricted": "Beperkt",
|
"restricted": "Beperkt",
|
||||||
"searchForUsers": "Zoek @personen...",
|
"searchForUsers": "Zoek @personen...",
|
||||||
"searchMore": "Zoek meer...",
|
"searchMore": "Zoek meer...",
|
||||||
"noPublicLinkHasBeenCreatedYet": "Openbare link is nog niet gecreëerd",
|
|
||||||
"groupCanBeFoundViaSearch": "Groep kan gevonden worden via zoeken",
|
"groupCanBeFoundViaSearch": "Groep kan gevonden worden via zoeken",
|
||||||
"searchIn": "Zoek in chat \"{chat}\"...",
|
"searchIn": "Zoek in chat \"{chat}\"...",
|
||||||
"@searchIn": {
|
"@searchIn": {
|
||||||
|
|
@ -2651,7 +2330,6 @@
|
||||||
"compress": "Comprimeren",
|
"compress": "Comprimeren",
|
||||||
"previous": "Vorige",
|
"previous": "Vorige",
|
||||||
"otherPartyNotLoggedIn": "De andere partij is momenteel niet ingelogd en kan daarom geen berichten ontvangen!",
|
"otherPartyNotLoggedIn": "De andere partij is momenteel niet ingelogd en kan daarom geen berichten ontvangen!",
|
||||||
"notifyMeFor": "Waarschuw mij voor",
|
|
||||||
"blockListDescription": "Je kunt personen blokkeren die je lastig vallen. Je kan dan geen berichten meer ontvangen of chat uitnodigingen krijgen van de personen op je blokkeerlijst.",
|
"blockListDescription": "Je kunt personen blokkeren die je lastig vallen. Je kan dan geen berichten meer ontvangen of chat uitnodigingen krijgen van de personen op je blokkeerlijst.",
|
||||||
"sendImages": "Stuur {count} afbeelding(en)",
|
"sendImages": "Stuur {count} afbeelding(en)",
|
||||||
"@sendImages": {
|
"@sendImages": {
|
||||||
|
|
@ -2668,9 +2346,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"website": "Website",
|
"website": "Website",
|
||||||
"hideMemberChangesInPublicChats": "Verberg persoon veranderingen in openbare chats",
|
|
||||||
"hideMemberChangesInPublicChatsBody": "Verberg in de tijdlijn van de chat als iemand zich aanmeldt bij een openbare chat of deze verlaat om de leesbaarheid te verbeteren.",
|
|
||||||
"startConversation": "Start gesprek",
|
|
||||||
"usersMustKnock": "Personen moeten kloppen",
|
"usersMustKnock": "Personen moeten kloppen",
|
||||||
"noUsersFoundWithQuery": "Helaas kan er geen persoon gevonden worden met \"{query}\". Controleer of je een typfout hebt gemaakt.",
|
"noUsersFoundWithQuery": "Helaas kan er geen persoon gevonden worden met \"{query}\". Controleer of je een typfout hebt gemaakt.",
|
||||||
"@noUsersFoundWithQuery": {
|
"@noUsersFoundWithQuery": {
|
||||||
|
|
@ -2682,14 +2357,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"createGroupAndInviteUsers": "Maak groep en nodig personen uit",
|
"createGroupAndInviteUsers": "Maak groep en nodig personen uit",
|
||||||
"userWouldLikeToChangeTheChat": "{user} wil graag deelnemen aan de chat.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "Chat kan worden gevonden via een zoekopdracht op {server}",
|
"chatCanBeDiscoveredViaSearchOnServer": "Chat kan worden gevonden via een zoekopdracht op {server}",
|
||||||
"@chatCanBeDiscoveredViaSearchOnServer": {
|
"@chatCanBeDiscoveredViaSearchOnServer": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2715,14 +2382,11 @@
|
||||||
"passwordIsWrong": "Je ingevoerde wachtwoord is fout",
|
"passwordIsWrong": "Je ingevoerde wachtwoord is fout",
|
||||||
"newPassword": "Nieuw wachtwoord",
|
"newPassword": "Nieuw wachtwoord",
|
||||||
"pleaseChooseAStrongPassword": "Kies a.j.b. een sterk wachtwoord",
|
"pleaseChooseAStrongPassword": "Kies a.j.b. een sterk wachtwoord",
|
||||||
"publicLink": "Openbare link",
|
|
||||||
"select": "Selecteer",
|
"select": "Selecteer",
|
||||||
"leaveEmptyToClearStatus": "Laat leeg om je status te resetten.",
|
"leaveEmptyToClearStatus": "Laat leeg om jouw status te herstellen.",
|
||||||
"addChatOrSubSpace": "Voeg chat of subspace toe",
|
"addChatOrSubSpace": "Voeg chat of subspace toe",
|
||||||
"subspace": "Subspace",
|
|
||||||
"pleaseEnterYourCurrentPassword": "Vul je huidige wachtwoord in",
|
"pleaseEnterYourCurrentPassword": "Vul je huidige wachtwoord in",
|
||||||
"passwordsDoNotMatch": "Wachtwoorden komen niet overeen",
|
"passwordsDoNotMatch": "Wachtwoorden komen niet overeen",
|
||||||
"decline": "Weiger",
|
|
||||||
"thisDevice": "Dit apparaat:",
|
"thisDevice": "Dit apparaat:",
|
||||||
"contentNotificationSettings": "Contentmelding instellingen",
|
"contentNotificationSettings": "Contentmelding instellingen",
|
||||||
"roomNotificationSettings": "Kamermelding instellingen",
|
"roomNotificationSettings": "Kamermelding instellingen",
|
||||||
|
|
@ -2761,7 +2425,6 @@
|
||||||
"opacity": "Doorzichtigheid:",
|
"opacity": "Doorzichtigheid:",
|
||||||
"verifyOtherUserDescription": "Als je een persoon verifieert ben je er zeker van dat je echt met haar contact hebt. 💪\n\nWanneer je een verificatie start ziet de persoon een popup in de app. Hier staat een serie van emoji's of getallen die je met elkaar moet vergelijken.\n\nDe beste manier om dit te doen is in persoon of met een videogesprek. 👭",
|
"verifyOtherUserDescription": "Als je een persoon verifieert ben je er zeker van dat je echt met haar contact hebt. 💪\n\nWanneer je een verificatie start ziet de persoon een popup in de app. Hier staat een serie van emoji's of getallen die je met elkaar moet vergelijken.\n\nDe beste manier om dit te doen is in persoon of met een videogesprek. 👭",
|
||||||
"changeTheVisibilityOfChatHistory": "Zichtbaarheid van de chat-geschiedenis wijzigen",
|
"changeTheVisibilityOfChatHistory": "Zichtbaarheid van de chat-geschiedenis wijzigen",
|
||||||
"whatIsAHomeserver": "Wat is een server?",
|
|
||||||
"sendRoomNotifications": "@room-meldingen versturen",
|
"sendRoomNotifications": "@room-meldingen versturen",
|
||||||
"noticeChatBackupDeviceVerification": "Opmerking: Als al je apparaten zijn verbonden met de chat back-up worden ze automatisch geverifieerd.",
|
"noticeChatBackupDeviceVerification": "Opmerking: Als al je apparaten zijn verbonden met de chat back-up worden ze automatisch geverifieerd.",
|
||||||
"notificationRuleMemberEvent": "Chat-gebeurtenis uitschakelen",
|
"notificationRuleMemberEvent": "Chat-gebeurtenis uitschakelen",
|
||||||
|
|
@ -2777,8 +2440,8 @@
|
||||||
"notificationRuleSuppressNoticesDescription": "Meldingen van automatische accounts zoals bots uitschakelen.",
|
"notificationRuleSuppressNoticesDescription": "Meldingen van automatische accounts zoals bots uitschakelen.",
|
||||||
"notificationRuleInviteForMe": "Persoonlijke uitnodiging",
|
"notificationRuleInviteForMe": "Persoonlijke uitnodiging",
|
||||||
"inviteOtherUsers": "Personen voor deze chat uitnodigen",
|
"inviteOtherUsers": "Personen voor deze chat uitnodigen",
|
||||||
"changeTheChatPermissions": "Chat-rechten wijzigen",
|
"changeTheChatPermissions": "Chatrechten wijzigen",
|
||||||
"changeTheCanonicalRoomAlias": "Standaard openbaar chat-adres wijzigen",
|
"changeTheCanonicalRoomAlias": "Standaard publiek chat-adres wijzigen",
|
||||||
"blur": "Vervaag:",
|
"blur": "Vervaag:",
|
||||||
"isReadyForKeyVerification": "{sender} is klaar voor de sleutelverificatie",
|
"isReadyForKeyVerification": "{sender} is klaar voor de sleutelverificatie",
|
||||||
"@isReadyForKeyVerification": {
|
"@isReadyForKeyVerification": {
|
||||||
|
|
@ -2833,7 +2496,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"discoverHomeservers": "Ontdek servers",
|
|
||||||
"changelog": "Wijzigingengeschiedenis",
|
"changelog": "Wijzigingengeschiedenis",
|
||||||
"loginWithMatrixId": "Inloggen met Matrix-ID",
|
"loginWithMatrixId": "Inloggen met Matrix-ID",
|
||||||
"calculatingFileSize": "Bestandsgrootte berekenen...",
|
"calculatingFileSize": "Bestandsgrootte berekenen...",
|
||||||
|
|
@ -2856,15 +2518,6 @@
|
||||||
"name": "Naam",
|
"name": "Naam",
|
||||||
"verifyOtherDeviceDescription": "Een geverifieerd ander apparaat zorgt ervoor dat de apparaten sleutels uitwisselen, wat je beveiliging versterkt. 💪 Als je de verificatie start verschijnt er een popup op beide apparaten. Hier staat een reeks emoji's of getallen die je met elkaar moet vergelijken. Het is handig om beide apparaten bij de hand te hebben voordat je de verificatie start. 🤳",
|
"verifyOtherDeviceDescription": "Een geverifieerd ander apparaat zorgt ervoor dat de apparaten sleutels uitwisselen, wat je beveiliging versterkt. 💪 Als je de verificatie start verschijnt er een popup op beide apparaten. Hier staat een reeks emoji's of getallen die je met elkaar moet vergelijken. Het is handig om beide apparaten bij de hand te hebben voordat je de verificatie start. 🤳",
|
||||||
"commandHint_unignore": "Herstel de negeerde Matrix-ID",
|
"commandHint_unignore": "Herstel de negeerde Matrix-ID",
|
||||||
"forwardMessageTo": "Bericht doorsturen naar {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"restoreSessionBody": "De app probeert nu je sessie te herstellen van een back-up. Meldt alsjeblieft deze fout aan de ontwikkelaars via deze link {url}. De foutmelding is: {error}",
|
"restoreSessionBody": "De app probeert nu je sessie te herstellen van een back-up. Meldt alsjeblieft deze fout aan de ontwikkelaars via deze link {url}. De foutmelding is: {error}",
|
||||||
"@restoreSessionBody": {
|
"@restoreSessionBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2880,17 +2533,7 @@
|
||||||
"sendReadReceipts": "Leesbevestigingen versturen",
|
"sendReadReceipts": "Leesbevestigingen versturen",
|
||||||
"formattedMessages": "Opgemaakte berichten",
|
"formattedMessages": "Opgemaakte berichten",
|
||||||
"chatPermissionsDescription": "Stel het gewenste rechten-niveau in voor bepaalde acties in deze chat. Het rechten-niveau 0, 50 en 100 zijn gebruikelijk voor deelnemer, moderator en beheerder, maar elke verdeling is mogelijk.",
|
"chatPermissionsDescription": "Stel het gewenste rechten-niveau in voor bepaalde acties in deze chat. Het rechten-niveau 0, 50 en 100 zijn gebruikelijk voor deelnemer, moderator en beheerder, maar elke verdeling is mogelijk.",
|
||||||
"changeTheDescriptionOfTheGroup": "Chatomschrijving wijzigen",
|
"changeTheDescriptionOfTheGroup": "Onderwerp wijzigen",
|
||||||
"userRole": "Rol",
|
|
||||||
"minimumPowerLevel": "{level} is het minimale rechten-niveau.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceiptsDescription": "Andere deelnemers van de chat kunnen zien of je een bericht hebt gelezen.",
|
"sendReadReceiptsDescription": "Andere deelnemers van de chat kunnen zien of je een bericht hebt gelezen.",
|
||||||
"formattedMessagesDescription": "Geef rijke berichtinhoud weer zoals vetgedrukte tekst met markdown.",
|
"formattedMessagesDescription": "Geef rijke berichtinhoud weer zoals vetgedrukte tekst met markdown.",
|
||||||
"verifyOtherUser": "🔐 Persoon verifiëren",
|
"verifyOtherUser": "🔐 Persoon verifiëren",
|
||||||
|
|
@ -2921,7 +2564,6 @@
|
||||||
},
|
},
|
||||||
"appWantsToUseForLoginDescription": "Hierbij sta je toe dat de app en website informatie over je delen.",
|
"appWantsToUseForLoginDescription": "Hierbij sta je toe dat de app en website informatie over je delen.",
|
||||||
"open": "Open",
|
"open": "Open",
|
||||||
"appIntroduction": "FluffyChat laat je chatten met je vrienden tussen verschillende chat-netwerken. Lees meer op https://matrix.org of tik *Continue*.",
|
|
||||||
"completedKeyVerification": "{sender} ronde de sleutelverificatie af",
|
"completedKeyVerification": "{sender} ronde de sleutelverificatie af",
|
||||||
"@completedKeyVerification": {
|
"@completedKeyVerification": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2931,7 +2573,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"homeserverDescription": "Al je data is opgeslagen op de server, net als bij een email-leverancier. Je kan kiezen welke server je gebruikt en toch communiceren met iedereen. Lees meer op https://matrix.org.",
|
|
||||||
"notificationRuleContainsDisplayName": "Bevat de naam",
|
"notificationRuleContainsDisplayName": "Bevat de naam",
|
||||||
"notificationRuleIsUserMentionDescription": "Stuur een melding als je direct genoemd wordt in een bericht.",
|
"notificationRuleIsUserMentionDescription": "Stuur een melding als je direct genoemd wordt in een bericht.",
|
||||||
"notificationRuleContainsDisplayNameDescription": "Stuur een melding als je genoemd wordt in een bericht.",
|
"notificationRuleContainsDisplayNameDescription": "Stuur een melding als je genoemd wordt in een bericht.",
|
||||||
|
|
@ -2984,10 +2625,7 @@
|
||||||
"optionalMessage": "(Optioneel) bericht...",
|
"optionalMessage": "(Optioneel) bericht...",
|
||||||
"notSupportedOnThisDevice": "Niet ondersteund op dit apparaat",
|
"notSupportedOnThisDevice": "Niet ondersteund op dit apparaat",
|
||||||
"commandHint_roomupgrade": "Upgradeer deze chat naar de aangegeven kamerversie",
|
"commandHint_roomupgrade": "Upgradeer deze chat naar de aangegeven kamerversie",
|
||||||
"setCustomPermissionLevel": "Aangepast rechten-niveau instellen",
|
|
||||||
"setPermissionsLevelDescription": "Kies hieronder een standaard rol of voer een aangepast rechten-niveau in tussen 0 en 100.",
|
|
||||||
"ignoreUser": "Persoon negeren",
|
"ignoreUser": "Persoon negeren",
|
||||||
"normalUser": "Normaal persoon",
|
|
||||||
"pleaseWaitUntilInvited": "Wacht even alsjeblieft tot iemand van de chat je uitnodigt.",
|
"pleaseWaitUntilInvited": "Wacht even alsjeblieft tot iemand van de chat je uitnodigt.",
|
||||||
"approve": "Goedkeuren",
|
"approve": "Goedkeuren",
|
||||||
"youHaveKnocked": "Je hebt geklopt",
|
"youHaveKnocked": "Je hebt geklopt",
|
||||||
|
|
@ -3023,11 +2661,6 @@
|
||||||
"longPressToRecordVoiceMessage": "Lang drukken om een spraakbericht op te nemen.",
|
"longPressToRecordVoiceMessage": "Lang drukken om een spraakbericht op te nemen.",
|
||||||
"pause": "Pauzeer",
|
"pause": "Pauzeer",
|
||||||
"resume": "Hervat",
|
"resume": "Hervat",
|
||||||
"donate": "Doneer",
|
|
||||||
"newSubSpace": "Nieuwe sub-space",
|
|
||||||
"moveToDifferentSpace": "Naar andere space verplaatsen",
|
|
||||||
"moveUp": "Omhoog verplaatsen",
|
|
||||||
"moveDown": "Omlaag verplaatsen",
|
|
||||||
"removeFromSpaceDescription": "De chat zal worden verwijderd uit de space, maar blijft in je chats.",
|
"removeFromSpaceDescription": "De chat zal worden verwijderd uit de space, maar blijft in je chats.",
|
||||||
"countChats": "{chats} chats",
|
"countChats": "{chats} chats",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3069,7 +2702,6 @@
|
||||||
"startPoll": "Peiling starten",
|
"startPoll": "Peiling starten",
|
||||||
"endPoll": "Peiling beëindigen",
|
"endPoll": "Peiling beëindigen",
|
||||||
"answersVisible": "Zichtbaar invullen",
|
"answersVisible": "Zichtbaar invullen",
|
||||||
"answersHidden": "Antwoorden verborgen",
|
|
||||||
"pollQuestion": "Peiling vraag",
|
"pollQuestion": "Peiling vraag",
|
||||||
"answerOption": "Antwoord optie",
|
"answerOption": "Antwoord optie",
|
||||||
"addAnswerOption": "Antwoord optie toevoegen",
|
"addAnswerOption": "Antwoord optie toevoegen",
|
||||||
|
|
@ -3085,7 +2717,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"answersWillBeVisibleWhenPollHasEnded": "Antwoorden zullen zichtbaar zijn wanneer de peiling is geëindigd",
|
"answersWillBeVisibleWhenPollHasEnded": "Antwoorden zullen zichtbaar zijn wanneer de peiling is geëindigd",
|
||||||
"replyInThread": "Antwoord in draad",
|
"replyInThread": "Antwoord in gesprek",
|
||||||
"countReplies": "{count, plural, =1{Één antwoord} other{{count} antwoorden}}",
|
"countReplies": "{count, plural, =1{Één antwoord} other{{count} antwoorden}}",
|
||||||
"@countReplies": {
|
"@countReplies": {
|
||||||
"type": "int",
|
"type": "int",
|
||||||
|
|
@ -3095,7 +2727,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"thread": "Draad",
|
"thread": "Gesprek",
|
||||||
"backToMainChat": "Terug naar hoofdchat",
|
"backToMainChat": "Terug naar hoofdchat",
|
||||||
"saveChanges": "Wijzigingen opslaan",
|
"saveChanges": "Wijzigingen opslaan",
|
||||||
"createSticker": "Sticker of emoji maken",
|
"createSticker": "Sticker of emoji maken",
|
||||||
|
|
@ -3109,7 +2741,7 @@
|
||||||
"skipChatBackupWarning": "Weet je het zeker? Zonder chat back-up verlies je toegang tot je berichten als je van apparaat wisselt.",
|
"skipChatBackupWarning": "Weet je het zeker? Zonder chat back-up verlies je toegang tot je berichten als je van apparaat wisselt.",
|
||||||
"loadingMessages": "Berichten laden",
|
"loadingMessages": "Berichten laden",
|
||||||
"setupChatBackup": "Chatback-up instellen",
|
"setupChatBackup": "Chatback-up instellen",
|
||||||
"changedTheChatDescription": "{username} heeft de chatomschrijving gewijzigd",
|
"changedTheChatDescription": "{username} heeft het onderwerp gewijzigd",
|
||||||
"changedTheChatName": "{username} heeft de chatnaam gewijzigd",
|
"changedTheChatName": "{username} heeft de chatnaam gewijzigd",
|
||||||
"noMoreResultsFound": "Geen resultaten meer gevonden",
|
"noMoreResultsFound": "Geen resultaten meer gevonden",
|
||||||
"chatSearchedUntil": "Chat doorzocht tot {time}",
|
"chatSearchedUntil": "Chat doorzocht tot {time}",
|
||||||
|
|
@ -3137,5 +2769,43 @@
|
||||||
"logs": "Logs",
|
"logs": "Logs",
|
||||||
"advancedConfigs": "Geavanceerde configuratie",
|
"advancedConfigs": "Geavanceerde configuratie",
|
||||||
"advancedConfigurations": "Geavanceerde configuraties",
|
"advancedConfigurations": "Geavanceerde configuraties",
|
||||||
"signInWithLabel": "Log in met:"
|
"signIn": "Log in",
|
||||||
|
"createNewAccount": "Registreer nieuw account",
|
||||||
|
"signUpGreeting": "FluffyChat is decentraal! Kies een server waar je wil voor jouw account en laten we gaan!",
|
||||||
|
"signInGreeting": "Heb je al een Matrix account? Welkom terug! Kies jouw server en log in.",
|
||||||
|
"appIntro": "Met FluffyChat kan je chatten met je vrienden. Het is een veilige en decentrale [matrix] app! Lees meer op https://matrix.org als je wilt of kies registreren.",
|
||||||
|
"theProcessWasCanceled": "Het proces is geannuleerd.",
|
||||||
|
"join": "Deelnemen",
|
||||||
|
"searchOrEnterHomeserverAddress": "Zoek of voer serveradres in",
|
||||||
|
"matrixId": "Matrix-ID",
|
||||||
|
"setPowerLevel": "Rechtenniveau instellen",
|
||||||
|
"makeModerator": "Maak moderator",
|
||||||
|
"makeAdmin": "Maak beheerder",
|
||||||
|
"removeModeratorRights": "Verwijder moderator-rechten",
|
||||||
|
"removeAdminRights": "Verwijder beheerder-rechten",
|
||||||
|
"powerLevel": "Rechtenniveau",
|
||||||
|
"setPowerLevelDescription": "Rechtenniveau's definiëren wat een persoon mag doen in deze chat en variëren meestal tussen 0 en 100.",
|
||||||
|
"owner": "Eigenaar",
|
||||||
|
"mute": "Demp",
|
||||||
|
"@mute": {
|
||||||
|
"description": "This should be a very short string because there is not much space in the button!"
|
||||||
|
},
|
||||||
|
"createNewChat": "Creëer nieuw chat",
|
||||||
|
"reset": "Herstellen",
|
||||||
|
"fluffyChatSupportBannerMessage": "Fluffy Chat heeft JOUW hulp nodig. _\n❤️❤️❤️\nFluffyChat zal altijd gratis zijn, maar ontwikkeling en hosting kost geld.\nDe toekomst van het project hangt af van steun van mensen zoals jij.",
|
||||||
|
"skipSupportingFluffyChat": "FluffyChat steunen overslaan",
|
||||||
|
"iDoNotWantToSupport": "Ik wil niet ondersteunen",
|
||||||
|
"iAlreadySupportFluffyChat": "Ik steun FluffyChat al",
|
||||||
|
"supportFluffyChat": "FluffyChat steunen",
|
||||||
|
"support": "Steunen",
|
||||||
|
"setLowPriority": "Lage prioriteit instellen",
|
||||||
|
"unsetLowPriority": "Lage prioriteit uitschakelen",
|
||||||
|
"removeCallFromChat": "Verwijder oproep van chat",
|
||||||
|
"removeCallFromChatDescription": "Wil je de oproep voor iedereen in de chat verwijderen?",
|
||||||
|
"removeCallForEveryone": "Verwijder oproep voor iedereen",
|
||||||
|
"live": "Live",
|
||||||
|
"startVoiceCall": "Start audio-gesprek",
|
||||||
|
"startVideoCall": "Start video-gesprek",
|
||||||
|
"joinVoiceCall": "Audio-gesprek opnemen",
|
||||||
|
"joinVideoCall": "Deelnemen aan video-gesprek"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -57,21 +57,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{day}-{month}-{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"help": "Ajuda",
|
"help": "Ajuda",
|
||||||
"@help": {
|
"@help": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -119,18 +104,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}-{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"alwaysUse24HourFormat": "true",
|
"alwaysUse24HourFormat": "true",
|
||||||
"@alwaysUse24HourFormat": {
|
"@alwaysUse24HourFormat": {
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
|
|
@ -138,9 +111,5 @@
|
||||||
"repeatPassword": "Repita a senha",
|
"repeatPassword": "Repita a senha",
|
||||||
"@repeatPassword": {},
|
"@repeatPassword": {},
|
||||||
"notAnImage": "Não é um arquivo de imagem.",
|
"notAnImage": "Não é um arquivo de imagem.",
|
||||||
"@notAnImage": {},
|
"@notAnImage": {}
|
||||||
"setCustomPermissionLevel": "Definir nível de permissão personalizado",
|
}
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"addChatDescription": "Adicionar uma descrição de chat...",
|
|
||||||
"@addChatDescription": {}
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -116,18 +116,6 @@
|
||||||
},
|
},
|
||||||
"sendOnEnter": "Enviar com Enter",
|
"sendOnEnter": "Enviar com Enter",
|
||||||
"@sendOnEnter": {},
|
"@sendOnEnter": {},
|
||||||
"badServerVersionsException": "O servidor suporta as versões Spec:\n{serverVersions}\nMas esta aplicação apenas suporta {suportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"badServerLoginTypesException": "O servidor suporta os tipos de início de sessão:\n{serverVersions}\nMas esta aplicação apenas suporta:\n{suportedVersions}",
|
"badServerLoginTypesException": "O servidor suporta os tipos de início de sessão:\n{serverVersions}\nMas esta aplicação apenas suporta:\n{suportedVersions}",
|
||||||
"@badServerLoginTypesException": {
|
"@badServerLoginTypesException": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -172,11 +160,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Mensagens de robôs",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -329,8 +312,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "A conversa foi adicionada a este espaço",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "Conversas",
|
"chats": "Conversas",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -447,31 +428,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Confirmar",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Ligar",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "O contacto foi convidado para o grupo",
|
"contactHasBeenInvitedToTheGroup": "O contacto foi convidado para o grupo",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Contém nome de exibição",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Contém nome de utilizador",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "O conteúdo foi denunciado aos admins do servidor",
|
"contentHasBeenReported": "O conteúdo foi denunciado aos admins do servidor",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -551,33 +512,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}-{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}-{month}-{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Isto irá desativar a tua conta. Não é reversível! Tens a certeza?",
|
"deactivateAccountWarning": "Isto irá desativar a tua conta. Não é reversível! Tens a certeza?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -683,11 +617,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Precisas de escolher um código de emote e uma imagem!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Conversa vazia",
|
"emptyChat": "Conversa vazia",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -739,11 +668,6 @@
|
||||||
},
|
},
|
||||||
"homeserver": "Servidor",
|
"homeserver": "Servidor",
|
||||||
"@homeserver": {},
|
"@homeserver": {},
|
||||||
"enterYourHomeserver": "Insere o teu servidor",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Erro ao obter localização: {error}",
|
"errorObtainingLocation": "Erro ao obter localização: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -783,11 +707,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Ir para a nova sala",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Grupo",
|
"group": "Grupo",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -859,11 +778,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identidade",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Ignorar",
|
"ignore": "Ignorar",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -925,11 +839,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Convite para mim",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"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": "{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": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1009,11 +918,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licença",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Claro",
|
"lightTheme": "Claro",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1067,11 +971,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Alterações de membros",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Mencionar",
|
"mention": "Mencionar",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1266,11 +1165,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Notificações ativadas para esta conta",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "Estão {count} utilizadores(as) a escrever…",
|
"numUsersTyping": "Estão {count} utilizadores(as) a escrever…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1388,11 +1282,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Pessoas",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Escolher uma imagem",
|
"pickImage": "Escolher uma imagem",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1412,11 +1301,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Por favor, escolhe",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Por favor, escolhe um código-passe",
|
"pleaseChooseAPasscode": "Por favor, escolhe um código-passe",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1505,11 +1389,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Reentrar",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Remover",
|
"remove": "Remover",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1529,11 +1408,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Remover dispositivo",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Perdoar nesta conversa",
|
"unbanFromChat": "Perdoar nesta conversa",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1589,15 +1463,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Visto por {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendFile": "Enviar ficheiro",
|
"sendFile": "Enviar ficheiro",
|
||||||
"@sendFile": {
|
"@sendFile": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1613,16 +1478,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Enviar original",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Enviar autocolante",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Enviar vídeo",
|
"sendVideo": "Enviar vídeo",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1697,14 +1552,6 @@
|
||||||
"@dehydrate": {},
|
"@dehydrate": {},
|
||||||
"dehydrateWarning": "Esta ação não pode ser revertida. Assegura-te que guardas bem a cópia de segurança.",
|
"dehydrateWarning": "Esta ação não pode ser revertida. Assegura-te que guardas bem a cópia de segurança.",
|
||||||
"@dehydrateWarning": {},
|
"@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": "Restaurar a partir de cópia de segurança",
|
||||||
"@hydrate": {},
|
"@hydrate": {}
|
||||||
"hydrateTor": "Utilizadores do TOR: Importar sessão",
|
}
|
||||||
"@hydrateTor": {},
|
|
||||||
"dehydrateTorLong": "Para utilizadores do TOR, é recomendado exportar a sessão antes de fechar a janela.",
|
|
||||||
"@dehydrateTorLong": {}
|
|
||||||
}
|
|
||||||
|
|
@ -197,11 +197,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Introduceți homeserverul vostru",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"groupWith": "Grup cu {displayname}",
|
"groupWith": "Grup cu {displayname}",
|
||||||
"@groupWith": {
|
"@groupWith": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -221,11 +216,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"rejoin": "Reintrați",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sentCallInformations": "{senderName} a trimis informație de apel",
|
"sentCallInformations": "{senderName} a trimis informație de apel",
|
||||||
"@sentCallInformations": {
|
"@sentCallInformations": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -255,15 +245,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{Un chat necitit} other{{unreadCount} chaturi necitite}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"verifySuccess": "A reușit verificarea!",
|
"verifySuccess": "A reușit verificarea!",
|
||||||
"@verifySuccess": {
|
"@verifySuccess": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -274,11 +255,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Imagine de fundal",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reactedWith": "{sender} a reacționat cu {reaction}",
|
"reactedWith": "{sender} a reacționat cu {reaction}",
|
||||||
"@reactedWith": {
|
"@reactedWith": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -316,11 +292,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Deschideți camera pentru video",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"openAppToReadMessages": "Deschideți aplicația să citiți mesajele",
|
"openAppToReadMessages": "Deschideți aplicația să citiți mesajele",
|
||||||
"@openAppToReadMessages": {
|
"@openAppToReadMessages": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -340,11 +311,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Eliminați dispozitivul",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"share": "Partajați",
|
"share": "Partajați",
|
||||||
"@share": {
|
"@share": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -375,11 +341,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Comutați favoritul",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unblockDevice": "Debloca dispozitiv",
|
"unblockDevice": "Debloca dispozitiv",
|
||||||
"@unblockDevice": {
|
"@unblockDevice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -410,16 +371,12 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"addToSpaceDescription": "Alegeți un spațiu în care să adăugați acest chat.",
|
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"placeCall": "Faceți apel",
|
"placeCall": "Faceți apel",
|
||||||
"@placeCall": {},
|
"@placeCall": {},
|
||||||
"voiceCall": "Apel vocal",
|
"voiceCall": "Apel vocal",
|
||||||
"@voiceCall": {},
|
"@voiceCall": {},
|
||||||
"unsupportedAndroidVersion": "Versiune de Android nesuportat",
|
"unsupportedAndroidVersion": "Versiune de Android nesuportat",
|
||||||
"@unsupportedAndroidVersion": {},
|
"@unsupportedAndroidVersion": {},
|
||||||
"previousAccount": "Contul anterior",
|
|
||||||
"@previousAccount": {},
|
|
||||||
"userIsTyping": "{username} tastează…",
|
"userIsTyping": "{username} tastează…",
|
||||||
"@userIsTyping": {
|
"@userIsTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -429,8 +386,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"widgetCustom": "Personalizat",
|
|
||||||
"@widgetCustom": {},
|
|
||||||
"screenSharingTitle": "partajarea de ecran",
|
"screenSharingTitle": "partajarea de ecran",
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"newGroup": "Grup nou",
|
"newGroup": "Grup nou",
|
||||||
|
|
@ -543,11 +498,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Invitați pentru mine",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fluffychat": "FluffyChat",
|
"fluffychat": "FluffyChat",
|
||||||
"@fluffychat": {
|
"@fluffychat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -599,8 +549,6 @@
|
||||||
},
|
},
|
||||||
"openChat": "Deschideți Chat",
|
"openChat": "Deschideți Chat",
|
||||||
"@openChat": {},
|
"@openChat": {},
|
||||||
"emailOrUsername": "Email sau nume de utilizator",
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"youBannedUser": "Ați interzis pe {user}",
|
"youBannedUser": "Ați interzis pe {user}",
|
||||||
"@youBannedUser": {
|
"@youBannedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -611,8 +559,6 @@
|
||||||
},
|
},
|
||||||
"fileIsTooBigForServer": "Serverul reportează că fișierul este prea mare să fie trimis.",
|
"fileIsTooBigForServer": "Serverul reportează că fișierul este prea mare să fie trimis.",
|
||||||
"@fileIsTooBigForServer": {},
|
"@fileIsTooBigForServer": {},
|
||||||
"widgetName": "Nume",
|
|
||||||
"@widgetName": {},
|
|
||||||
"sorryThatsNotPossible": "Scuze... acest nu este posibil",
|
"sorryThatsNotPossible": "Scuze... acest nu este posibil",
|
||||||
"@sorryThatsNotPossible": {},
|
"@sorryThatsNotPossible": {},
|
||||||
"enableEncryptionWarning": "Activând criptare, nu mai puteți să o dezactivați în viitor. Sunteți sigur?",
|
"enableEncryptionWarning": "Activând criptare, nu mai puteți să o dezactivați în viitor. Sunteți sigur?",
|
||||||
|
|
@ -635,11 +581,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"connect": "Conectați",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"you": "Voi",
|
"you": "Voi",
|
||||||
"@you": {
|
"@you": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -689,18 +630,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"theyMatch": "Sunt asemănători",
|
"theyMatch": "Sunt asemănători",
|
||||||
"@theyMatch": {
|
"@theyMatch": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -712,11 +641,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleMuted": "Comutați amuțeștarea",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"scanQrCode": "Scanați cod QR",
|
"scanQrCode": "Scanați cod QR",
|
||||||
"@scanQrCode": {},
|
"@scanQrCode": {},
|
||||||
"addAccount": "Adăugați cont",
|
"addAccount": "Adăugați cont",
|
||||||
|
|
@ -727,45 +651,15 @@
|
||||||
"@confirmEventUnpin": {},
|
"@confirmEventUnpin": {},
|
||||||
"emojis": "Emoji-uri",
|
"emojis": "Emoji-uri",
|
||||||
"@emojis": {},
|
"@emojis": {},
|
||||||
"switchToAccount": "Schimbați la contul {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nextAccount": "Contul următor",
|
|
||||||
"@nextAccount": {},
|
|
||||||
"indexedDbErrorTitle": "Probleme cu modul privat",
|
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"users": "Utilizatori",
|
"users": "Utilizatori",
|
||||||
"@users": {},
|
"@users": {},
|
||||||
"startFirstChat": "Începeți primul chatul vostru",
|
|
||||||
"@startFirstChat": {},
|
|
||||||
"callingPermissions": "Permisiuni de apel",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"callingAccount": "Cont de apel",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"foregroundServiceRunning": "Această notificare apare când serviciul de foreground rulează.",
|
"foregroundServiceRunning": "Această notificare apare când serviciul de foreground rulează.",
|
||||||
"@foregroundServiceRunning": {},
|
"@foregroundServiceRunning": {},
|
||||||
"callingAccountDetails": "Permite FluffyChat să folosească aplicația de apeluri nativă android.",
|
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"appearOnTop": "Apare deasupra",
|
|
||||||
"@appearOnTop": {},
|
|
||||||
"appearOnTopDetails": "Permite aplicația să apare deasupra (nu este necesar dacă aveți FluffyChat stabilit ca cont de apeluri)",
|
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"currentlyActive": "Activ acum",
|
"currentlyActive": "Activ acum",
|
||||||
"@currentlyActive": {
|
"@currentlyActive": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Conține displayname",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"isTyping": "tastează…",
|
"isTyping": "tastează…",
|
||||||
"@isTyping": {
|
"@isTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -783,8 +677,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Chatul a fost adăugat la acest spațiu",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"clearArchive": "Ștergeți arhiva",
|
"clearArchive": "Ștergeți arhiva",
|
||||||
"@clearArchive": {},
|
"@clearArchive": {},
|
||||||
"commandHint_markasdm": "Marcați ca cameră de mesaje directe",
|
"commandHint_markasdm": "Marcați ca cameră de mesaje directe",
|
||||||
|
|
@ -893,26 +785,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{year}-{month}-{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"allRooms": "Toate chaturi de grup",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"forward": "Înainte",
|
"forward": "Înainte",
|
||||||
"@forward": {
|
"@forward": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -933,11 +805,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identitate",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Ignorați",
|
"ignore": "Ignorați",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1029,11 +896,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Permis",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Luminat",
|
"lightTheme": "Luminat",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1050,14 +912,6 @@
|
||||||
},
|
},
|
||||||
"dehydrate": "Exportați sesiunea și ștergeți dispozitivul",
|
"dehydrate": "Exportați sesiunea și ștergeți dispozitivul",
|
||||||
"@dehydrate": {},
|
"@dehydrate": {},
|
||||||
"dehydrateTor": "Utilizatori de TOR: Exportați sesiunea",
|
|
||||||
"@dehydrateTor": {},
|
|
||||||
"dehydrateTorLong": "Pentru utilizatori de TOR, este recomandat să exportați sesiunea înainte de a închideți fereastra.",
|
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"hydrateTor": "Utilizatori TOR: Importați sesiune exportată",
|
|
||||||
"@hydrateTor": {},
|
|
||||||
"hydrateTorLong": "Ați exportat sesiunea vostră ultima dată pe TOR? Importați-o repede și continuați să conversați.",
|
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"hydrate": "Restaurați din fișier backup",
|
"hydrate": "Restaurați din fișier backup",
|
||||||
"@hydrate": {},
|
"@hydrate": {},
|
||||||
"loadMore": "Încarcă mai multe…",
|
"loadMore": "Încarcă mai multe…",
|
||||||
|
|
@ -1110,11 +964,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Notificări activate pentru acest cont",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"obtainingLocation": "Obținând locație…",
|
"obtainingLocation": "Obținând locație…",
|
||||||
"@obtainingLocation": {
|
"@obtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1145,21 +994,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Stabiliți emoji-uri personalizate",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Stabiliți nivelul de permisii",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"singlesignon": "Autentificare unică",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"startedACall": "{senderName} a început un apel",
|
"startedACall": "{senderName} a început un apel",
|
||||||
"@startedACall": {
|
"@startedACall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1270,33 +1104,10 @@
|
||||||
"@openGallery": {},
|
"@openGallery": {},
|
||||||
"removeFromSpace": "Eliminați din spațiu",
|
"removeFromSpace": "Eliminați din spațiu",
|
||||||
"@removeFromSpace": {},
|
"@removeFromSpace": {},
|
||||||
"publish": "Publicați",
|
|
||||||
"@publish": {},
|
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"unsupportedAndroidVersionLong": "Această funcție are nevoie de o versiune de Android mai nouă. Vă rugăm să verificați dacă sunt actualizări sau suport de la Lineage OS.",
|
"unsupportedAndroidVersionLong": "Această funcție are nevoie de o versiune de Android mai nouă. Vă rugăm să verificați dacă sunt actualizări sau suport de la Lineage OS.",
|
||||||
"@unsupportedAndroidVersionLong": {},
|
"@unsupportedAndroidVersionLong": {},
|
||||||
"dismiss": "Respingeți",
|
"dismiss": "Respingeți",
|
||||||
"@dismiss": {},
|
"@dismiss": {},
|
||||||
"widgetVideo": "Video",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"widgetEtherpad": "Notiță text",
|
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"@widgetJitsi": {},
|
|
||||||
"widgetUrlError": "Acest URL nu este valibil.",
|
|
||||||
"@widgetUrlError": {},
|
|
||||||
"widgetNameError": "Vă rugăm să introduceți un nume de afișare.",
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"errorAddingWidget": "Adăugarea widget-ului a eșuat.",
|
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"youRejectedTheInvitation": "Ați respins invitația",
|
"youRejectedTheInvitation": "Ați respins invitația",
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"youJoinedTheChat": "Va-ți alăturat la chat",
|
"youJoinedTheChat": "Va-ți alăturat la chat",
|
||||||
|
|
@ -1355,29 +1166,12 @@
|
||||||
"@screenSharingDetail": {},
|
"@screenSharingDetail": {},
|
||||||
"storeSecurlyOnThisDevice": "Stoca sigur pe acest dispozitiv",
|
"storeSecurlyOnThisDevice": "Stoca sigur pe acest dispozitiv",
|
||||||
"@storeSecurlyOnThisDevice": {},
|
"@storeSecurlyOnThisDevice": {},
|
||||||
"otherCallingPermissions": "Microfon, cameră și alte permisiuni lui FluffyChat",
|
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"whyIsThisMessageEncrypted": "De ce este acest mesaj ilizibil?",
|
"whyIsThisMessageEncrypted": "De ce este acest mesaj ilizibil?",
|
||||||
"@whyIsThisMessageEncrypted": {},
|
"@whyIsThisMessageEncrypted": {},
|
||||||
"newSpace": "Spațiu nou",
|
"newSpace": "Spațiu nou",
|
||||||
"@newSpace": {},
|
"@newSpace": {},
|
||||||
"enterSpace": "Intrați în spațiu",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"enterRoom": "Intrați în cameră",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"allSpaces": "Toate spațiile",
|
"allSpaces": "Toate spațiile",
|
||||||
"@allSpaces": {},
|
"@allSpaces": {},
|
||||||
"numChats": "{number} chaturi",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Ascundeți evenimente de stare neimportante",
|
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"doNotShowAgain": "Nu se mai apară din nou",
|
"doNotShowAgain": "Nu se mai apară din nou",
|
||||||
"@doNotShowAgain": {},
|
"@doNotShowAgain": {},
|
||||||
"newSpaceDescription": "Spațiile vă permit să vă consolidați chaturile și să stabiliți comunități private sau publice.",
|
"newSpaceDescription": "Spațiile vă permit să vă consolidați chaturile și să stabiliți comunități private sau publice.",
|
||||||
|
|
@ -1405,11 +1199,6 @@
|
||||||
"@report": {},
|
"@report": {},
|
||||||
"jumpToLastReadMessage": "Săriți la ultimul citit mesaj",
|
"jumpToLastReadMessage": "Săriți la ultimul citit mesaj",
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"memberChanges": "Schimbări de membri",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"guestsCanJoin": "Musafiri pot să se alăture",
|
"guestsCanJoin": "Musafiri pot să se alăture",
|
||||||
"@guestsCanJoin": {
|
"@guestsCanJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1435,11 +1224,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Mergeți la camera nouă",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Grup",
|
"group": "Grup",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1519,11 +1303,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Confirmați",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"or": "Sau",
|
"or": "Sau",
|
||||||
"@or": {
|
"@or": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1550,11 +1329,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setInvitationLink": "Stabiliți linkul de invitație",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"transferFromAnotherDevice": "Transfera de la alt dispozitiv",
|
"transferFromAnotherDevice": "Transfera de la alt dispozitiv",
|
||||||
"@transferFromAnotherDevice": {
|
"@transferFromAnotherDevice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1570,11 +1344,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleUnread": "Marcați Citit/Necitit",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tryToSendAgain": "Încercați să trimiteți din nou",
|
"tryToSendAgain": "Încercați să trimiteți din nou",
|
||||||
"@tryToSendAgain": {
|
"@tryToSendAgain": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1706,10 +1475,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"indexedDbErrorLong": "Stocarea de mesaje nu este activat implicit în modul privat.\nVă rugăm să vizitați\n- about:config\n- stabiliți dom.indexedDB.privateBrowsing.enabled la true\nAstfel, nu este posibil să folosiți FluffyChat.",
|
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"addWidget": "Adăugați widget",
|
|
||||||
"@addWidget": {},
|
|
||||||
"locationPermissionDeniedNotice": "Permisiunea locației blocată. Vă rugăm să o dezblocați să împărțiți locația voastră.",
|
"locationPermissionDeniedNotice": "Permisiunea locației blocată. Vă rugăm să o dezblocați să împărțiți locația voastră.",
|
||||||
"@locationPermissionDeniedNotice": {
|
"@locationPermissionDeniedNotice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1809,18 +1574,6 @@
|
||||||
"@addToSpace": {},
|
"@addToSpace": {},
|
||||||
"commandHint_hug": "Trimiteți o îmbrățișare",
|
"commandHint_hug": "Trimiteți o îmbrățișare",
|
||||||
"@commandHint_hug": {},
|
"@commandHint_hug": {},
|
||||||
"badServerVersionsException": "Homeserver-ul suportă versiunele de Spec următoare:\n{serverVersions}\nDar această aplicație suportă numai {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"badServerLoginTypesException": "Homeserver-ul suportă următoarele feluri de login:\n{serverVersions}\nDar această aplicație suportă numai:\n{supportedVersions}",
|
"badServerLoginTypesException": "Homeserver-ul suportă următoarele feluri de login:\n{serverVersions}\nDar această aplicație suportă numai:\n{supportedVersions}",
|
||||||
"@badServerLoginTypesException": {
|
"@badServerLoginTypesException": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1924,11 +1677,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsUserName": "Conține nume de utilizator",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"copyToClipboard": "Copiați în clipboard",
|
"copyToClipboard": "Copiați în clipboard",
|
||||||
"@copyToClipboard": {
|
"@copyToClipboard": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2048,11 +1796,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Trebuie să alegeți shortcode pentru emote și o imagine!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"encryption": "Criptare",
|
"encryption": "Criptare",
|
||||||
"@encryption": {
|
"@encryption": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2112,11 +1855,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Trimiteți original",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Trimiteți video",
|
"sendVideo": "Trimiteți video",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2127,18 +1865,8 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "Trimiteți sticker",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseEnterRecoveryKeyDescription": "Să vă deblocați mesajele vechi, vă rugăm să introduceți cheia de recuperare creată de o seșiune anterioră. Cheia de recuperare NU este parola voastră.",
|
"pleaseEnterRecoveryKeyDescription": "Să vă deblocați mesajele vechi, vă rugăm să introduceți cheia de recuperare creată de o seșiune anterioră. Cheia de recuperare NU este parola voastră.",
|
||||||
"@pleaseEnterRecoveryKeyDescription": {},
|
"@pleaseEnterRecoveryKeyDescription": {},
|
||||||
"separateChatTypes": "Afișați chaturi directe și grupuri separat",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "Stabiliți ca pseudonimul primar",
|
"setAsCanonicalAlias": "Stabiliți ca pseudonimul primar",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2194,21 +1922,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Persoane",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Alegeți o imagine",
|
"pickImage": "Alegeți o imagine",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Vă rugăm să alegeți",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pin": "Fixați",
|
"pin": "Fixați",
|
||||||
"@pin": {
|
"@pin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2306,15 +2024,6 @@
|
||||||
"@recoveryKey": {},
|
"@recoveryKey": {},
|
||||||
"recoveryKeyLost": "Cheia de recuperare pierdută?",
|
"recoveryKeyLost": "Cheia de recuperare pierdută?",
|
||||||
"@recoveryKeyLost": {},
|
"@recoveryKeyLost": {},
|
||||||
"seenByUser": "Văzut de {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"muteChat": "Amuțați chatul",
|
"muteChat": "Amuțați chatul",
|
||||||
"@muteChat": {
|
"@muteChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2365,8 +2074,6 @@
|
||||||
},
|
},
|
||||||
"deviceKeys": "Cheile dispozitivului:",
|
"deviceKeys": "Cheile dispozitivului:",
|
||||||
"@deviceKeys": {},
|
"@deviceKeys": {},
|
||||||
"pleaseEnterRecoveryKey": "Vă rugăm să introduceți cheia voastră de recuperare:",
|
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"newVerificationRequest": "Cerere de verificare nouă!",
|
"newVerificationRequest": "Cerere de verificare nouă!",
|
||||||
"@newVerificationRequest": {
|
"@newVerificationRequest": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2448,11 +2155,6 @@
|
||||||
},
|
},
|
||||||
"commandHint_googly": "Trimiteți câțiva ochi googly",
|
"commandHint_googly": "Trimiteți câțiva ochi googly",
|
||||||
"@commandHint_googly": {},
|
"@commandHint_googly": {},
|
||||||
"botMessages": "Mesaje Bot",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"all": "Toate",
|
"all": "Toate",
|
||||||
"@all": {
|
"@all": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2504,9 +2206,5 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"reopenChat": "Deschide din nou chatul",
|
"reopenChat": "Deschide din nou chatul",
|
||||||
"@reopenChat": {},
|
"@reopenChat": {}
|
||||||
"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": {}
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -304,16 +304,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Potvrdiť",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Pripojiť",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kontakt bol pozvaný do skupiny",
|
"contactHasBeenInvitedToTheGroup": "Kontakt bol pozvaný do skupiny",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -383,33 +373,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}.{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}.{month}.{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"delete": "Odstrániť",
|
"delete": "Odstrániť",
|
||||||
"@delete": {
|
"@delete": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -465,11 +428,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Musíte zvoliť kód emotikonu a obrázok!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Prázdny chat",
|
"emptyChat": "Prázdny chat",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -490,11 +448,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Zadajte svoj homeserver",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fileName": "Názov súboru",
|
"fileName": "Názov súboru",
|
||||||
"@fileName": {
|
"@fileName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -571,11 +524,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Identita",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"incorrectPassphraseOrKey": "Nesprávna prístupová fráza alebo kľúč na obnovenie",
|
"incorrectPassphraseOrKey": "Nesprávna prístupová fráza alebo kľúč na obnovenie",
|
||||||
"@incorrectPassphraseOrKey": {
|
"@incorrectPassphraseOrKey": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -691,11 +639,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Licencia",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Svetlá",
|
"lightTheme": "Svetlá",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -881,11 +824,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Vrátiť sa",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Odstrániť",
|
"remove": "Odstrániť",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -905,11 +843,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Odstráňiť zariadenie",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Odblokovať",
|
"unbanFromChat": "Odblokovať",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -930,15 +863,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Videné užívateľom {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Odoslať",
|
"send": "Odoslať",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1004,11 +928,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setInvitationLink": "Nastaviť odkaz pre pozvánku",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Nastaviť status",
|
"setStatus": "Nastaviť status",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1120,15 +1039,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, other{{unreadCount} neprečítaných chatov}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} a {count} dalších píšu…",
|
"userAndOthersAreTyping": "{username} a {count} dalších píšu…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1248,11 +1158,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Pozadie",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"whoIsAllowedToJoinThisGroup": "Kto môže vstúpiť do tejto skupiny",
|
"whoIsAllowedToJoinThisGroup": "Kto môže vstúpiť do tejto skupiny",
|
||||||
"@whoIsAllowedToJoinThisGroup": {
|
"@whoIsAllowedToJoinThisGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1283,11 +1188,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Ľudia",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"chats": "Čety",
|
"chats": "Čety",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1303,18 +1203,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Domovský server podporuje verzie špecifikácie:\n{serverVersions}\nAle táto aplikácie podporuje iba {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"answeredTheCall": "{senderName} prevzal hovor",
|
"answeredTheCall": "{senderName} prevzal hovor",
|
||||||
"@answeredTheCall": {
|
"@answeredTheCall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1349,11 +1237,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "Poslať nálepku",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"roomVersion": "Verzia miestnosti",
|
"roomVersion": "Verzia miestnosti",
|
||||||
"@roomVersion": {
|
"@roomVersion": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1369,11 +1252,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setPermissionsLevel": "Nastaviť úroveň oprávnení",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"badServerLoginTypesException": "Server podporuje tieto typy prihlásenia:\n{serverVersions}\nAle táto aplikácia podporuje iba:\n{supportedVersions}",
|
"badServerLoginTypesException": "Server podporuje tieto typy prihlásenia:\n{serverVersions}\nAle táto aplikácia podporuje iba:\n{supportedVersions}",
|
||||||
"@badServerLoginTypesException": {
|
"@badServerLoginTypesException": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1442,11 +1320,6 @@
|
||||||
"@sendAsText": {
|
"@sendAsText": {
|
||||||
"type": "String"
|
"type": "String"
|
||||||
},
|
},
|
||||||
"sendOriginal": "Poslať originál",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Poslať video",
|
"sendVideo": "Poslať video",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1454,4 +1327,4 @@
|
||||||
},
|
},
|
||||||
"importNow": "Importovať teraz",
|
"importNow": "Importovať teraz",
|
||||||
"@importNow": {}
|
"@importNow": {}
|
||||||
}
|
}
|
||||||
|
|
@ -131,11 +131,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Botova sporočila",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Prekliči",
|
"cancel": "Prekliči",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -303,8 +298,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Klepet je bil dodan v ta prostor",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "Klepeti",
|
"chats": "Klepeti",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -406,21 +399,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Potrdi",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsDisplayName": "Vsebuje prikazno ime",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Vsebuje uporabniško ime",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"archive": "Arhiv",
|
"archive": "Arhiv",
|
||||||
"@archive": {
|
"@archive": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -467,18 +445,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Domači strežnik podpira različice Spec:\n{serverVersions}\nToda ta aplikacija podpira samo {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"changedTheChatNameTo": "{username} je spremenil ime klepeta v: '{chatname}'",
|
"changedTheChatNameTo": "{username} je spremenil ime klepeta v: '{chatname}'",
|
||||||
"@changedTheChatNameTo": {
|
"@changedTheChatNameTo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -525,11 +491,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /myroomnick"
|
"description": "Usage hint for the command /myroomnick"
|
||||||
},
|
},
|
||||||
"connect": "Povežite se",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kontakt je bil povabljen v skupino",
|
"contactHasBeenInvitedToTheGroup": "Kontakt je bil povabljen v skupino",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -603,33 +564,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{day}-{month}-{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"createdTheChat": "{username} je ustvaril klepet",
|
"createdTheChat": "{username} je ustvaril klepet",
|
||||||
"@createdTheChat": {
|
"@createdTheChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -656,4 +590,4 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1 +1 @@
|
||||||
{}
|
{}
|
||||||
|
|
@ -118,18 +118,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Домаћи сервер подржава верзије:\n{serverVersions}\nали ова апликација подржава само {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Забрани у ћаскању",
|
"banFromChat": "Забрани у ћаскању",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -162,11 +150,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Поруке Бота",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Откажи",
|
"cancel": "Откажи",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -468,31 +451,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Потврди",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Повежи се",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Особа је позвана у групу",
|
"contactHasBeenInvitedToTheGroup": "Особа је позвана у групу",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Садржи приказно име",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Садржи корисничко име",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Садржај је пријављен администраторима сервера",
|
"contentHasBeenReported": "Садржај је пријављен администраторима сервера",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -567,33 +530,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day} {month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day} {month} {year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Ово ће деактивирати ваш кориснички налог. Не може се повратити! Сигурни сте?",
|
"deactivateAccountWarning": "Ово ће деактивирати ваш кориснички налог. Не може се повратити! Сигурни сте?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -699,11 +635,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Морате да изаберете скраћеницу и слику за емоти!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "празно ћаскање",
|
"emptyChat": "празно ћаскање",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -753,11 +684,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Унесите свој домаћи сервер",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"everythingReady": "Све је спремно!",
|
"everythingReady": "Све је спремно!",
|
||||||
"@everythingReady": {
|
"@everythingReady": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -798,11 +724,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Иди у нову собу",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Група",
|
"group": "Група",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -874,11 +795,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Идентитет",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Игнориши",
|
"ignore": "Игнориши",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -940,11 +856,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Позивнице за мене",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} вас позива у FluffyChat. \n1. Инсталирајте FluffyChat: https://fluffychat.im \n2. Региструјте се или пријавите \n3. Отворите везу позивнице: {link}",
|
"inviteText": "{username} вас позива у FluffyChat. \n1. Инсталирајте FluffyChat: https://fluffychat.im \n2. Региструјте се или пријавите \n3. Отворите везу позивнице: {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1024,11 +935,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Лиценца",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "светли",
|
"lightTheme": "светли",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1072,11 +978,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Измене чланова",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Спомени",
|
"mention": "Спомени",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1172,11 +1073,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Обавештења укључена за овај налог",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} корисника куца…",
|
"numUsersTyping": "{count} корисника куца…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1266,11 +1162,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Људи",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Избор слике",
|
"pickImage": "Избор слике",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1290,11 +1181,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Изаберите",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Изаберите код за пролаз",
|
"pleaseChooseAPasscode": "Изаберите код за пролаз",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1388,11 +1274,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Поново се придружи",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Уклони",
|
"remove": "Уклони",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1412,11 +1293,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Уклони уређај",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Уклони изгнанство",
|
"unbanFromChat": "Уклони изгнанство",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1467,15 +1343,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "{username} прегледа",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Пошаљи",
|
"send": "Пошаљи",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1506,11 +1373,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Пошаљи оригинал",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Пошаљи видео",
|
"sendVideo": "Пошаљи видео",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1575,21 +1437,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "постави посебне емотије",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Поставља везу позивнице",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Одреди ниво дозволе",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Постави статус",
|
"setStatus": "Постави статус",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1619,11 +1466,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Јединствена пријава",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Прескочи",
|
"skip": "Прескочи",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1679,21 +1521,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Мењај омиљеност",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Мењај ућутканост",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Означи не/прочитано",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Превише упита. Покушајте касније!",
|
"tooManyRequestsWarning": "Превише упита. Покушајте касније!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1760,15 +1587,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, other{непрочитаних ћаскања: {unreadCount}}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} и {count} корисника куцају…",
|
"userAndOthersAreTyping": "{username} и {count} корисника куцају…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1893,11 +1711,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Тапета",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Упозорење!",
|
"warning": "Упозорење!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1967,4 +1780,4 @@
|
||||||
"@repeatPassword": {},
|
"@repeatPassword": {},
|
||||||
"commandHint_cuddle": "Pošalji zagrljaj",
|
"commandHint_cuddle": "Pošalji zagrljaj",
|
||||||
"@commandHint_cuddle": {}
|
"@commandHint_cuddle": {}
|
||||||
}
|
}
|
||||||
5497
lib/l10n/intl_sv.arb
5497
lib/l10n/intl_sv.arb
File diff suppressed because it is too large
Load diff
6163
lib/l10n/intl_ta.arb
6163
lib/l10n/intl_ta.arb
File diff suppressed because it is too large
Load diff
|
|
@ -12,4 +12,4 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -172,8 +172,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addChatDescription": "เพิ่มคำอธิบายการแชท",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"appLock": "ล็อคแอป",
|
"appLock": "ล็อคแอป",
|
||||||
"@appLock": {
|
"@appLock": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -263,15 +261,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@obtainingLocation": {
|
"@obtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -280,7 +270,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@widgetVideo": {},
|
|
||||||
"@dismiss": {},
|
"@dismiss": {},
|
||||||
"@unknownDevice": {
|
"@unknownDevice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -299,10 +288,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@inviteContactToGroup": {
|
"@inviteContactToGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -320,7 +305,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"@reply": {
|
"@reply": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -346,7 +330,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /html"
|
"description": "Usage hint for the command /html"
|
||||||
},
|
},
|
||||||
"@widgetJitsi": {},
|
|
||||||
"@youAreNoLongerParticipatingInThisChat": {
|
"@youAreNoLongerParticipatingInThisChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -356,12 +339,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@messageType": {},
|
"@messageType": {},
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"@oneClientLoggedOut": {},
|
"@oneClientLoggedOut": {},
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@unsupportedAndroidVersionLong": {},
|
"@unsupportedAndroidVersionLong": {},
|
||||||
"@kicked": {
|
"@kicked": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -403,8 +381,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@startFirstChat": {},
|
|
||||||
"@callingAccount": {},
|
|
||||||
"@requestPermission": {
|
"@requestPermission": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -433,15 +409,10 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"@nextAccount": {},
|
|
||||||
"@commandHint_create": {
|
"@commandHint_create": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /create"
|
"description": "Usage hint for the command /create"
|
||||||
},
|
},
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -531,7 +502,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"@waitingPartnerAcceptRequest": {
|
"@waitingPartnerAcceptRequest": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -568,10 +538,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@tryAgain": {},
|
"@tryAgain": {},
|
||||||
"@blocked": {
|
"@blocked": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -584,21 +550,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@unbanUserDescription": {},
|
"@unbanUserDescription": {},
|
||||||
"@userAndUserAreTyping": {
|
"@userAndUserAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -624,7 +575,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@youRejectedTheInvitation": {},
|
"@youRejectedTheInvitation": {},
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"@messagesStyle": {},
|
"@messagesStyle": {},
|
||||||
"@couldNotDecryptMessage": {
|
"@couldNotDecryptMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -639,11 +589,8 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@link": {},
|
"@link": {},
|
||||||
"@widgetUrlError": {},
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"@newSpaceDescription": {},
|
"@newSpaceDescription": {},
|
||||||
"@chatDescription": {},
|
"@chatDescription": {},
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"@next": {
|
"@next": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -660,25 +607,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@editRoomAliases": {
|
"@editRoomAliases": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@enterSpace": {},
|
|
||||||
"@encryptThisChat": {},
|
"@encryptThisChat": {},
|
||||||
"@fileName": {
|
"@fileName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -688,7 +620,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@previousAccount": {},
|
|
||||||
"@publicRooms": {
|
"@publicRooms": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -705,25 +636,15 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@reopenChat": {},
|
"@reopenChat": {},
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"@create": {
|
"@create": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@no": {
|
"@no": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@widgetNameError": {},
|
|
||||||
"@inoffensive": {
|
"@inoffensive": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -741,7 +662,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@addWidget": {},
|
|
||||||
"@removeAllOtherDevices": {
|
"@removeAllOtherDevices": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -790,7 +710,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@hydrateTor": {},
|
|
||||||
"@pushNotificationsNotAvailable": {},
|
"@pushNotificationsNotAvailable": {},
|
||||||
"@passwordRecovery": {
|
"@passwordRecovery": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -830,7 +749,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@signInWithPassword": {},
|
|
||||||
"@ignoredUsers": {
|
"@ignoredUsers": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -891,10 +809,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@commandHint_clearcache": {
|
"@commandHint_clearcache": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /clearcache"
|
"description": "Usage hint for the command /clearcache"
|
||||||
|
|
@ -914,14 +828,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@whyIsThisMessageEncrypted": {},
|
"@whyIsThisMessageEncrypted": {},
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@rejectedTheInvitation": {
|
"@rejectedTheInvitation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -943,19 +849,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@or": {
|
"@or": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@dehydrateWarning": {},
|
"@dehydrateWarning": {},
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@noOtherDevicesFound": {},
|
"@noOtherDevicesFound": {},
|
||||||
"@whoIsAllowedToJoinThisGroup": {
|
"@whoIsAllowedToJoinThisGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -965,14 +863,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@storeSecurlyOnThisDevice": {},
|
"@storeSecurlyOnThisDevice": {},
|
||||||
"@yourChatBackupHasBeenSetUp": {},
|
"@yourChatBackupHasBeenSetUp": {},
|
||||||
"@chatBackup": {
|
"@chatBackup": {
|
||||||
|
|
@ -1032,18 +922,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@username": {
|
"@username": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1058,10 +936,6 @@
|
||||||
},
|
},
|
||||||
"@fileIsTooBigForServer": {},
|
"@fileIsTooBigForServer": {},
|
||||||
"@homeserver": {},
|
"@homeserver": {},
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@changedTheHistoryVisibilityTo": {
|
"@changedTheHistoryVisibilityTo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1093,7 +967,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@callingPermissions": {},
|
|
||||||
"@newMessageInFluffyChat": {
|
"@newMessageInFluffyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1113,18 +986,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@unlockOldMessages": {},
|
"@unlockOldMessages": {},
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@changedTheJoinRulesTo": {
|
"@changedTheJoinRulesTo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1212,10 +1073,6 @@
|
||||||
"@sendAsText": {
|
"@sendAsText": {
|
||||||
"type": "String"
|
"type": "String"
|
||||||
},
|
},
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@archiveRoomDescription": {},
|
"@archiveRoomDescription": {},
|
||||||
"@changedTheChatNameTo": {
|
"@changedTheChatNameTo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1228,18 +1085,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@commandInvalid": {
|
"@commandInvalid": {
|
||||||
"type": "String"
|
"type": "String"
|
||||||
},
|
},
|
||||||
|
|
@ -1310,7 +1155,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"@emoteExists": {
|
"@emoteExists": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1349,12 +1193,10 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"@roomHasBeenUpgraded": {
|
"@roomHasBeenUpgraded": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@enterRoom": {},
|
|
||||||
"@enableEmotesGlobally": {
|
"@enableEmotesGlobally": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1404,17 +1246,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@confirmEventUnpin": {},
|
"@confirmEventUnpin": {},
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@youInvitedUser": {
|
"@youInvitedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"user": {
|
"user": {
|
||||||
|
|
@ -1445,10 +1276,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1463,10 +1290,6 @@
|
||||||
"description": "State that {command} is not a valid /command."
|
"description": "State that {command} is not a valid /command."
|
||||||
},
|
},
|
||||||
"@redactMessageDescription": {},
|
"@redactMessageDescription": {},
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@recoveryKey": {},
|
"@recoveryKey": {},
|
||||||
"@redactMessage": {
|
"@redactMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1489,7 +1312,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"@yourPublicKey": {
|
"@yourPublicKey": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1543,10 +1365,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@joinRoom": {
|
"@joinRoom": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1557,9 +1375,7 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@serverRequiresEmail": {},
|
"@serverRequiresEmail": {},
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"@widgetCustom": {},
|
|
||||||
"@sentCallInformations": {
|
"@sentCallInformations": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1568,7 +1384,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"@youBannedUser": {
|
"@youBannedUser": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"user": {
|
"user": {
|
||||||
|
|
@ -1623,7 +1438,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@publish": {},
|
|
||||||
"@openLinkInBrowser": {},
|
"@openLinkInBrowser": {},
|
||||||
"@clearArchive": {},
|
"@clearArchive": {},
|
||||||
"@commandHint_react": {
|
"@commandHint_react": {
|
||||||
|
|
@ -1666,8 +1480,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"@appearOnTop": {},
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"@verifyTitle": {
|
"@verifyTitle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1702,10 +1514,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /ban"
|
"description": "Usage hint for the command /ban"
|
||||||
},
|
},
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@wasDirectChatDisplayName": {
|
"@wasDirectChatDisplayName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1754,7 +1562,6 @@
|
||||||
},
|
},
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"@bundleName": {},
|
"@bundleName": {},
|
||||||
"@dehydrateTor": {},
|
|
||||||
"@removeFromSpace": {},
|
"@removeFromSpace": {},
|
||||||
"@dateAndTimeOfDay": {
|
"@dateAndTimeOfDay": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1820,7 +1627,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@profileNotFound": {},
|
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"@groups": {
|
"@groups": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1849,14 +1655,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@sorryThatsNotPossible": {},
|
"@sorryThatsNotPossible": {},
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@oopsSomethingWentWrong": {
|
"@oopsSomethingWentWrong": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1872,10 +1670,6 @@
|
||||||
"@shareInviteLink": {},
|
"@shareInviteLink": {},
|
||||||
"@commandHint_markasdm": {},
|
"@commandHint_markasdm": {},
|
||||||
"@recoveryKeyLost": {},
|
"@recoveryKeyLost": {},
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@messages": {
|
"@messages": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1901,10 +1695,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@startedACall": {
|
"@startedACall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1921,10 +1711,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@deleteMessage": {
|
"@deleteMessage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -1937,20 +1723,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setTheme": {},
|
|
||||||
"@changeTheHomeserver": {
|
"@changeTheHomeserver": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@youJoinedTheChat": {},
|
"@youJoinedTheChat": {},
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@play": {
|
"@play": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1984,7 +1761,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@widgetName": {},
|
|
||||||
"@sentASticker": {
|
"@sentASticker": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -1993,7 +1769,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"@commandHint_dm": {
|
"@commandHint_dm": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /dm"
|
"description": "Usage hint for the command /dm"
|
||||||
|
|
@ -2063,15 +1838,10 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@share": {
|
"@share": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"@createGroup": {},
|
"@createGroup": {},
|
||||||
"@privacy": {
|
"@privacy": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2085,16 +1855,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"@time": {},
|
"@time": {},
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -2124,10 +1885,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"@pinMessage": {},
|
"@pinMessage": {},
|
||||||
"@screenSharingDetail": {},
|
"@screenSharingDetail": {},
|
||||||
"@muteChat": {
|
"@muteChat": {
|
||||||
|
|
@ -2140,7 +1897,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"@endedTheCall": {
|
"@endedTheCall": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2149,4 +1905,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -131,18 +131,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Ana sunucu aşağıdaki Spec sürümlerini destekliyor:\n{serverVersions}\nAncak bu uygulama yalnızca {supportedVersions} destekliyor",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "Sohbetten engelle",
|
"banFromChat": "Sohbetten engelle",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -175,11 +163,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Bot mesajları",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "İptal",
|
"cancel": "İptal",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -393,8 +376,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Sohbet bu alana eklendi",
|
|
||||||
"@chatHasBeenAddedToThisSpace": {},
|
|
||||||
"chats": "Sohbetler",
|
"chats": "Sohbetler",
|
||||||
"@chats": {
|
"@chats": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -511,31 +492,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Onayla",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Bağlan",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kişi gruba davet edildi",
|
"contactHasBeenInvitedToTheGroup": "Kişi gruba davet edildi",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Görünen ad içerir",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Kullanıcı adı içerir",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "İçerik, sunucu yöneticilerine bildirildi",
|
"contentHasBeenReported": "İçerik, sunucu yöneticilerine bildirildi",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -615,33 +576,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day} {month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}/{month}/{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Bu, kullanıcı hesabınızı devre dışı bırakacak. Bu geri alınamaz! Emin misiniz?",
|
"deactivateAccountWarning": "Bu, kullanıcı hesabınızı devre dışı bırakacak. Bu geri alınamaz! Emin misiniz?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -747,11 +681,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Bir ifade kısa kodu ve bir resim seçmeniz gerekiyor!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Boş sohbet",
|
"emptyChat": "Boş sohbet",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -801,11 +730,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Ana sunucunuzu girin",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Konum alınırken hata oluştu: {error}",
|
"errorObtainingLocation": "Konum alınırken hata oluştu: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -855,11 +779,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Yeni odaya git",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Grup",
|
"group": "Grup",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -931,11 +850,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Kimlik",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "Yok say",
|
"ignore": "Yok say",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -997,11 +911,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Benim için davet et",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} sizi FluffyChat'e davet etti.\n1. fluffychat.im adresini ziyaret edin ve uygulamayı kurun \n2. Kaydolun veya oturum açın \n3. Davet bağlantısını açın: \n {link}",
|
"inviteText": "{username} sizi FluffyChat'e davet etti.\n1. fluffychat.im adresini ziyaret edin ve uygulamayı kurun \n2. Kaydolun veya oturum açın \n3. Davet bağlantısını açın: \n {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1081,11 +990,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Lisans",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Açık",
|
"lightTheme": "Açık",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1139,11 +1043,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Üye değişiklikleri",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Bahset",
|
"mention": "Bahset",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1251,11 +1150,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Bu hesap için bildirimler etkinleştirildi",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} kullanıcı yazıyor…",
|
"numUsersTyping": "{count} kullanıcı yazıyor…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1355,11 +1249,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "İnsanlar",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Bir resim seç",
|
"pickImage": "Bir resim seç",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1379,11 +1268,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Lütfen seçin",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Lütfen bir geçiş kodu seçin",
|
"pleaseChooseAPasscode": "Lütfen bir geçiş kodu seçin",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1477,11 +1361,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Yeniden katıl",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Kaldır",
|
"remove": "Kaldır",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1501,11 +1380,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Aygıtı kaldır",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Sohbet engelini kaldır",
|
"unbanFromChat": "Sohbet engelini kaldır",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1561,15 +1435,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "{username} tarafından görüldü",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Gönder",
|
"send": "Gönder",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1604,16 +1469,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Orijinali gönder",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Çıkartma gönder",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Video gönder",
|
"sendVideo": "Video gönder",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1678,21 +1533,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Özel ifadeler ayarla",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "Davet bağlantısı ayarla",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "İzin seviyesini ayarla",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Durumu ayarla",
|
"setStatus": "Durumu ayarla",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1727,11 +1567,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Tek oturum açma",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Atla",
|
"skip": "Atla",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1802,21 +1637,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Sık Kullanılanlara Ekle/Çıkar",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "Sessize Al/Sessizden Çıkar",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "Okundu/Okunmadı Olarak İşaretle",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Çok fazla istek. Lütfen daha sonra tekrar deneyin!",
|
"tooManyRequestsWarning": "Çok fazla istek. Lütfen daha sonra tekrar deneyin!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1883,15 +1703,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 okunmamış sohbet} other{{unreadCount} okunmamış sohbet}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} ve {count} diğer kişi yazıyor…",
|
"userAndOthersAreTyping": "{username} ve {count} diğer kişi yazıyor…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2016,11 +1827,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Duvar kağıdı:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Uyarı!",
|
"warning": "Uyarı!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2128,8 +1934,6 @@
|
||||||
"@openGallery": {},
|
"@openGallery": {},
|
||||||
"removeFromSpace": "Alandan kaldır",
|
"removeFromSpace": "Alandan kaldır",
|
||||||
"@removeFromSpace": {},
|
"@removeFromSpace": {},
|
||||||
"addToSpaceDescription": "Bu sohbeti eklemek için bir alan seçin.",
|
|
||||||
"@addToSpaceDescription": {},
|
|
||||||
"start": "Başla",
|
"start": "Başla",
|
||||||
"@start": {},
|
"@start": {},
|
||||||
"commandHint_clearcache": "Önbelleği temizleyin",
|
"commandHint_clearcache": "Önbelleği temizleyin",
|
||||||
|
|
@ -2152,22 +1956,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /discardsession"
|
"description": "Usage hint for the command /discardsession"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Bir video için kamerayı aç",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"publish": "Yayınla",
|
|
||||||
"@publish": {},
|
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dismiss": "Kapat",
|
"dismiss": "Kapat",
|
||||||
"@dismiss": {},
|
"@dismiss": {},
|
||||||
"markAsRead": "Okundu olarak işaretle",
|
"markAsRead": "Okundu olarak işaretle",
|
||||||
|
|
@ -2206,44 +1994,6 @@
|
||||||
"@videoCallsBetaWarning": {},
|
"@videoCallsBetaWarning": {},
|
||||||
"experimentalVideoCalls": "Deneysel görüntülü aramalar",
|
"experimentalVideoCalls": "Deneysel görüntülü aramalar",
|
||||||
"@experimentalVideoCalls": {},
|
"@experimentalVideoCalls": {},
|
||||||
"emailOrUsername": "E-posta veya kullanıcı adı",
|
|
||||||
"@emailOrUsername": {},
|
|
||||||
"switchToAccount": "{number}. hesaba geç",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nextAccount": "Sonraki hesap",
|
|
||||||
"@nextAccount": {},
|
|
||||||
"previousAccount": "Önceki hesap",
|
|
||||||
"@previousAccount": {},
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"@widgetJitsi": {},
|
|
||||||
"widgetCustom": "Özel",
|
|
||||||
"@widgetCustom": {},
|
|
||||||
"widgetUrlError": "Bu geçerli bir URL değil.",
|
|
||||||
"@widgetUrlError": {},
|
|
||||||
"widgetNameError": "Lütfen görünecek bir ad girin.",
|
|
||||||
"@widgetNameError": {},
|
|
||||||
"errorAddingWidget": "Widget eklenirken hata oluştu.",
|
|
||||||
"@errorAddingWidget": {},
|
|
||||||
"widgetVideo": "Video",
|
|
||||||
"@widgetVideo": {},
|
|
||||||
"addWidget": "Widget ekle",
|
|
||||||
"@addWidget": {},
|
|
||||||
"widgetEtherpad": "Metin notu",
|
|
||||||
"@widgetEtherpad": {},
|
|
||||||
"widgetName": "Ad",
|
|
||||||
"@widgetName": {},
|
|
||||||
"separateChatTypes": "Doğrudan Sohbetleri ve Grupları Ayır",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"youJoinedTheChat": "Sohbete katıldınız",
|
"youJoinedTheChat": "Sohbete katıldınız",
|
||||||
"@youJoinedTheChat": {},
|
"@youJoinedTheChat": {},
|
||||||
"youAcceptedTheInvitation": "👍 Daveti kabul ettiniz",
|
"youAcceptedTheInvitation": "👍 Daveti kabul ettiniz",
|
||||||
|
|
@ -2308,8 +2058,6 @@
|
||||||
},
|
},
|
||||||
"storeInAppleKeyChain": "Apple KeyChain'de sakla",
|
"storeInAppleKeyChain": "Apple KeyChain'de sakla",
|
||||||
"@storeInAppleKeyChain": {},
|
"@storeInAppleKeyChain": {},
|
||||||
"pleaseEnterRecoveryKey": "Lütfen kurtarma anahtarınızı girin:",
|
|
||||||
"@pleaseEnterRecoveryKey": {},
|
|
||||||
"recoveryKeyLost": "Kurtarma anahtarı kayıp mı?",
|
"recoveryKeyLost": "Kurtarma anahtarı kayıp mı?",
|
||||||
"@recoveryKeyLost": {},
|
"@recoveryKeyLost": {},
|
||||||
"pleaseEnterRecoveryKeyDescription": "Eski mesajlarınızın kilidini açmak için lütfen önceki bir oturumda oluşturulan kurtarma anahtarınızı girin. Kurtarma anahtarınız parolanız DEĞİLDİR.",
|
"pleaseEnterRecoveryKeyDescription": "Eski mesajlarınızın kilidini açmak için lütfen önceki bir oturumda oluşturulan kurtarma anahtarınızı girin. Kurtarma anahtarınız parolanız DEĞİLDİR.",
|
||||||
|
|
@ -2338,22 +2086,10 @@
|
||||||
},
|
},
|
||||||
"dehydrate": "Oturumu dışa aktar ve aygıtı sil",
|
"dehydrate": "Oturumu dışa aktar ve aygıtı sil",
|
||||||
"@dehydrate": {},
|
"@dehydrate": {},
|
||||||
"dehydrateTorLong": "TOR kullanıcıları için, pencereyi kapatmadan önce oturumu dışa aktarmaları tavsiye edilir.",
|
|
||||||
"@dehydrateTorLong": {},
|
|
||||||
"dehydrateTor": "TOR Kullanıcıları: Oturumu dışa aktar",
|
|
||||||
"@dehydrateTor": {},
|
|
||||||
"hydrateTor": "TOR Kullanıcıları: Dışa aktarılan oturumu içe aktar",
|
|
||||||
"@hydrateTor": {},
|
|
||||||
"hydrate": "Yedekleme dosyasından geri yükle",
|
"hydrate": "Yedekleme dosyasından geri yükle",
|
||||||
"@hydrate": {},
|
"@hydrate": {},
|
||||||
"indexedDbErrorTitle": "Gizli mod sorunları",
|
|
||||||
"@indexedDbErrorTitle": {},
|
|
||||||
"dehydrateWarning": "Bu eylem geri alınamaz. Yedekleme dosyasını güvenli bir şekilde sakladığınızdan emin olun.",
|
"dehydrateWarning": "Bu eylem geri alınamaz. Yedekleme dosyasını güvenli bir şekilde sakladığınızdan emin olun.",
|
||||||
"@dehydrateWarning": {},
|
"@dehydrateWarning": {},
|
||||||
"hydrateTorLong": "TOR'da en son oturumunuzu dışa aktardınız mı? Hızlıca içe aktarın ve sohbete devam edin.",
|
|
||||||
"@hydrateTorLong": {},
|
|
||||||
"indexedDbErrorLong": "Mesaj saklama özelliği ne yazık ki öntanımlı olarak gizli modda etkin değildir.\nLütfen\n - about:config sayfasına gidin ve\n - dom.indexedDB.privateBrowsing.enabled seçeneğini true olarak ayarlayın\nAksi takdirde FluffyChat çalıştırılamaz.",
|
|
||||||
"@indexedDbErrorLong": {},
|
|
||||||
"user": "Kullanıcı",
|
"user": "Kullanıcı",
|
||||||
"@user": {},
|
"@user": {},
|
||||||
"custom": "Özel",
|
"custom": "Özel",
|
||||||
|
|
@ -2379,43 +2115,16 @@
|
||||||
"@noKeyForThisMessage": {},
|
"@noKeyForThisMessage": {},
|
||||||
"screenSharingTitle": "ekran paylaşımı",
|
"screenSharingTitle": "ekran paylaşımı",
|
||||||
"@screenSharingTitle": {},
|
"@screenSharingTitle": {},
|
||||||
"callingPermissions": "Arama izinleri",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"callingAccountDetails": "FluffyChat'in yerel android telefon uygulamasını kullanmasına izin verir.",
|
|
||||||
"@callingAccountDetails": {},
|
|
||||||
"appearOnTop": "Üstte görün",
|
|
||||||
"@appearOnTop": {},
|
|
||||||
"enterSpace": "Alana gir",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"enterRoom": "Odaya gir",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"allSpaces": "Tüm alanlar",
|
"allSpaces": "Tüm alanlar",
|
||||||
"@allSpaces": {},
|
"@allSpaces": {},
|
||||||
"otherCallingPermissions": "Mikrofon, kamera ve diğer FluffyChat izinleri",
|
|
||||||
"@otherCallingPermissions": {},
|
|
||||||
"foregroundServiceRunning": "Bu bildirim, ön plan hizmeti çalışırken görünür.",
|
"foregroundServiceRunning": "Bu bildirim, ön plan hizmeti çalışırken görünür.",
|
||||||
"@foregroundServiceRunning": {},
|
"@foregroundServiceRunning": {},
|
||||||
"callingAccount": "Arama hesabı",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"appearOnTopDetails": "Uygulamanın üstte görünmesine izin verir (Fluffychat'ı zaten bir arama hesabı olarak ayarladıysanız gerekli değildir)",
|
|
||||||
"@appearOnTopDetails": {},
|
|
||||||
"newGroup": "Yeni grup",
|
"newGroup": "Yeni grup",
|
||||||
"@newGroup": {},
|
"@newGroup": {},
|
||||||
"newSpace": "Yeni alan",
|
"newSpace": "Yeni alan",
|
||||||
"@newSpace": {},
|
"@newSpace": {},
|
||||||
"screenSharingDetail": "Ekranınızı FuffyChat'te paylaşıyorsunuz",
|
"screenSharingDetail": "Ekranınızı FuffyChat'te paylaşıyorsunuz",
|
||||||
"@screenSharingDetail": {},
|
"@screenSharingDetail": {},
|
||||||
"numChats": "{number} sohbet",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Önemsiz durum etkinliklerini gizle",
|
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"doNotShowAgain": "Tekrar gösterme",
|
"doNotShowAgain": "Tekrar gösterme",
|
||||||
"@doNotShowAgain": {},
|
"@doNotShowAgain": {},
|
||||||
"googlyEyesContent": "{senderName} size şaşkın gözler gönderiyor",
|
"googlyEyesContent": "{senderName} size şaşkın gözler gönderiyor",
|
||||||
|
|
@ -2460,8 +2169,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"startFirstChat": "İlk sohbetinizi başlatın",
|
|
||||||
"@startFirstChat": {},
|
|
||||||
"newSpaceDescription": "Alanlar, sohbetlerinizi birleştirmenize ve özel veya genel topluluklar oluşturmanıza olanak tanır.",
|
"newSpaceDescription": "Alanlar, sohbetlerinizi birleştirmenize ve özel veya genel topluluklar oluşturmanıza olanak tanır.",
|
||||||
"@newSpaceDescription": {},
|
"@newSpaceDescription": {},
|
||||||
"encryptThisChat": "Bu sohbeti şifrele",
|
"encryptThisChat": "Bu sohbeti şifrele",
|
||||||
|
|
@ -2497,28 +2204,10 @@
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"openLinkInBrowser": "Bağlantıyı tarayıcıda aç",
|
"openLinkInBrowser": "Bağlantıyı tarayıcıda aç",
|
||||||
"@openLinkInBrowser": {},
|
"@openLinkInBrowser": {},
|
||||||
"allRooms": "Tüm Grup Sohbetleri",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reportErrorDescription": "😭 Olamaz. Bir şeyler yanlış gitti. İsterseniz bu hatayı geliştiricilere bildirebilirsiniz.",
|
"reportErrorDescription": "😭 Olamaz. Bir şeyler yanlış gitti. İsterseniz bu hatayı geliştiricilere bildirebilirsiniz.",
|
||||||
"@reportErrorDescription": {},
|
"@reportErrorDescription": {},
|
||||||
"report": "bildir",
|
"report": "bildir",
|
||||||
"@report": {},
|
"@report": {},
|
||||||
"signInWithPassword": "Parola ile oturum aç",
|
|
||||||
"@signInWithPassword": {},
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Lütfen daha sonra tekrar deneyin veya farklı bir sunucu seçin.",
|
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"signInWith": "{provider} ile oturum aç",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notAnImage": "Bir resim dosyası değil.",
|
"notAnImage": "Bir resim dosyası değil.",
|
||||||
"@notAnImage": {},
|
"@notAnImage": {},
|
||||||
"importNow": "Şimdi içe aktar",
|
"importNow": "Şimdi içe aktar",
|
||||||
|
|
@ -2539,14 +2228,8 @@
|
||||||
"@createGroup": {},
|
"@createGroup": {},
|
||||||
"shareInviteLink": "Davet bağlantısını paylaş",
|
"shareInviteLink": "Davet bağlantısını paylaş",
|
||||||
"@shareInviteLink": {},
|
"@shareInviteLink": {},
|
||||||
"profileNotFound": "Kullanıcı sunucuda bulunamadı. Belki bir bağlantı sorunu vardır veya kullanıcı mevcut değildir.",
|
|
||||||
"@profileNotFound": {},
|
|
||||||
"setTheme": "Temayı ayarla:",
|
|
||||||
"@setTheme": {},
|
|
||||||
"setColorTheme": "Renk temasını ayarla:",
|
"setColorTheme": "Renk temasını ayarla:",
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"inviteContactToGroupQuestion": "{contact} kişisini \"{groupName}\" sohbetine davet etmek istiyor musunuz?",
|
|
||||||
"@inviteContactToGroupQuestion": {},
|
|
||||||
"tryAgain": "Tekrar deneyin",
|
"tryAgain": "Tekrar deneyin",
|
||||||
"@tryAgain": {},
|
"@tryAgain": {},
|
||||||
"redactMessageDescription": "Bu mesaj bu görüşmedeki herkes için düzenlenecek. Bu işlem geri alınamaz.",
|
"redactMessageDescription": "Bu mesaj bu görüşmedeki herkes için düzenlenecek. Bu işlem geri alınamaz.",
|
||||||
|
|
@ -2555,8 +2238,6 @@
|
||||||
"@optionalRedactReason": {},
|
"@optionalRedactReason": {},
|
||||||
"invite": "Davet et",
|
"invite": "Davet et",
|
||||||
"@invite": {},
|
"@invite": {},
|
||||||
"addChatDescription": "Sohbet açıklaması ekle...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"chatPermissions": "Sohbet izinleri",
|
"chatPermissions": "Sohbet izinleri",
|
||||||
"@chatPermissions": {},
|
"@chatPermissions": {},
|
||||||
"chatDescription": "Sohbet açıklaması",
|
"chatDescription": "Sohbet açıklaması",
|
||||||
|
|
@ -2594,8 +2275,6 @@
|
||||||
"@directChat": {},
|
"@directChat": {},
|
||||||
"inviteGroupChat": "📨 Grup sohbetine davet et",
|
"inviteGroupChat": "📨 Grup sohbetine davet et",
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"invitePrivateChat": "📨 Gizli sohbete davet et",
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"emoteKeyboardNoRecents": "Son kullanılan ifadeler burada görünecek...",
|
"emoteKeyboardNoRecents": "Son kullanılan ifadeler burada görünecek...",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2661,8 +2340,6 @@
|
||||||
"@searchChatsRooms": {},
|
"@searchChatsRooms": {},
|
||||||
"blockListDescription": "Sizi rahatsız eden kullanıcıları engelleyebilirsiniz. Kişisel engelleme listenizdeki kullanıcılardan herhangi bir mesaj veya oda daveti alamazsınız.",
|
"blockListDescription": "Sizi rahatsız eden kullanıcıları engelleyebilirsiniz. Kişisel engelleme listenizdeki kullanıcılardan herhangi bir mesaj veya oda daveti alamazsınız.",
|
||||||
"@blockListDescription": {},
|
"@blockListDescription": {},
|
||||||
"startConversation": "Görüşme başlat",
|
|
||||||
"@startConversation": {},
|
|
||||||
"blockedUsers": "Engellenen kullanıcılar",
|
"blockedUsers": "Engellenen kullanıcılar",
|
||||||
"@blockedUsers": {},
|
"@blockedUsers": {},
|
||||||
"block": "Engelle",
|
"block": "Engelle",
|
||||||
|
|
@ -2677,14 +2354,6 @@
|
||||||
"@databaseMigrationTitle": {},
|
"@databaseMigrationTitle": {},
|
||||||
"databaseMigrationBody": "Lütfen bekleyin. Bu biraz zaman alabilir.",
|
"databaseMigrationBody": "Lütfen bekleyin. Bu biraz zaman alabilir.",
|
||||||
"@databaseMigrationBody": {},
|
"@databaseMigrationBody": {},
|
||||||
"youInvitedToBy": "📩 Bağlantı aracılığıyla davet edildiniz:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"pleaseEnterYourCurrentPassword": "Lütfen geçerli parolanızı girin",
|
"pleaseEnterYourCurrentPassword": "Lütfen geçerli parolanızı girin",
|
||||||
"@pleaseEnterYourCurrentPassword": {},
|
"@pleaseEnterYourCurrentPassword": {},
|
||||||
"pleaseChooseAStrongPassword": "Lütfen güçlü bir parola seçin",
|
"pleaseChooseAStrongPassword": "Lütfen güçlü bir parola seçin",
|
||||||
|
|
@ -2700,24 +2369,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"publicLink": "Herkese açık bağlantı",
|
|
||||||
"@publicLink": {},
|
|
||||||
"joinSpace": "Alana katıl",
|
"joinSpace": "Alana katıl",
|
||||||
"@joinSpace": {},
|
"@joinSpace": {},
|
||||||
"newPassword": "Yeni parola",
|
"newPassword": "Yeni parola",
|
||||||
"@newPassword": {},
|
"@newPassword": {},
|
||||||
"databaseBuildErrorBody": "SQlite veri tabanı oluşturulamadı. Uygulama şimdilik eski veri tabanını kullanmaya çalışıyor. Lütfen bu hatayı {url} adresinde geliştiricilere bildirin. Hata mesajı: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sessionLostBody": "Oturumunuz kayboldu. Lütfen bu hatayı {url} adresinde geliştiricilere bildirin. Hata mesajı: {error}",
|
"sessionLostBody": "Oturumunuz kayboldu. Lütfen bu hatayı {url} adresinde geliştiricilere bildirin. Hata mesajı: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2730,8 +2385,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"subspace": "Alt alan",
|
|
||||||
"@subspace": {},
|
|
||||||
"thisDevice": "Bu aygıt:",
|
"thisDevice": "Bu aygıt:",
|
||||||
"@thisDevice": {},
|
"@thisDevice": {},
|
||||||
"formattedMessagesDescription": "Markdown kullanarak kalın metin gibi zengin mesaj içeriğini görüntüle.",
|
"formattedMessagesDescription": "Markdown kullanarak kalın metin gibi zengin mesaj içeriğini görüntüle.",
|
||||||
|
|
@ -2743,11 +2396,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"presenceStyle": "Bulunma:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"searchForUsers": "@kullanıcıları ara...",
|
"searchForUsers": "@kullanıcıları ara...",
|
||||||
"@searchForUsers": {},
|
"@searchForUsers": {},
|
||||||
"commandHint_ignore": "Verilen matrix kimliğini görmezden gel",
|
"commandHint_ignore": "Verilen matrix kimliğini görmezden gel",
|
||||||
|
|
@ -2772,22 +2420,8 @@
|
||||||
"@hideRedactedMessages": {},
|
"@hideRedactedMessages": {},
|
||||||
"hideRedactedMessagesBody": "Birisi bir mesajı düzenlerse, bu mesaj artık sohbette görünmeyecektir.",
|
"hideRedactedMessagesBody": "Birisi bir mesajı düzenlerse, bu mesaj artık sohbette görünmeyecektir.",
|
||||||
"@hideRedactedMessagesBody": {},
|
"@hideRedactedMessagesBody": {},
|
||||||
"hideMemberChangesInPublicChats": "Herkese açık sohbetlerde üye değişikliklerini gizle",
|
|
||||||
"@hideMemberChangesInPublicChats": {},
|
|
||||||
"hideMemberChangesInPublicChatsBody": "Okunabilirliği artırmak için birisi herkese açık bir sohbete katıldığında veya sohbetten ayrıldığında sohbet zaman çizelgesinde gösterme.",
|
|
||||||
"@hideMemberChangesInPublicChatsBody": {},
|
|
||||||
"passwordRecoverySettings": "Parola kurtarma ayarları",
|
"passwordRecoverySettings": "Parola kurtarma ayarları",
|
||||||
"@passwordRecoverySettings": {},
|
"@passwordRecoverySettings": {},
|
||||||
"userWouldLikeToChangeTheChat": "{user} sohbete katılmak istiyor.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Henüz herkese açık bir bağlantı oluşturulmadı",
|
|
||||||
"@noPublicLinkHasBeenCreatedYet": {},
|
|
||||||
"knock": "Tıklat",
|
"knock": "Tıklat",
|
||||||
"@knock": {},
|
"@knock": {},
|
||||||
"knocking": "Tıklat",
|
"knocking": "Tıklat",
|
||||||
|
|
@ -2813,18 +2447,12 @@
|
||||||
"@publicSpaces": {},
|
"@publicSpaces": {},
|
||||||
"initAppError": "Uygulama başlatılırken bir hata oluştu",
|
"initAppError": "Uygulama başlatılırken bir hata oluştu",
|
||||||
"@initAppError": {},
|
"@initAppError": {},
|
||||||
"userRole": "Kullanıcı rolü",
|
|
||||||
"@userRole": {},
|
|
||||||
"hideInvalidOrUnknownMessageFormats": "Geçersiz veya bilinmeyen mesaj biçimlerini gizle",
|
"hideInvalidOrUnknownMessageFormats": "Geçersiz veya bilinmeyen mesaj biçimlerini gizle",
|
||||||
"@hideInvalidOrUnknownMessageFormats": {},
|
"@hideInvalidOrUnknownMessageFormats": {},
|
||||||
"hidePresences": "Durum listesi gizlensin mi?",
|
"hidePresences": "Durum listesi gizlensin mi?",
|
||||||
"@hidePresences": {},
|
"@hidePresences": {},
|
||||||
"overview": "Genel görünüm",
|
"overview": "Genel görünüm",
|
||||||
"@overview": {},
|
"@overview": {},
|
||||||
"decline": "Reddet",
|
|
||||||
"@decline": {},
|
|
||||||
"notifyMeFor": "Beni bilgilendir",
|
|
||||||
"@notifyMeFor": {},
|
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "Sohbet {server} üzerinde aranarak keşfedilebilir",
|
"chatCanBeDiscoveredViaSearchOnServer": "Sohbet {server} üzerinde aranarak keşfedilebilir",
|
||||||
"@chatCanBeDiscoveredViaSearchOnServer": {
|
"@chatCanBeDiscoveredViaSearchOnServer": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2838,15 +2466,6 @@
|
||||||
"@leaveEmptyToClearStatus": {},
|
"@leaveEmptyToClearStatus": {},
|
||||||
"select": "Seç",
|
"select": "Seç",
|
||||||
"@select": {},
|
"@select": {},
|
||||||
"minimumPowerLevel": "{level} en düşük güç seviyesidir.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"passwordsDoNotMatch": "Parolalar eşleşmiyor",
|
"passwordsDoNotMatch": "Parolalar eşleşmiyor",
|
||||||
"@passwordsDoNotMatch": {},
|
"@passwordsDoNotMatch": {},
|
||||||
"passwordIsWrong": "Girdiğiniz parola yanlış",
|
"passwordIsWrong": "Girdiğiniz parola yanlış",
|
||||||
|
|
@ -2855,15 +2474,6 @@
|
||||||
"@publicChatAddresses": {},
|
"@publicChatAddresses": {},
|
||||||
"createNewAddress": "Yeni adres oluştur",
|
"createNewAddress": "Yeni adres oluştur",
|
||||||
"@createNewAddress": {},
|
"@createNewAddress": {},
|
||||||
"forwardMessageTo": "Mesajlar {roomName} kişisine iletilsin mi?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"acceptedKeyVerification": "{sender} anahtar doğrulamayı kabul etti",
|
"acceptedKeyVerification": "{sender} anahtar doğrulamayı kabul etti",
|
||||||
"@acceptedKeyVerification": {
|
"@acceptedKeyVerification": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2976,18 +2586,6 @@
|
||||||
"@alwaysUse24HourFormat": {
|
"@alwaysUse24HourFormat": {
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
},
|
},
|
||||||
"countChatsAndCountParticipants": "{chats} sohbet ve {participants} katılımcı",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "Başka sohbet bulunamadı...",
|
"noMoreChatsFound": "Başka sohbet bulunamadı...",
|
||||||
"@noMoreChatsFound": {},
|
"@noMoreChatsFound": {},
|
||||||
"goToSpace": "Alana git: {space}",
|
"goToSpace": "Alana git: {space}",
|
||||||
|
|
@ -2995,8 +2593,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"space": {}
|
"space": {}
|
||||||
},
|
},
|
||||||
"joinedChats": "Katılınan sohbetler",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"unread": "Okunmadı",
|
"unread": "Okunmadı",
|
||||||
"@unread": {},
|
"@unread": {},
|
||||||
"markAsUnread": "Okunmadı olarak işaretle",
|
"markAsUnread": "Okunmadı olarak işaretle",
|
||||||
|
|
@ -3073,12 +2669,6 @@
|
||||||
"@noChatsFoundHere": {},
|
"@noChatsFoundHere": {},
|
||||||
"loginWithMatrixId": "Matrix kimliği ile oturum aç",
|
"loginWithMatrixId": "Matrix kimliği ile oturum aç",
|
||||||
"@loginWithMatrixId": {},
|
"@loginWithMatrixId": {},
|
||||||
"discoverHomeservers": "Ana sunucuları keşfet",
|
|
||||||
"@discoverHomeservers": {},
|
|
||||||
"whatIsAHomeserver": "Ana sunucu nedir?",
|
|
||||||
"@whatIsAHomeserver": {},
|
|
||||||
"homeserverDescription": "Tüm verileriniz tıpkı bir e-posta sağlayıcısı gibi ana sunucuda saklanır. Hangi ana sunucuyu kullanmak istediğinizi seçebilir ve herkesle iletişim kurmaya devam edebilirsiniz. https://matrix.org adresinden daha fazla bilgi edinin.",
|
|
||||||
"@homeserverDescription": {},
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Uyumlu bir ana sunucu gibi görünmüyor. Yanlış URL mi?",
|
"doesNotSeemToBeAValidHomeserver": "Uyumlu bir ana sunucu gibi görünmüyor. Yanlış URL mi?",
|
||||||
"@doesNotSeemToBeAValidHomeserver": {},
|
"@doesNotSeemToBeAValidHomeserver": {},
|
||||||
"prepareSendingAttachment": "Ek gönderilmeye hazırlanıyor...",
|
"prepareSendingAttachment": "Ek gönderilmeye hazırlanıyor...",
|
||||||
|
|
@ -3178,14 +2768,8 @@
|
||||||
},
|
},
|
||||||
"welcomeText": "Hey Hey 👋 Karşınızda FluffyChat. https://matrix.org ile uyumlu herhangi bir homeserver'a giriş yapabilirsiniz. Ve herkesle konuşabilirsiniz. Bu koca bir merkeziyetsiz mesajlaşma ağı!",
|
"welcomeText": "Hey Hey 👋 Karşınızda FluffyChat. https://matrix.org ile uyumlu herhangi bir homeserver'a giriş yapabilirsiniz. Ve herkesle konuşabilirsiniz. Bu koca bir merkeziyetsiz mesajlaşma ağı!",
|
||||||
"@welcomeText": {},
|
"@welcomeText": {},
|
||||||
"setCustomPermissionLevel": "Özel izin düzeyi ayarla",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"setPermissionsLevelDescription": "Lütfen aşağıdan önceden tanımlanmış bir rol seçin veya 0 ile 100 arasında bir özel izin seviyesi girin.",
|
|
||||||
"@setPermissionsLevelDescription": {},
|
|
||||||
"ignoreUser": "Kullanıcıyı yok say",
|
"ignoreUser": "Kullanıcıyı yok say",
|
||||||
"@ignoreUser": {},
|
"@ignoreUser": {},
|
||||||
"normalUser": "Normal kullanıcı",
|
|
||||||
"@normalUser": {},
|
|
||||||
"commandHint_roomupgrade": "Bu odayı belirtilen oda sürümüne yükseltin",
|
"commandHint_roomupgrade": "Bu odayı belirtilen oda sürümüne yükseltin",
|
||||||
"@commandHint_roomupgrade": {},
|
"@commandHint_roomupgrade": {},
|
||||||
"checkList": "Kontrol listesi",
|
"checkList": "Kontrol listesi",
|
||||||
|
|
@ -3208,4 +2792,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -313,16 +313,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Підтвердити",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Під'єднатись",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Контакт був запрошений в групу",
|
"contactHasBeenInvitedToTheGroup": "Контакт був запрошений в групу",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -392,33 +382,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{day}-{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{day}-{month}-{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"delete": "Видалити",
|
"delete": "Видалити",
|
||||||
"@delete": {
|
"@delete": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -474,11 +437,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Укажіть короткий код емодзі та зображення!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Порожня бесіда",
|
"emptyChat": "Порожня бесіда",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -508,11 +466,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "Введіть адресу домашнього сервера",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fileName": "Назва файлу",
|
"fileName": "Назва файлу",
|
||||||
"@fileName": {
|
"@fileName": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -589,11 +542,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "Ідентифікація",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"incorrectPassphraseOrKey": "Неправильна парольна фраза або ключ відновлення",
|
"incorrectPassphraseOrKey": "Неправильна парольна фраза або ключ відновлення",
|
||||||
"@incorrectPassphraseOrKey": {
|
"@incorrectPassphraseOrKey": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -709,11 +657,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Ліцензія",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Світлий",
|
"lightTheme": "Світлий",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -899,11 +842,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Приєднатися знову",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "Вилучити",
|
"remove": "Вилучити",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -923,11 +861,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Вилучити пристрій",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Розблокувати у бесіді",
|
"unbanFromChat": "Розблокувати у бесіді",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -948,15 +881,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "Переглянуто {username}",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Надіслати",
|
"send": "Надіслати",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1022,11 +946,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setInvitationLink": "Указати посилання для запрошення",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Указати статус",
|
"setStatus": "Указати статус",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1257,11 +1176,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Шпалери:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"whoIsAllowedToJoinThisGroup": "Кому дозволено приєднуватися до цієї групи",
|
"whoIsAllowedToJoinThisGroup": "Кому дозволено приєднуватися до цієї групи",
|
||||||
"@whoIsAllowedToJoinThisGroup": {
|
"@whoIsAllowedToJoinThisGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1297,26 +1211,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Сповіщення ввімкнені для цього облікового запису",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"notifications": "Сповіщення",
|
"notifications": "Сповіщення",
|
||||||
"@notifications": {
|
"@notifications": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Зміни учасників",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteForMe": "Запрошення для мене",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"enterAnEmailAddress": "Введіть адресу е-пошти",
|
"enterAnEmailAddress": "Введіть адресу е-пошти",
|
||||||
"@enterAnEmailAddress": {
|
"@enterAnEmailAddress": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1362,16 +1261,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsUserName": "Містить ім’я користувача",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsDisplayName": "Містить показуване ім’я",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"changePassword": "Змінити пароль",
|
"changePassword": "Змінити пароль",
|
||||||
"@changePassword": {
|
"@changePassword": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1382,11 +1271,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Повідомлення ботів",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"or": "Або",
|
"or": "Або",
|
||||||
"@or": {
|
"@or": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1508,11 +1392,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Виберіть",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseEnter4Digits": "Введіть 4 цифри або залиште порожнім, щоб вимкнути блокування застосунку.",
|
"pleaseEnter4Digits": "Введіть 4 цифри або залиште порожнім, щоб вимкнути блокування застосунку.",
|
||||||
"@pleaseEnter4Digits": {
|
"@pleaseEnter4Digits": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1543,11 +1422,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Встановити власні емодзі",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"weSentYouAnEmail": "Ми надіслали вам електронний лист",
|
"weSentYouAnEmail": "Ми надіслали вам електронний лист",
|
||||||
"@weSentYouAnEmail": {
|
"@weSentYouAnEmail": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1617,18 +1491,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Домашній сервер підтримує такі версії специфікацій:\n{serverVersions}\nАле цей застосунок підтримує лише {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"areYouSureYouWantToLogout": "Ви впевнені, що хочете вийти?",
|
"areYouSureYouWantToLogout": "Ви впевнені, що хочете вийти?",
|
||||||
"@areYouSureYouWantToLogout": {
|
"@areYouSureYouWantToLogout": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1677,11 +1539,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "Надіслати наліпку",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Помилка під час отримання розташування: {error}",
|
"errorObtainingLocation": "Помилка під час отримання розташування: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1747,11 +1604,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleUnread": "Позначити прочитаним/непрочитаним",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"transferFromAnotherDevice": "Перенесення з іншого пристрою",
|
"transferFromAnotherDevice": "Перенесення з іншого пристрою",
|
||||||
"@transferFromAnotherDevice": {
|
"@transferFromAnotherDevice": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1762,11 +1614,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Надіслати оригінал",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"whoCanPerformWhichAction": "Хто і яку дію може виконувати",
|
"whoCanPerformWhichAction": "Хто і яку дію може виконувати",
|
||||||
"@whoCanPerformWhichAction": {
|
"@whoCanPerformWhichAction": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1793,11 +1640,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"homeserver": "Домашній сервер",
|
"homeserver": "Домашній сервер",
|
||||||
"goToTheNewRoom": "Перейти до нової кімнати",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"groups": "Групи",
|
"groups": "Групи",
|
||||||
"@groups": {
|
"@groups": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1813,7 +1655,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Бесіду додано до цього простору",
|
|
||||||
"chatBackupDescription": "Ваші повідомлення захищені ключем відновлення. Переконайтеся, що ви не втратите його.",
|
"chatBackupDescription": "Ваші повідомлення захищені ключем відновлення. Переконайтеся, що ви не втратите його.",
|
||||||
"@chatBackupDescription": {
|
"@chatBackupDescription": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1899,21 +1740,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setPermissionsLevel": "Указати рівні дозволів",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"shareLocation": "Поділитися місцеперебуванням",
|
"shareLocation": "Поділитися місцеперебуванням",
|
||||||
"@shareLocation": {
|
"@shareLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Єдиний вхід",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Забагато запитів. Спробуйте пізніше!",
|
"tooManyRequestsWarning": "Забагато запитів. Спробуйте пізніше!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1924,15 +1755,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 непрочитана бесіда} few{{unreadCount} непрочитані бесіди} many{{unreadCount} непрочитаних бесід} other{{unreadCount} непрочитані бесіди}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"withTheseAddressesRecoveryDescription": "За допомогою цих адрес ви можете відновити свій пароль.",
|
"withTheseAddressesRecoveryDescription": "За допомогою цих адрес ви можете відновити свій пароль.",
|
||||||
"@withTheseAddressesRecoveryDescription": {
|
"@withTheseAddressesRecoveryDescription": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2031,11 +1853,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Люди",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pin": "Закріпити",
|
"pin": "Закріпити",
|
||||||
"@pin": {
|
"@pin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2084,17 +1901,7 @@
|
||||||
},
|
},
|
||||||
"oneClientLoggedOut": "На одному з ваших клієнтів виконано вихід із системи",
|
"oneClientLoggedOut": "На одному з ваших клієнтів виконано вихід із системи",
|
||||||
"bundleName": "Назва вузла",
|
"bundleName": "Назва вузла",
|
||||||
"toggleFavorite": "Перемикнути вибране",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"removeFromBundle": "Вилучити з цього вузла",
|
"removeFromBundle": "Вилучити з цього вузла",
|
||||||
"toggleMuted": "Увімкнути/вимкнути звук",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"editBundlesForAccount": "Змінити вузол для цього облікового запису",
|
"editBundlesForAccount": "Змінити вузол для цього облікового запису",
|
||||||
"addToBundle": "Додати до вузлів",
|
"addToBundle": "Додати до вузлів",
|
||||||
"repeatPassword": "Повторіть пароль",
|
"repeatPassword": "Повторіть пароль",
|
||||||
|
|
@ -2103,7 +1910,6 @@
|
||||||
"messageType": "Тип повідомлення",
|
"messageType": "Тип повідомлення",
|
||||||
"openGallery": "Відкрити галерею",
|
"openGallery": "Відкрити галерею",
|
||||||
"sender": "Відправник",
|
"sender": "Відправник",
|
||||||
"addToSpaceDescription": "Виберіть простір, щоб додати до нього цю бесіду.",
|
|
||||||
"removeFromSpace": "Вилучити з простору",
|
"removeFromSpace": "Вилучити з простору",
|
||||||
"start": "Почати",
|
"start": "Почати",
|
||||||
"commandHint_discardsession": "Відкинути сеанс",
|
"commandHint_discardsession": "Відкинути сеанс",
|
||||||
|
|
@ -2126,21 +1932,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /dm"
|
"description": "Usage hint for the command /dm"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Відкрити камеру для відео",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"publish": "Опублікувати",
|
|
||||||
"videoWithSize": "Відео ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dismiss": "Відхилити",
|
"dismiss": "Відхилити",
|
||||||
"markAsRead": "Позначити прочитаним",
|
"markAsRead": "Позначити прочитаним",
|
||||||
"reportUser": "Поскаржився на користувача",
|
"reportUser": "Поскаржився на користувача",
|
||||||
|
|
@ -2165,33 +1956,7 @@
|
||||||
"voiceCall": "Голосовий виклик",
|
"voiceCall": "Голосовий виклик",
|
||||||
"unsupportedAndroidVersionLong": "Для цієї функції потрібна новіша версія Android. Перевірте наявність оновлень або підтримку Lineage OS.",
|
"unsupportedAndroidVersionLong": "Для цієї функції потрібна новіша версія Android. Перевірте наявність оновлень або підтримку Lineage OS.",
|
||||||
"videoCallsBetaWarning": "Зауважте, що відеовиклики на ранньому етапі розробки. Вони можуть працювати не так, як очікувалося, або взагалі не працювати на всіх платформах.",
|
"videoCallsBetaWarning": "Зауважте, що відеовиклики на ранньому етапі розробки. Вони можуть працювати не так, як очікувалося, або взагалі не працювати на всіх платформах.",
|
||||||
"emailOrUsername": "Електронна адреса або ім’я користувача",
|
|
||||||
"experimentalVideoCalls": "Експериментальні відеовиклики",
|
"experimentalVideoCalls": "Експериментальні відеовиклики",
|
||||||
"switchToAccount": "Перемкнутися на обліковий запис {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nextAccount": "Наступний обліковий запис",
|
|
||||||
"previousAccount": "Попередній обліковий запис",
|
|
||||||
"addWidget": "Додати віджет",
|
|
||||||
"widgetVideo": "Відео",
|
|
||||||
"widgetCustom": "Користувацький",
|
|
||||||
"widgetName": "Назва",
|
|
||||||
"widgetNameError": "Укажіть коротку назву.",
|
|
||||||
"widgetEtherpad": "Текстова примітка",
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"widgetUrlError": "Це недійсна URL-адреса.",
|
|
||||||
"errorAddingWidget": "Помилка додавання віджета.",
|
|
||||||
"separateChatTypes": "Розділіть особисті бесіди та групи",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"youInvitedBy": "📩 Ви були запрошені {user}",
|
"youInvitedBy": "📩 Ви були запрошені {user}",
|
||||||
"@youInvitedBy": {
|
"@youInvitedBy": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -2256,7 +2021,6 @@
|
||||||
"storeInAppleKeyChain": "Зберегти в Apple KeyChain",
|
"storeInAppleKeyChain": "Зберегти в Apple KeyChain",
|
||||||
"storeSecurlyOnThisDevice": "Зберегти безпечно на цей пристрій",
|
"storeSecurlyOnThisDevice": "Зберегти безпечно на цей пристрій",
|
||||||
"pleaseEnterRecoveryKeyDescription": "Щоб розблокувати старі повідомлення, введіть ключ відновлення, згенерований у попередньому сеансі. Ваш ключ відновлення це НЕ ваш пароль.",
|
"pleaseEnterRecoveryKeyDescription": "Щоб розблокувати старі повідомлення, введіть ключ відновлення, згенерований у попередньому сеансі. Ваш ключ відновлення це НЕ ваш пароль.",
|
||||||
"pleaseEnterRecoveryKey": "Введіть ключ відновлення:",
|
|
||||||
"recoveryKey": "Ключ відновлення",
|
"recoveryKey": "Ключ відновлення",
|
||||||
"recoveryKeyLost": "Ключ відновлення втрачено?",
|
"recoveryKeyLost": "Ключ відновлення втрачено?",
|
||||||
"users": "Користувачі",
|
"users": "Користувачі",
|
||||||
|
|
@ -2271,14 +2035,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"hydrate": "Відновлення з файлу резервної копії",
|
"hydrate": "Відновлення з файлу резервної копії",
|
||||||
"hydrateTorLong": "Минулого разу ви експортували свій сеанс із TOR? Швидко імпортуйте його та продовжуйте спілкування.",
|
|
||||||
"indexedDbErrorTitle": "Проблеми приватного режиму",
|
|
||||||
"indexedDbErrorLong": "На жаль, сховище повідомлень не ввімкнуто у приватному режимі типово.\nВідкрийте\n - about:config\n - установіть для dom.indexedDB.privateBrowsing.enabled значення true\nІнакше запустити FluffyChat буде неможливо.",
|
|
||||||
"dehydrate": "Експортувати сеанс та очистити пристрій",
|
"dehydrate": "Експортувати сеанс та очистити пристрій",
|
||||||
"dehydrateWarning": "Цю дію не можна скасувати. Переконайтеся, що ви безпечно зберігаєте файл резервної копії.",
|
"dehydrateWarning": "Цю дію не можна скасувати. Переконайтеся, що ви безпечно зберігаєте файл резервної копії.",
|
||||||
"dehydrateTor": "Користувачі TOR: експорт сеансу",
|
|
||||||
"dehydrateTorLong": "Для користувачів TOR рекомендується експортувати сеанс перед закриттям вікна.",
|
|
||||||
"hydrateTor": "Користувачі TOR: імпорт експортованого сеансу",
|
|
||||||
"user": "Користувач",
|
"user": "Користувач",
|
||||||
"custom": "Користувацький",
|
"custom": "Користувацький",
|
||||||
"supposedMxid": "Це має бути {mxid}",
|
"supposedMxid": "Це має бути {mxid}",
|
||||||
|
|
@ -2297,28 +2055,10 @@
|
||||||
"noKeyForThisMessage": "Це може статися, якщо повідомлення було надіслано до того, як ви ввійшли у свій обліковий запис на цьому пристрої.\n\nТакож можливо, що відправник заблокував ваш пристрій або щось пішло не так з під'єднанням до інтернету.\n\nЧи можете ви прочитати повідомлення на іншому сеансі? Тоді ви зможете перенести повідомлення з нього! Перейдіть до Налаштування > Пристрої та переконайтеся, що ваші пристрої перевірили один одного. Коли ви відкриєте кімнату наступного разу й обидва сеанси будуть на активні, ключі будуть передані автоматично.\n\nВи ж не хочете втрачати ключі після виходу або зміни пристроїв? Переконайтеся, що ви ввімкнули резервне копіювання бесід у налаштуваннях.",
|
"noKeyForThisMessage": "Це може статися, якщо повідомлення було надіслано до того, як ви ввійшли у свій обліковий запис на цьому пристрої.\n\nТакож можливо, що відправник заблокував ваш пристрій або щось пішло не так з під'єднанням до інтернету.\n\nЧи можете ви прочитати повідомлення на іншому сеансі? Тоді ви зможете перенести повідомлення з нього! Перейдіть до Налаштування > Пристрої та переконайтеся, що ваші пристрої перевірили один одного. Коли ви відкриєте кімнату наступного разу й обидва сеанси будуть на активні, ключі будуть передані автоматично.\n\nВи ж не хочете втрачати ключі після виходу або зміни пристроїв? Переконайтеся, що ви ввімкнули резервне копіювання бесід у налаштуваннях.",
|
||||||
"foregroundServiceRunning": "Це сповіщення з'являється під час роботи основної служби.",
|
"foregroundServiceRunning": "Це сповіщення з'являється під час роботи основної служби.",
|
||||||
"screenSharingTitle": "спільний доступ до екрана",
|
"screenSharingTitle": "спільний доступ до екрана",
|
||||||
"callingPermissions": "Дозволи на виклик",
|
|
||||||
"callingAccount": "Обліковий запис для виклику",
|
|
||||||
"callingAccountDetails": "Дозволяє FluffyChat використовувати основний застосунок Android для набору номера.",
|
|
||||||
"appearOnTop": "З'являтися зверху",
|
|
||||||
"appearOnTopDetails": "Дозволяє застосунку показуватися зверху (не потрібно, якщо Fluffychat вже налаштований обліковим записом для викликів)",
|
|
||||||
"newGroup": "Нова група",
|
"newGroup": "Нова група",
|
||||||
"newSpace": "Новий простір",
|
"newSpace": "Новий простір",
|
||||||
"enterSpace": "Увійти в простір",
|
|
||||||
"enterRoom": "Увійти в кімнату",
|
|
||||||
"otherCallingPermissions": "Мікрофон, камера та інші дозволи FluffyChat",
|
|
||||||
"allSpaces": "Усі простори",
|
"allSpaces": "Усі простори",
|
||||||
"screenSharingDetail": "Ви ділитеся своїм екраном FuffyChat",
|
"screenSharingDetail": "Ви ділитеся своїм екраном FuffyChat",
|
||||||
"numChats": "{number} бесід",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Сховати неважливі державні свята",
|
|
||||||
"doNotShowAgain": "Не показувати знову",
|
"doNotShowAgain": "Не показувати знову",
|
||||||
"commandHint_cuddle": "Надіслати пригортайку",
|
"commandHint_cuddle": "Надіслати пригортайку",
|
||||||
"googlyEyesContent": "{senderName} надсилає вам гугл-очі",
|
"googlyEyesContent": "{senderName} надсилає вам гугл-очі",
|
||||||
|
|
@ -2359,7 +2099,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"startFirstChat": "Розпочніть свою першу бесіду",
|
|
||||||
"newSpaceDescription": "Простори дозволяють об'єднувати ваші бесіди та створювати приватні або загальнодоступні спільноти.",
|
"newSpaceDescription": "Простори дозволяють об'єднувати ваші бесіди та створювати приватні або загальнодоступні спільноти.",
|
||||||
"encryptThisChat": "Зашифрувати цю бесіду",
|
"encryptThisChat": "Зашифрувати цю бесіду",
|
||||||
"disableEncryptionWarning": "З міркувань безпеки ви не можете вимкнути шифрування в бесіді, ув якій воно було ввімкнене раніше.",
|
"disableEncryptionWarning": "З міркувань безпеки ви не можете вимкнути шифрування в бесіді, ув якій воно було ввімкнене раніше.",
|
||||||
|
|
@ -2382,24 +2121,8 @@
|
||||||
"readUpToHere": "Читати тут",
|
"readUpToHere": "Читати тут",
|
||||||
"jump": "Перейти",
|
"jump": "Перейти",
|
||||||
"openLinkInBrowser": "Відкрити посилання у браузері",
|
"openLinkInBrowser": "Відкрити посилання у браузері",
|
||||||
"allRooms": "Усі групові бесіди",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"reportErrorDescription": "О, ні. Щось пішло не так. Якщо хочете, можете повідомити про помилку розробникам.",
|
"reportErrorDescription": "О, ні. Щось пішло не так. Якщо хочете, можете повідомити про помилку розробникам.",
|
||||||
"report": "повідомити",
|
"report": "повідомити",
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Спробуйте пізніше або виберіть інший сервер.",
|
|
||||||
"signInWithPassword": "Увійти за допомогою пароля",
|
|
||||||
"signInWith": "Увійти через {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notAnImage": "Не файл зображення.",
|
"notAnImage": "Не файл зображення.",
|
||||||
"importNow": "Імпортувати зараз",
|
"importNow": "Імпортувати зараз",
|
||||||
"importEmojis": "Імпорт емодзі",
|
"importEmojis": "Імпорт емодзі",
|
||||||
|
|
@ -2408,13 +2131,10 @@
|
||||||
"exportEmotePack": "Експортувати набір смайликів у форматі .zip",
|
"exportEmotePack": "Експортувати набір смайликів у форматі .zip",
|
||||||
"sendTypingNotifications": "Надсилати сповіщення про ввід тексту",
|
"sendTypingNotifications": "Надсилати сповіщення про ввід тексту",
|
||||||
"createGroup": "Створити групу",
|
"createGroup": "Створити групу",
|
||||||
"inviteContactToGroupQuestion": "Хочете запросити {contact} до бесіди \"{groupName}\"?",
|
|
||||||
"messagesStyle": "Повідомлення:",
|
"messagesStyle": "Повідомлення:",
|
||||||
"shareInviteLink": "Надіслати запрошувальне посилання",
|
"shareInviteLink": "Надіслати запрошувальне посилання",
|
||||||
"tryAgain": "Повторіть спробу",
|
"tryAgain": "Повторіть спробу",
|
||||||
"setTheme": "Налаштувати тему:",
|
|
||||||
"setColorTheme": "Налаштувати колірну тему:",
|
"setColorTheme": "Налаштувати колірну тему:",
|
||||||
"addChatDescription": "Додати опис бесіди...",
|
|
||||||
"chatPermissions": "Дозволи бесіди",
|
"chatPermissions": "Дозволи бесіди",
|
||||||
"chatDescription": "Опис бесіди",
|
"chatDescription": "Опис бесіди",
|
||||||
"chatDescriptionHasBeenChanged": "Опис бесіди змінено",
|
"chatDescriptionHasBeenChanged": "Опис бесіди змінено",
|
||||||
|
|
@ -2443,12 +2163,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"profileNotFound": "Не вдалося знайти користувача на сервері. Можливо, проблема зі з'єднанням або користувач не існує.",
|
|
||||||
"invite": "Запросити",
|
"invite": "Запросити",
|
||||||
"redactMessageDescription": "Повідомлення буде відредаговано для всіх учасників цієї розмови. Це не можна скасувати.",
|
"redactMessageDescription": "Повідомлення буде відредаговано для всіх учасників цієї розмови. Це не можна скасувати.",
|
||||||
"setChatDescription": "Налаштувати опис бесіди",
|
"setChatDescription": "Налаштувати опис бесіди",
|
||||||
"inviteGroupChat": "📨 Запрошення до групової бесіди",
|
"inviteGroupChat": "📨 Запрошення до групової бесіди",
|
||||||
"invitePrivateChat": "📨 Запрошення до приватної бесіди",
|
|
||||||
"emoteKeyboardNoRecents": "Тут з'являться нещодавно використані смайлики...",
|
"emoteKeyboardNoRecents": "Тут з'являться нещодавно використані смайлики...",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2484,7 +2202,6 @@
|
||||||
"kickUserDescription": "Користувача вигнали з бесіди, але не заблокували. До загальнодоступних бесід користувач може приєднатися будь-коли.",
|
"kickUserDescription": "Користувача вигнали з бесіди, але не заблокували. До загальнодоступних бесід користувач може приєднатися будь-коли.",
|
||||||
"blockListDescription": "Ви можете заблокувати користувачів, які вас турбують. Ви не зможете отримувати жодних повідомлень або запрошень до кімнати від користувачів з вашого персонального списку блокування.",
|
"blockListDescription": "Ви можете заблокувати користувачів, які вас турбують. Ви не зможете отримувати жодних повідомлень або запрошень до кімнати від користувачів з вашого персонального списку блокування.",
|
||||||
"createGroupAndInviteUsers": "Створити групу та запросити користувачів",
|
"createGroupAndInviteUsers": "Створити групу та запросити користувачів",
|
||||||
"startConversation": "Розпочати розмову",
|
|
||||||
"blockedUsers": "Заблоковані користувачі",
|
"blockedUsers": "Заблоковані користувачі",
|
||||||
"groupCanBeFoundViaSearch": "Групу можна знайти через пошук",
|
"groupCanBeFoundViaSearch": "Групу можна знайти через пошук",
|
||||||
"noUsersFoundWithQuery": "На жаль, не знайдено жодного користувача з запитом \"{query}\".Перевірте, чи не було допущено помилки.",
|
"noUsersFoundWithQuery": "На жаль, не знайдено жодного користувача з запитом \"{query}\".Перевірте, чи не було допущено помилки.",
|
||||||
|
|
@ -2509,12 +2226,9 @@
|
||||||
"publicSpaces": "Загальнодоступний простір",
|
"publicSpaces": "Загальнодоступний простір",
|
||||||
"passwordIsWrong": "Введений пароль неправильний",
|
"passwordIsWrong": "Введений пароль неправильний",
|
||||||
"pleaseEnterYourCurrentPassword": "Введіть поточний пароль",
|
"pleaseEnterYourCurrentPassword": "Введіть поточний пароль",
|
||||||
"publicLink": "Загальнодоступне посилання",
|
|
||||||
"nothingFound": "Нічого не знайдено...",
|
"nothingFound": "Нічого не знайдено...",
|
||||||
"decline": "Відхилити",
|
|
||||||
"newPassword": "Новий пароль",
|
"newPassword": "Новий пароль",
|
||||||
"passwordsDoNotMatch": "Паролі відрізняються",
|
"passwordsDoNotMatch": "Паролі відрізняються",
|
||||||
"subspace": "Підпростір",
|
|
||||||
"select": "Вибрати",
|
"select": "Вибрати",
|
||||||
"pleaseChooseAStrongPassword": "Виберіть надійний пароль",
|
"pleaseChooseAStrongPassword": "Виберіть надійний пароль",
|
||||||
"addChatOrSubSpace": "Додати бесіду або підпростір",
|
"addChatOrSubSpace": "Додати бесіду або підпростір",
|
||||||
|
|
@ -2533,18 +2247,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"databaseBuildErrorBody": "Не вдалося створити базу даних SQlite. Застосунок намагається використовувати стару базу даних. Будь ласка, повідомте про цю помилку розробникам за адресою {url}. Текст помилки: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"initAppError": "Виникла помилка під час запуску застосунку",
|
"initAppError": "Виникла помилка під час запуску застосунку",
|
||||||
"restoreSessionBody": "Наразі застосунок намагається відновити ваш сеанс з резервної копії. Будь ласка, повідомте про цю помилку розробникам за адресою {url}. Текст помилки: {error}",
|
"restoreSessionBody": "Наразі застосунок намагається відновити ваш сеанс з резервної копії. Будь ласка, повідомте про цю помилку розробникам за адресою {url}. Текст помилки: {error}",
|
||||||
"@restoreSessionBody": {
|
"@restoreSessionBody": {
|
||||||
|
|
@ -2558,14 +2260,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Вас запрошено за посиланням на:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"acceptedKeyVerification": "{sender} погоджується звірити ключі",
|
"acceptedKeyVerification": "{sender} погоджується звірити ключі",
|
||||||
"@acceptedKeyVerification": {
|
"@acceptedKeyVerification": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2596,15 +2290,6 @@
|
||||||
"transparent": "Прозорий",
|
"transparent": "Прозорий",
|
||||||
"sendReadReceiptsDescription": "Інші учасники бесіди бачитимуть, що ви прочитали повідомлення.",
|
"sendReadReceiptsDescription": "Інші учасники бесіди бачитимуть, що ви прочитали повідомлення.",
|
||||||
"formattedMessages": "Форматовані повідомлення",
|
"formattedMessages": "Форматовані повідомлення",
|
||||||
"forwardMessageTo": "Переслати повідомлення до {roomName}?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceipts": "Надіслати підтвердження прочитання",
|
"sendReadReceipts": "Надіслати підтвердження прочитання",
|
||||||
"sendTypingNotificationsDescription": "Інші учасники бесіди бачитимуть, коли ви набираєте нове повідомлення.",
|
"sendTypingNotificationsDescription": "Інші учасники бесіди бачитимуть, коли ви набираєте нове повідомлення.",
|
||||||
"formattedMessagesDescription": "Показувати розширений вміст повідомлень, наприклад, жирний текст, використовуючи markdown.",
|
"formattedMessagesDescription": "Показувати розширений вміст повідомлень, наприклад, жирний текст, використовуючи markdown.",
|
||||||
|
|
@ -2639,11 +2324,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"presenceStyle": "Присутність:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "Показувати повідомлення про стан від інших користувачів",
|
"presencesToggle": "Показувати повідомлення про стан від інших користувачів",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2672,36 +2352,14 @@
|
||||||
"customEmojisAndStickers": "Власні емодзі та наліпки",
|
"customEmojisAndStickers": "Власні емодзі та наліпки",
|
||||||
"customEmojisAndStickersBody": "Додавайте або діліться власними емодзі або наліпками, які можна використовувати в будь-якій бесіді.",
|
"customEmojisAndStickersBody": "Додавайте або діліться власними емодзі або наліпками, які можна використовувати в будь-якій бесіді.",
|
||||||
"createNewAddress": "Створити нову адресу",
|
"createNewAddress": "Створити нову адресу",
|
||||||
"userRole": "Роль користувача",
|
|
||||||
"minimumPowerLevel": "{level} — це найнижчий рівень повноважень.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"commandHint_unignore": "Не ігнорувати цей Matrix ID",
|
"commandHint_unignore": "Не ігнорувати цей Matrix ID",
|
||||||
"knockRestricted": "Стук обмежено",
|
"knockRestricted": "Стук обмежено",
|
||||||
"appLockDescription": "Блокувати застосунок, коли не використовується ПІН-код",
|
"appLockDescription": "Блокувати застосунок, коли не використовується ПІН-код",
|
||||||
"hideRedactedMessages": "Сховати змінені повідомлення",
|
"hideRedactedMessages": "Сховати змінені повідомлення",
|
||||||
"hideRedactedMessagesBody": "Якщо хтось змінить повідомлення, його більше не буде видно в бесіді.",
|
"hideRedactedMessagesBody": "Якщо хтось змінить повідомлення, його більше не буде видно в бесіді.",
|
||||||
"hideInvalidOrUnknownMessageFormats": "Сховати недійсні або невідомі формати повідомлень",
|
"hideInvalidOrUnknownMessageFormats": "Сховати недійсні або невідомі формати повідомлень",
|
||||||
"hideMemberChangesInPublicChats": "Сховати зміни користувачів у загальнодоступних бесідах",
|
|
||||||
"hideMemberChangesInPublicChatsBody": "Не показувати в хронології бесіди, якщо хтось приєднується до загальнодоступної бесіди або виходить з неї, щоб покращити її читабельність.",
|
|
||||||
"overview": "Огляд",
|
"overview": "Огляд",
|
||||||
"notifyMeFor": "Сповіщати мене про",
|
|
||||||
"passwordRecoverySettings": "Налаштування відновлення пароля",
|
"passwordRecoverySettings": "Налаштування відновлення пароля",
|
||||||
"userWouldLikeToChangeTheChat": "{user} хоче приєднатися до бесіди.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Загальнодоступне посилання ще не створено",
|
|
||||||
"knock": "Постукатись",
|
"knock": "Постукатись",
|
||||||
"knocking": "Стукаються",
|
"knocking": "Стукаються",
|
||||||
"noDatabaseEncryption": "Шифрування бази даних не підтримується на цій платформі",
|
"noDatabaseEncryption": "Шифрування бази даних не підтримується на цій платформі",
|
||||||
|
|
@ -2778,7 +2436,7 @@
|
||||||
"space": {}
|
"space": {}
|
||||||
},
|
},
|
||||||
"markAsUnread": "Позначити непрочитаним",
|
"markAsUnread": "Позначити непрочитаним",
|
||||||
"alwaysUse24HourFormat": "вимкнено",
|
"alwaysUse24HourFormat": "false",
|
||||||
"@alwaysUse24HourFormat": {
|
"@alwaysUse24HourFormat": {
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
},
|
},
|
||||||
|
|
@ -2802,27 +2460,11 @@
|
||||||
},
|
},
|
||||||
"changelog": "Зміни",
|
"changelog": "Зміни",
|
||||||
"chatPermissionsDescription": "Визначте, який рівень повноважень необхідний для певних дій у цьому чаті. Рівні повноважень 0, 50 і 100 зазвичай представляють користувачів, модераторів та адміністраторів, але можливі будь-які градації.",
|
"chatPermissionsDescription": "Визначте, який рівень повноважень необхідний для певних дій у цьому чаті. Рівні повноважень 0, 50 і 100 зазвичай представляють користувачів, модераторів та адміністраторів, але можливі будь-які градації.",
|
||||||
"countChatsAndCountParticipants": "{chats} чати та {participants} учасників",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "Більше чатів не знайдено...",
|
"noMoreChatsFound": "Більше чатів не знайдено...",
|
||||||
"joinedChats": "Приєднані чати",
|
|
||||||
"unread": "Непрочитані",
|
"unread": "Непрочитані",
|
||||||
"sendCanceled": "Надсилання скасовано",
|
"sendCanceled": "Надсилання скасовано",
|
||||||
"noChatsFoundHere": "Бесід ще немає. Розпочніть спілкування натиснувши кнопку нижче. ⤵️",
|
"noChatsFoundHere": "Бесід ще немає. Розпочніть спілкування натиснувши кнопку нижче. ⤵️",
|
||||||
"loginWithMatrixId": "Увійти за допомогою Matrix-ID",
|
"loginWithMatrixId": "Увійти за допомогою Matrix-ID",
|
||||||
"discoverHomeservers": "Знайти домашні сервери",
|
|
||||||
"whatIsAHomeserver": "Що таке домашній сервер?",
|
|
||||||
"homeserverDescription": "Усі ваші дані зберігаються на домашньому сервері, так само як у постачальника послуг електронної пошти. Ви можете вибрати, який домашній сервер ви хочете використовувати, водночас ви можете спілкуватися з усіма. Докладніше на https://matrix.org.",
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Здається, це несумісний домашній сервер. Неправильна URL-адреса?",
|
"doesNotSeemToBeAValidHomeserver": "Здається, це несумісний домашній сервер. Неправильна URL-адреса?",
|
||||||
"calculatingFileSize": "Обчислення розміру файлу...",
|
"calculatingFileSize": "Обчислення розміру файлу...",
|
||||||
"prepareSendingAttachment": "Підготовка до надсилання вкладення...",
|
"prepareSendingAttachment": "Підготовка до надсилання вкладення...",
|
||||||
|
|
@ -2919,7 +2561,6 @@
|
||||||
"appWantsToUseForLoginDescription": "Цим ви дозволяєте застосунку та вебсайту ділитися інформацією про вас.",
|
"appWantsToUseForLoginDescription": "Цим ви дозволяєте застосунку та вебсайту ділитися інформацією про вас.",
|
||||||
"open": "Відкрити",
|
"open": "Відкрити",
|
||||||
"waitingForServer": "Очікування сервера...",
|
"waitingForServer": "Очікування сервера...",
|
||||||
"appIntroduction": "FluffyChat дає змогу спілкуватися з друзями у різних месенджерах. Дізнайтеся більше на https://matrix.org або просто натисніть *Продовжити*.",
|
|
||||||
"shareKeysWithDescription": "Яким пристроям довіряти, щоб вони могли читати ваші повідомлення в зашифрованих бесідах?",
|
"shareKeysWithDescription": "Яким пристроям довіряти, щоб вони могли читати ваші повідомлення в зашифрованих бесідах?",
|
||||||
"verifiedDevicesOnly": "Лише верифіковані пристрої",
|
"verifiedDevicesOnly": "Лише верифіковані пристрої",
|
||||||
"contentNotificationSettings": "Налаштування сповіщень про вміст",
|
"contentNotificationSettings": "Налаштування сповіщень про вміст",
|
||||||
|
|
@ -2981,10 +2622,7 @@
|
||||||
"notificationRuleEncryptedRoomOneToOne": "Зашифрована кімната \"Один на один\"",
|
"notificationRuleEncryptedRoomOneToOne": "Зашифрована кімната \"Один на один\"",
|
||||||
"deletePushRuleCanNotBeUndone": "Якщо ви видалите це налаштування сповіщень, відновити його буде неможливо.",
|
"deletePushRuleCanNotBeUndone": "Якщо ви видалите це налаштування сповіщень, відновити його буде неможливо.",
|
||||||
"ignoreUser": "Ігнорувати користувача",
|
"ignoreUser": "Ігнорувати користувача",
|
||||||
"setCustomPermissionLevel": "Встановити рівень користувацьких прав",
|
|
||||||
"normalUser": "Звичайний користувач",
|
|
||||||
"notificationRuleEncryptedDescription": "Повідомляє користувача про повідомлення в зашифрованих кімнатах.",
|
"notificationRuleEncryptedDescription": "Повідомляє користувача про повідомлення в зашифрованих кімнатах.",
|
||||||
"setPermissionsLevelDescription": "Будь ласка, виберіть заздалегідь визначену роль нижче або введіть користувацький рівень прав від 0 до 100.",
|
|
||||||
"notificationRuleRoomServerAclDescription": "Приховує сповіщення про списки контролю доступу (ACL) сервера кімнати.",
|
"notificationRuleRoomServerAclDescription": "Приховує сповіщення про списки контролю доступу (ACL) сервера кімнати.",
|
||||||
"notificationRuleReaction": "Реакція",
|
"notificationRuleReaction": "Реакція",
|
||||||
"notificationRuleCallDescription": "Повідомляє користувача про виклики.",
|
"notificationRuleCallDescription": "Повідомляє користувача про виклики.",
|
||||||
|
|
@ -3021,13 +2659,9 @@
|
||||||
"moreEvents": "Інші події",
|
"moreEvents": "Інші події",
|
||||||
"declineInvitation": "Відхилити запрошення",
|
"declineInvitation": "Відхилити запрошення",
|
||||||
"noMessagesYet": "Поки немає повідомлень",
|
"noMessagesYet": "Поки немає повідомлень",
|
||||||
"longPressToRecordVoiceMessage": "Довге натискання, щоби записати голосове повідомлення.",
|
"longPressToRecordVoiceMessage": "Затисніть, щоб записати голосове повідомлення.",
|
||||||
"pause": "Призупинити",
|
"pause": "Призупинити",
|
||||||
"resume": "Продовжити",
|
"resume": "Продовжити",
|
||||||
"newSubSpace": "Новий вкладений простір",
|
|
||||||
"moveToDifferentSpace": "Перемістити в інший простір",
|
|
||||||
"moveUp": "Перемістити вище",
|
|
||||||
"moveDown": "Переместити нижче",
|
|
||||||
"removeFromSpaceDescription": "Бесіду буде видалено з простору, та вона залишиться у вашому списку бесід.",
|
"removeFromSpaceDescription": "Бесіду буде видалено з простору, та вона залишиться у вашому списку бесід.",
|
||||||
"countChats": "{chats} бесід",
|
"countChats": "{chats} бесід",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3056,7 +2690,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Задонатити",
|
|
||||||
"startedAPoll": "Нове опитування від {username}.",
|
"startedAPoll": "Нове опитування від {username}.",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3069,9 +2702,8 @@
|
||||||
"poll": "Опитування",
|
"poll": "Опитування",
|
||||||
"startPoll": "Розпочати опитування",
|
"startPoll": "Розпочати опитування",
|
||||||
"endPoll": "Завершити опитування",
|
"endPoll": "Завершити опитування",
|
||||||
"answersVisible": "Публічні відповіді",
|
"answersVisible": "Відповіді видимі",
|
||||||
"answersHidden": "Приховані відповіді",
|
"pollQuestion": "Питання опитування",
|
||||||
"pollQuestion": "Запитання",
|
|
||||||
"answerOption": "Варіант відповіді",
|
"answerOption": "Варіант відповіді",
|
||||||
"addAnswerOption": "Додати варіант відповіді",
|
"addAnswerOption": "Додати варіант відповіді",
|
||||||
"allowMultipleAnswers": "Дозволити декілька варіантів відповіді",
|
"allowMultipleAnswers": "Дозволити декілька варіантів відповіді",
|
||||||
|
|
@ -3134,9 +2766,14 @@
|
||||||
"logs": "Журнали",
|
"logs": "Журнали",
|
||||||
"advancedConfigs": "Розширені налаштування",
|
"advancedConfigs": "Розширені налаштування",
|
||||||
"advancedConfigurations": "Розширені налаштування",
|
"advancedConfigurations": "Розширені налаштування",
|
||||||
"signInWithLabel": "Увійти через:",
|
|
||||||
"identityServer": "Сервер профілів:",
|
"identityServer": "Сервер профілів:",
|
||||||
"clientWellKnownInformation": "Дані клієнту із .well-known:",
|
"clientWellKnownInformation": "Дані клієнту із .well-known:",
|
||||||
"federationBaseUrl": "Основний URL федерації",
|
"federationBaseUrl": "Основний URL федерації",
|
||||||
"baseUrl": "Основний URL"
|
"baseUrl": "Основний URL",
|
||||||
}
|
"signIn": "Увійти",
|
||||||
|
"createNewAccount": "Створити новий обліковий запис",
|
||||||
|
"signUpGreeting": "FluffyChat децентралізований! Виберіть сервер, на якому ви хочете створити свій обліковий запис, і почнімо!",
|
||||||
|
"signInGreeting": "Ви вже маєте обліковий запис у Matrix? Ласкаво просимо! Виберіть свій домашній сервер і ввійдіть.",
|
||||||
|
"appIntro": "За допомогою FluffyChat ви можете спілкуватися зі своїми друзями. Це безпечний децентралізований месенджер [matrix]! Дізнайтеся більше на сайті https://matrix.org або просто зареєструйтеся.",
|
||||||
|
"theProcessWasCanceled": "Процес скасовано."
|
||||||
|
}
|
||||||
|
|
@ -1,13 +1,10 @@
|
||||||
{
|
{
|
||||||
"repeatPassword": "Parolni takrorlang",
|
"repeatPassword": "Parolni takrorlang",
|
||||||
"normalUser": "Oddiy foydalanuvchi",
|
|
||||||
"alwaysUse24HourFormat": "true",
|
"alwaysUse24HourFormat": "true",
|
||||||
"@alwaysUse24HourFormat": {
|
"@alwaysUse24HourFormat": {
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
},
|
},
|
||||||
"notAnImage": "Rasm fayli emas.",
|
"notAnImage": "Rasm fayli emas.",
|
||||||
"setCustomPermissionLevel": "Maxsus ruxsatlar darajasini sozlash",
|
|
||||||
"setPermissionsLevelDescription": "Quyidagi oldindan belgilangan rolni tanlang yoki 0-100 orasidagi maxsus ruxsatlar darajasini kiriting.",
|
|
||||||
"ignoreUser": "Foydalanuvchini e’tiborsiz qoldirish",
|
"ignoreUser": "Foydalanuvchini e’tiborsiz qoldirish",
|
||||||
"remove": "O‘chirish",
|
"remove": "O‘chirish",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
|
|
@ -72,7 +69,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addChatDescription": "Suhbat tavsifini kiriting...",
|
|
||||||
"addToSpace": "Maydonga qo‘shish",
|
"addToSpace": "Maydonga qo‘shish",
|
||||||
"admin": "Admin",
|
"admin": "Admin",
|
||||||
"@admin": {
|
"@admin": {
|
||||||
|
|
@ -199,33 +195,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sendOnEnter": "Enterda yuborish",
|
"sendOnEnter": "Enterda yuborish",
|
||||||
"badServerVersionsException": "Homeserver quyidagi Spec versiyalarini qo'llab-quvvatlaydi:\n{serverVersions}\nLekin bu ilova faqat {supportedVersions} versiyalarini qo'llab-quvvatlaydi",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"countChatsAndCountParticipants": "{chats} suhbatlar va {participants} ishtirokchilar",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "Boshqa chatlar topilmadi...",
|
"noMoreChatsFound": "Boshqa chatlar topilmadi...",
|
||||||
"noChatsFoundHere": "Bu yerda hali chat topilmadi. Quyidagi tugmadan foydalanib, kimdir bilan yangi suhbat boshlang. ⤵️",
|
"noChatsFoundHere": "Bu yerda hali chat topilmadi. Quyidagi tugmadan foydalanib, kimdir bilan yangi suhbat boshlang. ⤵️",
|
||||||
"joinedChats": "Qo'shilgan suhbatlar",
|
|
||||||
"unread": "Oʻqilmagan",
|
"unread": "Oʻqilmagan",
|
||||||
"space": "Boʻshliq",
|
"space": "Boʻshliq",
|
||||||
"spaces": "Boʻshliqlar",
|
"spaces": "Boʻshliqlar",
|
||||||
|
|
@ -261,11 +232,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "Bot xabarlari",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "Bekor qilish",
|
"cancel": "Bekor qilish",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -471,7 +437,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"chatHasBeenAddedToThisSpace": "Suhbat bu maydonga kiritildi",
|
|
||||||
"changedTheRoomAliases": "{username} xona taxalluslarini oʻzgartirdi",
|
"changedTheRoomAliases": "{username} xona taxalluslarini oʻzgartirdi",
|
||||||
"@changedTheRoomAliases": {
|
"@changedTheRoomAliases": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -613,31 +578,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "Tasdiqlash",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "Ulanish",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "Kontakt guruhga taklif qilindi",
|
"contactHasBeenInvitedToTheGroup": "Kontakt guruhga taklif qilindi",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "Displey nomni oʻz ichiga oladi",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "Foydalanuvchi nomini oʻz ichiga oladi",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "Kontent server administratorlariga xabar qilindi",
|
"contentHasBeenReported": "Kontent server administratorlariga xabar qilindi",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -733,33 +678,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{year}-{month}-{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "Bu sizning foydalanuvchi hisobingizni oʻchirib qoʻyadi. Buni qaytarib boʻlmaydi! Ishonchingiz komilmi?",
|
"deactivateAccountWarning": "Bu sizning foydalanuvchi hisobingizni oʻchirib qoʻyadi. Buni qaytarib boʻlmaydi! Ishonchingiz komilmi?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -805,11 +723,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"allRooms": "Barcha guruh suhbatlar",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emotePacks": "Guruh uchun Emote toʻplamlar",
|
"emotePacks": "Guruh uchun Emote toʻplamlar",
|
||||||
"@emotePacks": {
|
"@emotePacks": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -831,11 +744,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "Siz emote qisqa kodi va rasmni tanlashingiz kerak!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "Boʻsh suhbat",
|
"emptyChat": "Boʻsh suhbat",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -891,11 +799,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "Yangi guruhga oʻtish",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "Guruh",
|
"group": "Guruh",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -991,7 +894,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteContactToGroupQuestion": "{contact} ni \"{groupName}\" suhbatiga taklif qilishni istaysizmi?",
|
|
||||||
"inviteContactToGroup": "Kontaktni {groupName} ga taklif qiling",
|
"inviteContactToGroup": "Kontaktni {groupName} ga taklif qiling",
|
||||||
"@inviteContactToGroup": {
|
"@inviteContactToGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1028,11 +930,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "Men uchun taklif qilish",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} sizni FluffyChat’ga taklif qildi.\n1. fluffychat.im saytiga tashrif buyuring va ilovani oʻrnating.\n2. Roʻyxatdan oʻting yoki tizimga kiring.\n3. Taklif havolasini oching:\n{link}",
|
"inviteText": "{username} sizni FluffyChat’ga taklif qildi.\n1. fluffychat.im saytiga tashrif buyuring va ilovani oʻrnating.\n2. Roʻyxatdan oʻting yoki tizimga kiring.\n3. Taklif havolasini oching:\n{link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1121,11 +1018,6 @@
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"homeserver": "Uy serveri",
|
"homeserver": "Uy serveri",
|
||||||
"enterYourHomeserver": "Uy serveriga kiring",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"errorObtainingLocation": "Joylashuv axboroti olinmadi: {error}",
|
"errorObtainingLocation": "Joylashuv axboroti olinmadi: {error}",
|
||||||
"@errorObtainingLocation": {
|
"@errorObtainingLocation": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1212,11 +1104,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "Litsenziya",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "Yorugʻlik",
|
"lightTheme": "Yorugʻlik",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1233,10 +1120,6 @@
|
||||||
},
|
},
|
||||||
"dehydrate": "Sessiyani eksport qilish va qurilmani oʻchirish",
|
"dehydrate": "Sessiyani eksport qilish va qurilmani oʻchirish",
|
||||||
"dehydrateWarning": "Bu amalni bekor qilib boʻlmaydi. Zaxira faylini xavfsiz saqlang.",
|
"dehydrateWarning": "Bu amalni bekor qilib boʻlmaydi. Zaxira faylini xavfsiz saqlang.",
|
||||||
"dehydrateTor": "TOR foydalanuvchilari: Seansni eksport qilish",
|
|
||||||
"dehydrateTorLong": "TOR foydalanuvchilari uchun oynani yopishdan oldin seansni eksport qilish tavsiya etiladi.",
|
|
||||||
"hydrateTor": "TOR foydalanuvchilari: Seans eksportini import qilish",
|
|
||||||
"hydrateTorLong": "Seansingizni oxirgi marta TOR’da eksport qildingizmi? Uni tezda import qiling va suhbatni davom ettiring.",
|
|
||||||
"hydrate": "Zaxira faylidan tiklash",
|
"hydrate": "Zaxira faylidan tiklash",
|
||||||
"loadingPleaseWait": "Yuklanmoqda… Iltimos, kuting.",
|
"loadingPleaseWait": "Yuklanmoqda… Iltimos, kuting.",
|
||||||
"@loadingPleaseWait": {
|
"@loadingPleaseWait": {
|
||||||
|
|
@ -1277,11 +1160,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "Aʼzo oʻzgarishlari",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "Qayd etmoq",
|
"mention": "Qayd etmoq",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1392,11 +1270,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "Ushbu hisob uchun bildirishnomalar yoqildi",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} foydalanuvchilar yozmoqda…",
|
"numUsersTyping": "{count} foydalanuvchilar yozmoqda…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1456,11 +1329,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"openVideoCamera": "Video uchun kamerani oching",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"oneClientLoggedOut": "Mijozlaringizdan biri tizimdan chiqdi",
|
"oneClientLoggedOut": "Mijozlaringizdan biri tizimdan chiqdi",
|
||||||
"addAccount": "Hisob qoʻshish",
|
"addAccount": "Hisob qoʻshish",
|
||||||
"editBundlesForAccount": "Bu hisob uchun toʻplamlarni tahrirlash",
|
"editBundlesForAccount": "Bu hisob uchun toʻplamlarni tahrirlash",
|
||||||
|
|
@ -1505,21 +1373,13 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"hideMemberChangesInPublicChats": "Ommaviy suhbatlarda aʼzolarga oʻzgartirishlarni yashirish",
|
|
||||||
"hideMemberChangesInPublicChatsBody": "Oʻqish qulayligini oshirish uchun kimdir ochiq suhbatga qoʻshilsa yoki undan chiqsa, suhbat vaqt jadvalida koʻrsatilmasin.",
|
|
||||||
"overview": "Umumiy ma'lumot",
|
"overview": "Umumiy ma'lumot",
|
||||||
"notifyMeFor": "Menga bildirishnoma yuborish",
|
|
||||||
"passwordRecoverySettings": "Parolni qayta tiklash sozlamalari",
|
"passwordRecoverySettings": "Parolni qayta tiklash sozlamalari",
|
||||||
"passwordRecovery": "Parolni qayta tiklash",
|
"passwordRecovery": "Parolni qayta tiklash",
|
||||||
"@passwordRecovery": {
|
"@passwordRecovery": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "Odamlar",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "Rasm tanlash",
|
"pickImage": "Rasm tanlash",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1539,11 +1399,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "Iltimos tanlang",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "Iltimos, kirish kodini tanlang",
|
"pleaseChooseAPasscode": "Iltimos, kirish kodini tanlang",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1559,7 +1414,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"pleaseEnterRecoveryKey": "Iltimos, tiklash kalitingizni kiriting:",
|
|
||||||
"pleaseEnterYourPassword": "Iltimos parolingizni kiriting",
|
"pleaseEnterYourPassword": "Iltimos parolingizni kiriting",
|
||||||
"@pleaseEnterYourPassword": {
|
"@pleaseEnterYourPassword": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1660,11 +1514,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "Qayta qoʻshilish",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"removeAllOtherDevices": "Qolgan barcha qurilmalarni oʻchirish",
|
"removeAllOtherDevices": "Qolgan barcha qurilmalarni oʻchirish",
|
||||||
"@removeAllOtherDevices": {
|
"@removeAllOtherDevices": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1679,11 +1528,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "Qurilmani oʻchirish",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "Suhbat blokidan chiqazish",
|
"unbanFromChat": "Suhbat blokidan chiqazish",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1741,15 +1585,6 @@
|
||||||
},
|
},
|
||||||
"recoveryKey": "Tiklash kaliti",
|
"recoveryKey": "Tiklash kaliti",
|
||||||
"recoveryKeyLost": "Tiklash kaliti yo‘qolib qoldimi?",
|
"recoveryKeyLost": "Tiklash kaliti yo‘qolib qoldimi?",
|
||||||
"seenByUser": "{username} ko‘rgan",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "Yuborish",
|
"send": "Yuborish",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1793,16 +1628,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "Asl nusxani yuborish",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "Stiker yuborish",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "Video yuborish",
|
"sendVideo": "Video yuborish",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1862,32 +1687,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"separateChatTypes": "To‘g‘ridan-to‘g‘ri suhbatlar va guruhlarni alohida ajratish",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setAsCanonicalAlias": "Asosiy taxallus sifatida belgilash",
|
"setAsCanonicalAlias": "Asosiy taxallus sifatida belgilash",
|
||||||
"@setAsCanonicalAlias": {
|
"@setAsCanonicalAlias": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "Maxsus hissiyotlarni sozlash",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setChatDescription": "Suhbat tavsifini sozlash",
|
"setChatDescription": "Suhbat tavsifini sozlash",
|
||||||
"setInvitationLink": "Taklif havolasini sozlash",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "Ruxsatlar darajasini belgilash",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "Holatni sozlash",
|
"setStatus": "Holatni sozlash",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1922,21 +1727,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"presenceStyle": "Mavjudlik:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"presencesToggle": "Boshqa foydalanuvchilarning holat xabarlarini ko‘rsatish",
|
"presencesToggle": "Boshqa foydalanuvchilarning holat xabarlarini ko‘rsatish",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "Yagona kirish",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "Tashlab ketish",
|
"skip": "Tashlab ketish",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1966,7 +1761,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"startFirstChat": "Birinchi suhbatni boshlash",
|
|
||||||
"status": "Holati",
|
"status": "Holati",
|
||||||
"@status": {
|
"@status": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2017,21 +1811,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "Saralanganni almashtirish",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "O‘chirib qo‘yish",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "O‘qilgan/O‘qilmaganni belgilash",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "Talablar soni oshib ketdi. Keyinroq qayta urining!",
|
"tooManyRequestsWarning": "Talablar soni oshib ketdi. Keyinroq qayta urining!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2098,15 +1877,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 ta oʻqilmagan suhbat} other{{unreadCount} ta o‘qilmagan chat}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} va yana {count} kishi yozmoqda…",
|
"userAndOthersAreTyping": "{username} va yana {count} kishi yozmoqda…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2232,11 +2002,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "Fon rasmi:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "Ogohlantirish!",
|
"warning": "Ogohlantirish!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2308,19 +2073,9 @@
|
||||||
"sender": "Yuboruvchi",
|
"sender": "Yuboruvchi",
|
||||||
"openGallery": "Galereyani ochish",
|
"openGallery": "Galereyani ochish",
|
||||||
"removeFromSpace": "Guruhdan olib tashlash",
|
"removeFromSpace": "Guruhdan olib tashlash",
|
||||||
"addToSpaceDescription": "Bu suhbatni unga kiritish uchun guruhni tanlang.",
|
|
||||||
"start": "Boshlash",
|
"start": "Boshlash",
|
||||||
"usersMustKnock": "Foydalanuvchilar taqillatishi kerak",
|
"usersMustKnock": "Foydalanuvchilar taqillatishi kerak",
|
||||||
"noOneCanJoin": "Hech kim qoʻshila olmaydi",
|
"noOneCanJoin": "Hech kim qoʻshila olmaydi",
|
||||||
"userWouldLikeToChangeTheChat": "{user} suhbatga qoʻshilmoqchi.",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noPublicLinkHasBeenCreatedYet": "Hech qanday ochiq havola yaratilmagan",
|
|
||||||
"knock": "Taqillating",
|
"knock": "Taqillating",
|
||||||
"users": "Foydalanuvchilar",
|
"users": "Foydalanuvchilar",
|
||||||
"unlockOldMessages": "Eski xabarlarni qulfdan chiqaring",
|
"unlockOldMessages": "Eski xabarlarni qulfdan chiqaring",
|
||||||
|
|
@ -2342,29 +2097,11 @@
|
||||||
"foregroundServiceRunning": "Bu bildirishnoma old plan xizmati ishlab turgan paytda paydo bo‘ladi.",
|
"foregroundServiceRunning": "Bu bildirishnoma old plan xizmati ishlab turgan paytda paydo bo‘ladi.",
|
||||||
"screenSharingTitle": "Ekranni ulashish",
|
"screenSharingTitle": "Ekranni ulashish",
|
||||||
"screenSharingDetail": "Siz ekraningizni FuffyChat’da ulashmoqdasiz",
|
"screenSharingDetail": "Siz ekraningizni FuffyChat’da ulashmoqdasiz",
|
||||||
"callingPermissions": "Qoʻngʻiroq qilish ruxsatlar",
|
|
||||||
"callingAccount": "Qoʻngʻiroq qilishi hisobi",
|
|
||||||
"callingAccountDetails": "FluffyChat’ga mahalliy android terish ilovasidan foydalanishga ruxsat beradi.",
|
|
||||||
"appearOnTop": "Teppada paydo boʻladi",
|
|
||||||
"appearOnTopDetails": "Ilovaning yuqori qismida koʻrinishiga ruxsat beradi (agar sizda Fluffychat qoʻngʻiroq qiluvchi hisobi sifatida oʻrnatilgan boʻlsa, kerak emas)",
|
|
||||||
"otherCallingPermissions": "Mikrofon, kamera va boshqa FluffyChat ruxsatnomalari",
|
|
||||||
"whyIsThisMessageEncrypted": "Nima uchun bu xabarni oʻqib boʻlmaydi?",
|
"whyIsThisMessageEncrypted": "Nima uchun bu xabarni oʻqib boʻlmaydi?",
|
||||||
"noKeyForThisMessage": "Bu xabar siz ushbu qurilmada hisobingizga kirishdan oldin yuborilgan boʻlsa sodir boʻlishi mumkin.\n\nShuningdek, joʻnatuvchi qurilmangizni bloklagan yoki internet ulanishida biron bir muammo yuzaga kelgan boʻlishi mumkin.\n\nXabarni boshqa sessiyada oʻqiy olasizmi? Keyin xabarni undan uzatishingiz mumkin! Sozlamalar > Qurilmalar boʻlimiga oʻting va qurilmalaringiz bir-birini tasdiqlaganligiga ishonch hosil qiling. Keyingi safar xonani ochganingizda va ikkala sessiya ham oldinda boʻlganda, kalitlar avtomatik ravishda uzatiladi.\n\nTizimdan chiqishda yoki qurilmalarni almashtirishda kalitlarni yoʻqotishni xohlamaysizmi? Sozlamalarda suhbatning zaxira nusxasini yoqganingizga ishonch hosil qiling.",
|
"noKeyForThisMessage": "Bu xabar siz ushbu qurilmada hisobingizga kirishdan oldin yuborilgan boʻlsa sodir boʻlishi mumkin.\n\nShuningdek, joʻnatuvchi qurilmangizni bloklagan yoki internet ulanishida biron bir muammo yuzaga kelgan boʻlishi mumkin.\n\nXabarni boshqa sessiyada oʻqiy olasizmi? Keyin xabarni undan uzatishingiz mumkin! Sozlamalar > Qurilmalar boʻlimiga oʻting va qurilmalaringiz bir-birini tasdiqlaganligiga ishonch hosil qiling. Keyingi safar xonani ochganingizda va ikkala sessiya ham oldinda boʻlganda, kalitlar avtomatik ravishda uzatiladi.\n\nTizimdan chiqishda yoki qurilmalarni almashtirishda kalitlarni yoʻqotishni xohlamaysizmi? Sozlamalarda suhbatning zaxira nusxasini yoqganingizga ishonch hosil qiling.",
|
||||||
"newGroup": "Yangi guruh",
|
"newGroup": "Yangi guruh",
|
||||||
"newSpace": "Yangi maydon",
|
"newSpace": "Yangi maydon",
|
||||||
"enterSpace": "Maydonga kirish",
|
|
||||||
"enterRoom": "Guruhga kirish",
|
|
||||||
"allSpaces": "Barcha maydonlar",
|
"allSpaces": "Barcha maydonlar",
|
||||||
"numChats": "{number} suhbatlar",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "Muhim boʻlmagan shtat tadbirlarini yashirish",
|
|
||||||
"hidePresences": "Holat roʻyxati yashirilsinmi?",
|
"hidePresences": "Holat roʻyxati yashirilsinmi?",
|
||||||
"doNotShowAgain": "Qaytib koʻrsatilmasin",
|
"doNotShowAgain": "Qaytib koʻrsatilmasin",
|
||||||
"wasDirectChatDisplayName": "Boʻsh suhbat ({oldDisplayName} edi)",
|
"wasDirectChatDisplayName": "Boʻsh suhbat ({oldDisplayName} edi)",
|
||||||
|
|
@ -2378,14 +2115,12 @@
|
||||||
},
|
},
|
||||||
"newSpaceDescription": "Maydonlar sizga suhbatlaringizni birlashtirish va shaxsiy yoki ommaviy hamjamiyatlarni yaratish imkonini beradi.",
|
"newSpaceDescription": "Maydonlar sizga suhbatlaringizni birlashtirish va shaxsiy yoki ommaviy hamjamiyatlarni yaratish imkonini beradi.",
|
||||||
"openChat": "Suhbatni ochish",
|
"openChat": "Suhbatni ochish",
|
||||||
"indexedDbErrorLong": "Xabarlarni saqlash, afsuski, sukut bo'yicha maxfiy rejimda yoqilmagan.\nIltimos, tashrif buyuring\n- about:config\n- dom.indexedDB.privateBrowsing.enabled ga true berilgan\nAks holda, FluffyChat ni ishga tushirish mumkin emas.",
|
|
||||||
"youJoinedTheChat": "Siz suhbatga qoʻshildingiz",
|
"youJoinedTheChat": "Siz suhbatga qoʻshildingiz",
|
||||||
"encryptThisChat": "Bu suhbatni shifrlash",
|
"encryptThisChat": "Bu suhbatni shifrlash",
|
||||||
"disableEncryptionWarning": "Xavfsizlik nuqtai nazaridan, agar u ilgari yoqilgan boʻlsa, suhbatda shifrlashni oʻchirib qoʻyolmaysiz.",
|
"disableEncryptionWarning": "Xavfsizlik nuqtai nazaridan, agar u ilgari yoqilgan boʻlsa, suhbatda shifrlashni oʻchirib qoʻyolmaysiz.",
|
||||||
"reopenChat": "Suhbatni qayta ochish",
|
"reopenChat": "Suhbatni qayta ochish",
|
||||||
"noBackupWarning": "Diqqat! Suhbatni zaxiralashni yoqmasangiz, shifrlangan xabarlaringizga kirish huquqini yoʻqotasiz. Tizimdan chiqishdan oldin chatni zaxiralashni yoqishingiz tavsiya etiladi.",
|
"noBackupWarning": "Diqqat! Suhbatni zaxiralashni yoqmasangiz, shifrlangan xabarlaringizga kirish huquqini yoʻqotasiz. Tizimdan chiqishdan oldin chatni zaxiralashni yoqishingiz tavsiya etiladi.",
|
||||||
"inviteGroupChat": "📨 Guruh suhbatiga taklif",
|
"inviteGroupChat": "📨 Guruh suhbatiga taklif",
|
||||||
"invitePrivateChat": "📨 Shaxsiy suhbatga taklif",
|
|
||||||
"archiveRoomDescription": "Suhbat arxivga koʻchiriladi. Boshqa foydalanuvchilar sizning suhbatdan chiqqaningizni koʻra oladilar.",
|
"archiveRoomDescription": "Suhbat arxivga koʻchiriladi. Boshqa foydalanuvchilar sizning suhbatdan chiqqaningizni koʻra oladilar.",
|
||||||
"roomUpgradeDescription": "Keyin suhbat yangi guruh versiyasi bilan qayta yaratiladi. Barcha ishtirokchilarga yangi suhbatga oʻtishlari kerakligi haqida xabar beriladi. Guruh versiyalari haqida koʻproq maʼlumotni https://spec.matrix.org/latest/rooms/ manzilida topishingiz mumkin",
|
"roomUpgradeDescription": "Keyin suhbat yangi guruh versiyasi bilan qayta yaratiladi. Barcha ishtirokchilarga yangi suhbatga oʻtishlari kerakligi haqida xabar beriladi. Guruh versiyalari haqida koʻproq maʼlumotni https://spec.matrix.org/latest/rooms/ manzilida topishingiz mumkin",
|
||||||
"banUserDescription": "Foydalanuvchi suhbatdan bloklanadi va blokdan chiqarilmaguncha suhbatga qayta kira olmaydi.",
|
"banUserDescription": "Foydalanuvchi suhbatdan bloklanadi va blokdan chiqarilmaguncha suhbatga qayta kira olmaydi.",
|
||||||
|
|
@ -2436,7 +2171,6 @@
|
||||||
"noticeChatBackupDeviceVerification": "Eslatma: Barcha qurilmalaringizni suhbat zaxira nusxasiga ulaganingizda, ular avtomatik ravishda tasdiqlanadi.",
|
"noticeChatBackupDeviceVerification": "Eslatma: Barcha qurilmalaringizni suhbat zaxira nusxasiga ulaganingizda, ular avtomatik ravishda tasdiqlanadi.",
|
||||||
"welcomeText": "Hey Hey 👋 Bu FluffyChat. Siz https://matrix.org bilan mos keladigan istalgan uy serveriga kirishingiz mumkin. Va keyin istalgan kishi bilan suhbatlashishingiz mumkin. Bu ulkan markazlashtirilmagan xabar almashish tarmog'i!",
|
"welcomeText": "Hey Hey 👋 Bu FluffyChat. Siz https://matrix.org bilan mos keladigan istalgan uy serveriga kirishingiz mumkin. Va keyin istalgan kishi bilan suhbatlashishingiz mumkin. Bu ulkan markazlashtirilmagan xabar almashish tarmog'i!",
|
||||||
"unableToJoinChat": "Chatga qoʻshilib boʻlmadi. Ehtimol, boshqa tomon suhbatni allaqachon yopib qoʻygan.",
|
"unableToJoinChat": "Chatga qoʻshilib boʻlmadi. Ehtimol, boshqa tomon suhbatni allaqachon yopib qoʻygan.",
|
||||||
"appIntroduction": "FluffyChat sizga turli messenjerlar orqali doʻstlaringiz bilan suhbatlashish imkonini beradi. Batafsil maʼlumotni https://matrix.org saytidan oling yoki shunchaki *Davom etish* tugmasini bosing.",
|
|
||||||
"newChatRequest": "📩 Yangi suhbat uchun soʻrov",
|
"newChatRequest": "📩 Yangi suhbat uchun soʻrov",
|
||||||
"shareKeysWithDescription": "Shifrlangan suhbatlarda xabarlaringizni oʻqishlari uchun qaysi qurilmalarga ishonish kerak?",
|
"shareKeysWithDescription": "Shifrlangan suhbatlarda xabarlaringizni oʻqishlari uchun qaysi qurilmalarga ishonish kerak?",
|
||||||
"enterNewChat": "Yangi suhbatga kirish",
|
"enterNewChat": "Yangi suhbatga kirish",
|
||||||
|
|
@ -2452,16 +2186,6 @@
|
||||||
},
|
},
|
||||||
"backToMainChat": "Asosiy suhbatga qaytish",
|
"backToMainChat": "Asosiy suhbatga qaytish",
|
||||||
"pleaseEnterRecoveryKeyDescription": "Eski xabarlaringizni qulfdan chiqarish uchun, iltimos, avvalgi seansdan yaratilgan tiklash kalitingizni kiriting. Sizning tiklash kalitingiz parolingiz EMAS.",
|
"pleaseEnterRecoveryKeyDescription": "Eski xabarlaringizni qulfdan chiqarish uchun, iltimos, avvalgi seansdan yaratilgan tiklash kalitingizni kiriting. Sizning tiklash kalitingiz parolingiz EMAS.",
|
||||||
"publish": "Nashr qilish",
|
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"markAsRead": "Oʻqilgan sifatida belgilash",
|
"markAsRead": "Oʻqilgan sifatida belgilash",
|
||||||
"reportUser": "Foydalanuvchi haqida xabar berish",
|
"reportUser": "Foydalanuvchi haqida xabar berish",
|
||||||
"dismiss": "Rad qilmoq",
|
"dismiss": "Rad qilmoq",
|
||||||
|
|
@ -2485,21 +2209,6 @@
|
||||||
"unsupportedAndroidVersionLong": "Bu funksiya Androidning yangi versiyasini talab qiladi. Iltimos, yangilanishlar yoki Lineage OS qoʻllab-quvvatlashini tekshiring.",
|
"unsupportedAndroidVersionLong": "Bu funksiya Androidning yangi versiyasini talab qiladi. Iltimos, yangilanishlar yoki Lineage OS qoʻllab-quvvatlashini tekshiring.",
|
||||||
"videoCallsBetaWarning": "Iltimos, video qoʻngʻiroqlar hozirda beta-versiyada ekanligini unutmang. Ular kutilganidek ishlamasligi yoki barcha platformalarda umuman ishlamasligi mumkin.",
|
"videoCallsBetaWarning": "Iltimos, video qoʻngʻiroqlar hozirda beta-versiyada ekanligini unutmang. Ular kutilganidek ishlamasligi yoki barcha platformalarda umuman ishlamasligi mumkin.",
|
||||||
"experimentalVideoCalls": "Tajriba video qoʻngʻiroqlar",
|
"experimentalVideoCalls": "Tajriba video qoʻngʻiroqlar",
|
||||||
"emailOrUsername": "Elektron pochta yoki foydalanuvchi nomi",
|
|
||||||
"indexedDbErrorTitle": "Shaxsiy rejim bilan bogʻliq muammolar",
|
|
||||||
"switchToAccount": "{number} hisobiga oʻtish",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nextAccount": "Keyingi hisob",
|
|
||||||
"previousAccount": "Oldingi hisob",
|
|
||||||
"addWidget": "Vidjet qoʻshish",
|
|
||||||
"widgetVideo": "Video",
|
|
||||||
"sorryThatsNotPossible": "Kechirasiz... bu mumkin emas",
|
"sorryThatsNotPossible": "Kechirasiz... bu mumkin emas",
|
||||||
"deviceKeys": "Qurilma kalitlari:",
|
"deviceKeys": "Qurilma kalitlari:",
|
||||||
"noOtherDevicesFound": "Boshqa qurilma topilmadi",
|
"noOtherDevicesFound": "Boshqa qurilma topilmadi",
|
||||||
|
|
@ -2527,19 +2236,6 @@
|
||||||
"openLinkInBrowser": "Havolani brauzerda ochish",
|
"openLinkInBrowser": "Havolani brauzerda ochish",
|
||||||
"reportErrorDescription": "😭 Voy yo‘q. Nimadir xato ketdi. Agar xohlasangiz, bu xato haqida dasturchilarga xabar berishingiz mumkin.",
|
"reportErrorDescription": "😭 Voy yo‘q. Nimadir xato ketdi. Agar xohlasangiz, bu xato haqida dasturchilarga xabar berishingiz mumkin.",
|
||||||
"report": "hisobot",
|
"report": "hisobot",
|
||||||
"signInWithPassword": "Parol bilan kirish",
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Keyinroq qayta urining yoki boshqa serverni tanlang.",
|
|
||||||
"signInWith": "{provider} bilan kiring",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"profileNotFound": "Foydalanuvchi serverda topilmadi. Ehtimol, ulanishda muammo bor yoki foydalanuvchi mavjud emas.",
|
|
||||||
"setTheme": "Mavzu tanlash:",
|
|
||||||
"setColorTheme": "Rang mavzusini sozlash:",
|
"setColorTheme": "Rang mavzusini sozlash:",
|
||||||
"invite": "Taklif qilish",
|
"invite": "Taklif qilish",
|
||||||
"invalidInput": "Xato kiritildi!",
|
"invalidInput": "Xato kiritildi!",
|
||||||
|
|
@ -2569,7 +2265,6 @@
|
||||||
"createGroupAndInviteUsers": "Guruh yaratish va foydalanuvchilarni taklif qilish",
|
"createGroupAndInviteUsers": "Guruh yaratish va foydalanuvchilarni taklif qilish",
|
||||||
"groupCanBeFoundViaSearch": "Guruh qidiruv orqali topilishi mumkin",
|
"groupCanBeFoundViaSearch": "Guruh qidiruv orqali topilishi mumkin",
|
||||||
"wrongRecoveryKey": "Kechirasiz... bu toʻgʻri tiklash kaliti emasga oʻxshaydi.",
|
"wrongRecoveryKey": "Kechirasiz... bu toʻgʻri tiklash kaliti emasga oʻxshaydi.",
|
||||||
"startConversation": "Suhbat boshlash",
|
|
||||||
"commandHint_sendraw": "Xom jsonni yuborish",
|
"commandHint_sendraw": "Xom jsonni yuborish",
|
||||||
"databaseMigrationTitle": "Maʼlumotlar bazasi optimallashtirilgan",
|
"databaseMigrationTitle": "Maʼlumotlar bazasi optimallashtirilgan",
|
||||||
"databaseMigrationBody": "Iltimos, kuting. Bu biroz vaqt olishi mumkin.",
|
"databaseMigrationBody": "Iltimos, kuting. Bu biroz vaqt olishi mumkin.",
|
||||||
|
|
@ -2581,39 +2276,14 @@
|
||||||
"pleaseChooseAStrongPassword": "Iltimos kuchli maxfiy soʻz tanlang",
|
"pleaseChooseAStrongPassword": "Iltimos kuchli maxfiy soʻz tanlang",
|
||||||
"passwordsDoNotMatch": "Maxfiy soʻzlar mos kelmadi",
|
"passwordsDoNotMatch": "Maxfiy soʻzlar mos kelmadi",
|
||||||
"passwordIsWrong": "Siz kiritgan maxfiy soʻz xato",
|
"passwordIsWrong": "Siz kiritgan maxfiy soʻz xato",
|
||||||
"publicLink": "Ommaviy havola",
|
|
||||||
"createNewAddress": "Yangi manzil yarating",
|
"createNewAddress": "Yangi manzil yarating",
|
||||||
"joinSpace": "Maydonga qoʻshiling",
|
"joinSpace": "Maydonga qoʻshiling",
|
||||||
"publicSpaces": "Ommaviy maydonlar",
|
"publicSpaces": "Ommaviy maydonlar",
|
||||||
"subspace": "Sub-maydonlar",
|
|
||||||
"decline": "Rad qilish",
|
|
||||||
"thisDevice": "Ushbu qurilma:",
|
"thisDevice": "Ushbu qurilma:",
|
||||||
"initAppError": "Ilovani ishga tushirishda xatolik yuz berdi",
|
"initAppError": "Ilovani ishga tushirishda xatolik yuz berdi",
|
||||||
"userRole": "Foydalanuvchi roli",
|
|
||||||
"minimumPowerLevel": "{level} minimal quvvat darajasidir.",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"searchMore": "Koʻproq qidirish...",
|
"searchMore": "Koʻproq qidirish...",
|
||||||
"gallery": "Galereya",
|
"gallery": "Galereya",
|
||||||
"files": "Fayllar",
|
"files": "Fayllar",
|
||||||
"databaseBuildErrorBody": "SQlite maʼlumotlar bazasini yaratib boʻlmadi. Ilova hozircha eski maʼlumotlar bazasidan foydalanishga harakat qilmoqda. Iltimos, ushbu xato haqida {url} manzilidagi dasturchilarga xabar bering. Xato xabari: {error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sessionLostBody": "Seansingiz yoʻqoldi. Iltimos, ushbu xato haqida {url} manzilidagi dasturchilarga xabar bering. Xato xabari: {error}",
|
"sessionLostBody": "Seansingiz yoʻqoldi. Iltimos, ushbu xato haqida {url} manzilidagi dasturchilarga xabar bering. Xato xabari: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2638,15 +2308,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"forwardMessageTo": "Xabarni {roomName}ga yoʻnaltirilsinmi?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceipts": "Oʻqilganlik haqida xabarnomalarni yuborish",
|
"sendReadReceipts": "Oʻqilganlik haqida xabarnomalarni yuborish",
|
||||||
"formattedMessages": "Formatlangan xabarlar",
|
"formattedMessages": "Formatlangan xabarlar",
|
||||||
"formattedMessagesDescription": "Markdown yordamida qalin matn kabi boy xabar mazmunini koʻrsating.",
|
"formattedMessagesDescription": "Markdown yordamida qalin matn kabi boy xabar mazmunini koʻrsating.",
|
||||||
|
|
@ -2793,9 +2454,6 @@
|
||||||
"changelog": "O‘zgarishlar jurnali",
|
"changelog": "O‘zgarishlar jurnali",
|
||||||
"sendCanceled": "Yuborish bekor qilindi",
|
"sendCanceled": "Yuborish bekor qilindi",
|
||||||
"loginWithMatrixId": "Matriks-ID bilan kirish",
|
"loginWithMatrixId": "Matriks-ID bilan kirish",
|
||||||
"discoverHomeservers": "Uy serverlarini kashf eting",
|
|
||||||
"whatIsAHomeserver": "Uy serveri nima?",
|
|
||||||
"homeserverDescription": "Barcha ma’lumotlaringiz xuddi elektron pochta provayderi kabi uy serverda saqlanadi. Siz qaysi uy serveridan foydalanishni tanlashingiz mumkin, shu bilan birga siz hamma bilan muloqot qilishingiz mumkin. Batafsil: https://matrix.org.",
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "Uy serveri mos emasga o‘xshaydi. URL xato kiritilganmi?",
|
"doesNotSeemToBeAValidHomeserver": "Uy serveri mos emasga o‘xshaydi. URL xato kiritilganmi?",
|
||||||
"calculatingFileSize": "Fayl hajmi hisoblanmoqda...",
|
"calculatingFileSize": "Fayl hajmi hisoblanmoqda...",
|
||||||
"prepareSendingAttachment": "Yuborish uchun biriktirmani tayyorlang...",
|
"prepareSendingAttachment": "Yuborish uchun biriktirmani tayyorlang...",
|
||||||
|
|
@ -2922,10 +2580,6 @@
|
||||||
"longPressToRecordVoiceMessage": "Ovozli xabarni yozib olish uchun uzoq bosing.",
|
"longPressToRecordVoiceMessage": "Ovozli xabarni yozib olish uchun uzoq bosing.",
|
||||||
"pause": "Pauza",
|
"pause": "Pauza",
|
||||||
"resume": "Davom etish",
|
"resume": "Davom etish",
|
||||||
"newSubSpace": "Yangi quyi maydon",
|
|
||||||
"moveToDifferentSpace": "Boshqa maydonga o‘tish",
|
|
||||||
"moveUp": "Yuqoriga surish",
|
|
||||||
"moveDown": "Pastga surish",
|
|
||||||
"spaceMemberOf": "{spaces} maydoni a’zosi",
|
"spaceMemberOf": "{spaces} maydoni a’zosi",
|
||||||
"@spaceMemberOf": {
|
"@spaceMemberOf": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2944,7 +2598,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "Xayriya qilmoq",
|
|
||||||
"startedAPoll": "{username} so‘rovnoma boshladi.",
|
"startedAPoll": "{username} so‘rovnoma boshladi.",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2958,7 +2611,6 @@
|
||||||
"startPoll": "So‘rovni boshlash",
|
"startPoll": "So‘rovni boshlash",
|
||||||
"endPoll": "So‘rovnomani yakunlash",
|
"endPoll": "So‘rovnomani yakunlash",
|
||||||
"answersVisible": "Javoblar ko‘rinadi",
|
"answersVisible": "Javoblar ko‘rinadi",
|
||||||
"answersHidden": "Javoblar berkitildi",
|
|
||||||
"pollQuestion": "So‘rovnoma savoli",
|
"pollQuestion": "So‘rovnoma savoli",
|
||||||
"answerOption": "Javob varianti",
|
"answerOption": "Javob varianti",
|
||||||
"addAnswerOption": "Javob variantini kiritish",
|
"addAnswerOption": "Javob variantini kiritish",
|
||||||
|
|
@ -2985,13 +2637,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"thread": "Sahifa",
|
"thread": "Sahifa",
|
||||||
"widgetEtherpad": "Matnli qayd",
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"widgetCustom": "Maxsus",
|
|
||||||
"widgetName": "Nomi",
|
|
||||||
"widgetUrlError": "Bu yaroqli URL emas.",
|
|
||||||
"widgetNameError": "Iltimos, displey nomini kiriting.",
|
|
||||||
"errorAddingWidget": "Vidjet kiritilmadi.",
|
|
||||||
"youRejectedTheInvitation": "Taklifni rad etdingiz",
|
"youRejectedTheInvitation": "Taklifni rad etdingiz",
|
||||||
"youAcceptedTheInvitation": "👍 Taklifni qabul qildingiz",
|
"youAcceptedTheInvitation": "👍 Taklifni qabul qildingiz",
|
||||||
"youBannedUser": "Siz {user}ni blokladingiz",
|
"youBannedUser": "Siz {user}ni blokladingiz",
|
||||||
|
|
@ -3010,14 +2655,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Sizni quyidagi havola orqali taklif qilishdi:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"youInvitedBy": "📩 Sizni {user} taklif qildi",
|
"youInvitedBy": "📩 Sizni {user} taklif qildi",
|
||||||
"@youInvitedBy": {
|
"@youInvitedBy": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
|
|
@ -3079,11 +2716,6 @@
|
||||||
"learnMore": "Batafsil",
|
"learnMore": "Batafsil",
|
||||||
"yourGlobalUserIdIs": "Global foydalanuvchi ID raqamingiz: ",
|
"yourGlobalUserIdIs": "Global foydalanuvchi ID raqamingiz: ",
|
||||||
"notificationRuleTombstone": "Qabrtosh",
|
"notificationRuleTombstone": "Qabrtosh",
|
||||||
"identity": "Shaxs",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emojis": "Emojilar",
|
"emojis": "Emojilar",
|
||||||
"changedTheChatDescription": "{username} chat tavsifini o‘zgartirdi",
|
"changedTheChatDescription": "{username} chat tavsifini o‘zgartirdi",
|
||||||
"changedTheChatName": "{username} chat nomini o‘zgartirdi",
|
"changedTheChatName": "{username} chat nomini o‘zgartirdi",
|
||||||
|
|
@ -3124,6 +2756,5 @@
|
||||||
},
|
},
|
||||||
"logs": "Jurnallar",
|
"logs": "Jurnallar",
|
||||||
"advancedConfigs": "Kengaytirilgan konfiguratsiyalar",
|
"advancedConfigs": "Kengaytirilgan konfiguratsiyalar",
|
||||||
"advancedConfigurations": "Kengaytirilgan sozlamalar",
|
"advancedConfigurations": "Kengaytirilgan sozlamalar"
|
||||||
"signInWithLabel": "Kirish:"
|
}
|
||||||
}
|
|
||||||
|
|
@ -167,33 +167,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"dateWithYear": "{day}/{month}/{year}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithoutYear": "{day}/{month}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
"dateAndTimeOfDay": "{date}, {timeOfDay}",
|
||||||
"@dateAndTimeOfDay": {
|
"@dateAndTimeOfDay": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -253,16 +226,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"connect": "Kết nối",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"confirm": "Xác nhận",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"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": "So sánh và đảm bảo các số sau đây giống trên máy còn lại",
|
||||||
"@compareNumbersMatch": {
|
"@compareNumbersMatch": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -445,18 +408,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "Máy chủ hỗ trợ Spec phiên bản:\n{serverVerions}\nNhưng ứng dụng này chỉ hỗ trợ {supportedVersions}",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"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": "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": {
|
"@badServerLoginTypesException": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -505,14 +456,8 @@
|
||||||
"@makeAdminDescription": {},
|
"@makeAdminDescription": {},
|
||||||
"setColorTheme": "Chọn màu giao diện:",
|
"setColorTheme": "Chọn màu giao diện:",
|
||||||
"@setColorTheme": {},
|
"@setColorTheme": {},
|
||||||
"callingAccount": "Gọi tài khoản",
|
|
||||||
"@callingAccount": {},
|
|
||||||
"openLinkInBrowser": "Mở đường dẫn trong trình duyệt",
|
"openLinkInBrowser": "Mở đường dẫn trong trình duyệt",
|
||||||
"@openLinkInBrowser": {},
|
"@openLinkInBrowser": {},
|
||||||
"setTheme": "Chọn giao diện:",
|
|
||||||
"@setTheme": {},
|
|
||||||
"invitePrivateChat": "📨 Mời trò chuyện riêng tư",
|
|
||||||
"@invitePrivateChat": {},
|
|
||||||
"inviteGroupChat": "📨 Mời nhóm trò chuyện",
|
"inviteGroupChat": "📨 Mời nhóm trò chuyện",
|
||||||
"@inviteGroupChat": {},
|
"@inviteGroupChat": {},
|
||||||
"addToSpace": "Thêm vào không gian",
|
"addToSpace": "Thêm vào không gian",
|
||||||
|
|
@ -523,12 +468,8 @@
|
||||||
"@importFromZipFile": {},
|
"@importFromZipFile": {},
|
||||||
"exportEmotePack": "Xuất gói biểu cảm bằng tệp .zip",
|
"exportEmotePack": "Xuất gói biểu cảm bằng tệp .zip",
|
||||||
"@exportEmotePack": {},
|
"@exportEmotePack": {},
|
||||||
"hideUnimportantStateEvents": "Ẩn các sự kiện không quan trọng",
|
|
||||||
"@hideUnimportantStateEvents": {},
|
|
||||||
"replace": "Thay thế",
|
"replace": "Thay thế",
|
||||||
"@replace": {},
|
"@replace": {},
|
||||||
"addChatDescription": "Thêm mô tả hội thoại...",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"report": "báo cáo",
|
"report": "báo cáo",
|
||||||
"@report": {},
|
"@report": {},
|
||||||
"remove": "Loại bỏ",
|
"remove": "Loại bỏ",
|
||||||
|
|
@ -540,10 +481,6 @@
|
||||||
"@restricted": {},
|
"@restricted": {},
|
||||||
"newSpace": "Không gian mới",
|
"newSpace": "Không gian mới",
|
||||||
"@newSpace": {},
|
"@newSpace": {},
|
||||||
"enterRoom": "Nhập phòng",
|
|
||||||
"@enterRoom": {},
|
|
||||||
"signInWithPassword": "Đăng nhập với mật khẩu",
|
|
||||||
"@signInWithPassword": {},
|
|
||||||
"all": "Tất cả",
|
"all": "Tất cả",
|
||||||
"@all": {
|
"@all": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -587,8 +524,6 @@
|
||||||
},
|
},
|
||||||
"reportErrorDescription": "😭 Ôi. Có lỗi xảy ra. Bạn có thể báo cáo lỗi tới nhà phát triển nếu muốn.",
|
"reportErrorDescription": "😭 Ôi. Có lỗi xảy ra. Bạn có thể báo cáo lỗi tới nhà phát triển nếu muốn.",
|
||||||
"@reportErrorDescription": {},
|
"@reportErrorDescription": {},
|
||||||
"profileNotFound": "Không tìm thấy người dùng này tại máy chủ. Có thể do lỗi kết nối hoặc người dùng không tồn tại.",
|
|
||||||
"@profileNotFound": {},
|
|
||||||
"banUserDescription": "Người dùng sẽ bị cấm khỏi cuộc trò chuyện và không thể tham gia lại cho tới khi được gỡ cấm.",
|
"banUserDescription": "Người dùng sẽ bị cấm khỏi cuộc trò chuyện và không thể tham gia lại cho tới khi được gỡ cấm.",
|
||||||
"@banUserDescription": {},
|
"@banUserDescription": {},
|
||||||
"learnMore": "Tìm hiểu thêm",
|
"learnMore": "Tìm hiểu thêm",
|
||||||
|
|
@ -601,43 +536,23 @@
|
||||||
"@noOtherDevicesFound": {},
|
"@noOtherDevicesFound": {},
|
||||||
"fileIsTooBigForServer": "Máy chủ báo cáo rằng tệp tin quá lớn để gửi.",
|
"fileIsTooBigForServer": "Máy chủ báo cáo rằng tệp tin quá lớn để gửi.",
|
||||||
"@fileIsTooBigForServer": {},
|
"@fileIsTooBigForServer": {},
|
||||||
"signInWith": "Đăng nhập với {provider}",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notAnImage": "Không phải tệp ảnh.",
|
"notAnImage": "Không phải tệp ảnh.",
|
||||||
"@notAnImage": {},
|
"@notAnImage": {},
|
||||||
"importNow": "Nhập vào",
|
"importNow": "Nhập vào",
|
||||||
"@importNow": {},
|
"@importNow": {},
|
||||||
"allSpaces": "Tất cả không gian",
|
"allSpaces": "Tất cả không gian",
|
||||||
"@allSpaces": {},
|
"@allSpaces": {},
|
||||||
"enterSpace": "Nhập không gian",
|
|
||||||
"@enterSpace": {},
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "Hãy thử lại sau hoặc chọn 1 máy chủ khác.",
|
|
||||||
"@pleaseTryAgainLaterOrChooseDifferentServer": {},
|
|
||||||
"jumpToLastReadMessage": "Đi tới tin nhắn đã đọc mới nhất",
|
"jumpToLastReadMessage": "Đi tới tin nhắn đã đọc mới nhất",
|
||||||
"@jumpToLastReadMessage": {},
|
"@jumpToLastReadMessage": {},
|
||||||
"commandHint_ignore": "Phớt lờ matrix ID này",
|
"commandHint_ignore": "Phớt lờ matrix ID này",
|
||||||
"@commandHint_ignore": {},
|
"@commandHint_ignore": {},
|
||||||
"appLockDescription": "Khoá ứng dụng khi không dùng bằng mã pin",
|
"appLockDescription": "Khoá ứng dụng khi không dùng bằng mã pin",
|
||||||
"@appLockDescription": {},
|
"@appLockDescription": {},
|
||||||
"notifyMeFor": "Bật thông báo cho",
|
|
||||||
"@notifyMeFor": {},
|
|
||||||
"settings": "Cài đặt",
|
"settings": "Cài đặt",
|
||||||
"@settings": {
|
"@settings": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendSticker": "Gửi nhãn dán",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fileHasBeenSavedAt": "Tệp đã được lưu tại {path}",
|
"fileHasBeenSavedAt": "Tệp đã được lưu tại {path}",
|
||||||
"@fileHasBeenSavedAt": {
|
"@fileHasBeenSavedAt": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -651,17 +566,6 @@
|
||||||
"@readUpToHere": {},
|
"@readUpToHere": {},
|
||||||
"jump": "Đi tới",
|
"jump": "Đi tới",
|
||||||
"@jump": {},
|
"@jump": {},
|
||||||
"callingPermissions": "Quyền gọi điện",
|
|
||||||
"@callingPermissions": {},
|
|
||||||
"numChats": "{number} cuộc hội thoại",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hidePresences": "Ẩn danh sách trạng thái?",
|
"hidePresences": "Ẩn danh sách trạng thái?",
|
||||||
"@hidePresences": {},
|
"@hidePresences": {},
|
||||||
"sorryThatsNotPossible": "Xin lỗi... không khả dụng",
|
"sorryThatsNotPossible": "Xin lỗi... không khả dụng",
|
||||||
|
|
@ -732,14 +636,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setCustomPermissionLevel": "Cài mức phân quyền",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"setPermissionsLevelDescription": "Vui lòng chọn vai trò được xác định trước bên dưới hoặc nhập mức quyền tùy chỉnh từ 0 đến 100.",
|
|
||||||
"@setPermissionsLevelDescription": {},
|
|
||||||
"ignoreUser": "Chặn người dùng",
|
"ignoreUser": "Chặn người dùng",
|
||||||
"@ignoreUser": {},
|
"@ignoreUser": {},
|
||||||
"normalUser": "Người dùng thường",
|
|
||||||
"@normalUser": {},
|
|
||||||
"commandHint_roomupgrade": "Nâng cấp phòng lên phiên bản mặc định",
|
"commandHint_roomupgrade": "Nâng cấp phòng lên phiên bản mặc định",
|
||||||
"@commandHint_roomupgrade": {},
|
"@commandHint_roomupgrade": {},
|
||||||
"commandHint_cuddle": "Gửi cái ôm",
|
"commandHint_cuddle": "Gửi cái ôm",
|
||||||
|
|
@ -780,15 +678,6 @@
|
||||||
"@sendOnEnter": {},
|
"@sendOnEnter": {},
|
||||||
"continueText": "Tiếp",
|
"continueText": "Tiếp",
|
||||||
"@continueText": {},
|
"@continueText": {},
|
||||||
"videoWithSize": "Video ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"markAsRead": "Đánh dấu đã đọc",
|
"markAsRead": "Đánh dấu đã đọc",
|
||||||
"@markAsRead": {},
|
"@markAsRead": {},
|
||||||
"reportUser": "Báo cáo người dùng",
|
"reportUser": "Báo cáo người dùng",
|
||||||
|
|
@ -811,4 +700,4 @@
|
||||||
"@pinMessage": {},
|
"@pinMessage": {},
|
||||||
"confirmEventUnpin": "Bạn có muốn bỏ ghim sự kiện?",
|
"confirmEventUnpin": "Bạn có muốn bỏ ghim sự kiện?",
|
||||||
"@confirmEventUnpin": {}
|
"@confirmEventUnpin": {}
|
||||||
}
|
}
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
{
|
{
|
||||||
"@@locale": "yue",
|
"@@locale": "yue",
|
||||||
"normalUser": "正常用家",
|
|
||||||
"@normalUser": {},
|
|
||||||
"areYouSureYouWantToLogout": "係咪確定要 log out?",
|
"areYouSureYouWantToLogout": "係咪確定要 log out?",
|
||||||
"@areYouSureYouWantToLogout": {
|
"@areYouSureYouWantToLogout": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -38,18 +36,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "呢個 Homeserver 支持以下 Spec 版本:\n{serverVersions}\n但係個 App 淨係支持 {supoortedVersions} 版本",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "喺傾偈入面 Ban 咗佢",
|
"banFromChat": "喺傾偈入面 Ban 咗佢",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -171,8 +157,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"addChatDescription": "講下關於呢個偈係傾嘅乜嘢……",
|
|
||||||
"@addChatDescription": {},
|
|
||||||
"addToSpace": "加落去空間嗰度",
|
"addToSpace": "加落去空間嗰度",
|
||||||
"@addToSpace": {},
|
"@addToSpace": {},
|
||||||
"admin": "Admin",
|
"admin": "Admin",
|
||||||
|
|
@ -265,22 +249,8 @@
|
||||||
"@swipeRightToLeftToReply": {},
|
"@swipeRightToLeftToReply": {},
|
||||||
"sendOnEnter": "撳 Enter 即 Send",
|
"sendOnEnter": "撳 Enter 即 Send",
|
||||||
"@sendOnEnter": {},
|
"@sendOnEnter": {},
|
||||||
"countChatsAndCountParticipants": "{chats} 間房同 {participants} 條友",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noMoreChatsFound": "搵唔到更多偈傾啦…",
|
"noMoreChatsFound": "搵唔到更多偈傾啦…",
|
||||||
"@noMoreChatsFound": {},
|
"@noMoreChatsFound": {},
|
||||||
"joinedChats": "入咗嘅房間",
|
|
||||||
"@joinedChats": {},
|
|
||||||
"unread": "未讀",
|
"unread": "未讀",
|
||||||
"@unread": {},
|
"@unread": {},
|
||||||
"space": "空間",
|
"space": "空間",
|
||||||
|
|
@ -302,11 +272,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "機械人訊息",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -328,10 +293,6 @@
|
||||||
},
|
},
|
||||||
"confirmMatrixId": "Confirm 你嘅 Matrix ID ,我哋先至可以刪除你嘅 Account。",
|
"confirmMatrixId": "Confirm 你嘅 Matrix ID ,我哋先至可以刪除你嘅 Account。",
|
||||||
"@confirmMatrixId": {},
|
"@confirmMatrixId": {},
|
||||||
"setCustomPermissionLevel": "自訂權限級別",
|
|
||||||
"@setCustomPermissionLevel": {},
|
|
||||||
"importFromZipFile": "喺 .zip 檔案導入",
|
"importFromZipFile": "喺 .zip 檔案導入",
|
||||||
"@importFromZipFile": {},
|
"@importFromZipFile": {}
|
||||||
"setPermissionsLevelDescription": "請喺下面選擇一個預定義嘅角色,或輸入介乎0同100之間嘅自定義權限級別。",
|
}
|
||||||
"@setPermissionsLevelDescription": {}
|
|
||||||
}
|
|
||||||
|
|
@ -78,7 +78,7 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"areGuestsAllowedToJoin": "是否允许访客加入",
|
"areGuestsAllowedToJoin": "允许访客加入吗?",
|
||||||
"@areGuestsAllowedToJoin": {
|
"@areGuestsAllowedToJoin": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
|
|
@ -119,18 +119,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"badServerVersionsException": "主服务器支持的 Spec 版本:\n{serverVersions}\n但此应用仅支持 {supportedVersions} 版本",
|
|
||||||
"@badServerVersionsException": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"serverVersions": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"supportedVersions": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"banFromChat": "从聊天中封禁",
|
"banFromChat": "从聊天中封禁",
|
||||||
"@banFromChat": {
|
"@banFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -163,11 +151,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"botMessages": "机器人消息",
|
|
||||||
"@botMessages": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"@cancel": {
|
"@cancel": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -487,31 +470,11 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"confirm": "确认",
|
|
||||||
"@confirm": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"connect": "连接",
|
|
||||||
"@connect": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contactHasBeenInvitedToTheGroup": "联系人已被邀请至群组",
|
"contactHasBeenInvitedToTheGroup": "联系人已被邀请至群组",
|
||||||
"@contactHasBeenInvitedToTheGroup": {
|
"@contactHasBeenInvitedToTheGroup": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"containsDisplayName": "包含昵称",
|
|
||||||
"@containsDisplayName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"containsUserName": "包含用户名",
|
|
||||||
"@containsUserName": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"contentHasBeenReported": "此内容已被报告至服务器管理员处",
|
"contentHasBeenReported": "此内容已被报告至服务器管理员处",
|
||||||
"@contentHasBeenReported": {
|
"@contentHasBeenReported": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -586,33 +549,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dateWithoutYear": "{month}-{day}",
|
|
||||||
"@dateWithoutYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dateWithYear": "{year}-{month}-{day}",
|
|
||||||
"@dateWithYear": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"year": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"month": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"day": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deactivateAccountWarning": "这将停用你的用户账户。这不能被撤销!你确定吗?",
|
"deactivateAccountWarning": "这将停用你的用户账户。这不能被撤销!你确定吗?",
|
||||||
"@deactivateAccountWarning": {
|
"@deactivateAccountWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -718,11 +654,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"emoteWarnNeedToPick": "你需要选择一个表情快捷码和一张图片!",
|
|
||||||
"@emoteWarnNeedToPick": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"emptyChat": "空聊天",
|
"emptyChat": "空聊天",
|
||||||
"@emptyChat": {
|
"@emptyChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -772,11 +703,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"enterYourHomeserver": "输入你的主服务器地址",
|
|
||||||
"@enterYourHomeserver": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"everythingReady": "一切就绪!",
|
"everythingReady": "一切就绪!",
|
||||||
"@everythingReady": {
|
"@everythingReady": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -817,11 +743,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"goToTheNewRoom": "前往新的聊天室",
|
|
||||||
"@goToTheNewRoom": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"group": "群组",
|
"group": "群组",
|
||||||
"@group": {
|
"@group": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -893,11 +814,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"identity": "身份",
|
|
||||||
"@identity": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"ignore": "忽略",
|
"ignore": "忽略",
|
||||||
"@ignore": {
|
"@ignore": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -959,11 +875,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"inviteForMe": "发给我的邀请",
|
|
||||||
"@inviteForMe": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"inviteText": "{username} 邀请你使用 FluffyChat。 \n1. 安装 FluffyChat:https://fluffychat.im \n2. 注册或登录 \n3. 打开邀请链接:\n {link}",
|
"inviteText": "{username} 邀请你使用 FluffyChat。 \n1. 安装 FluffyChat:https://fluffychat.im \n2. 注册或登录 \n3. 打开邀请链接:\n {link}",
|
||||||
"@inviteText": {
|
"@inviteText": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1043,11 +954,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"license": "许可证",
|
|
||||||
"@license": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"lightTheme": "浅色",
|
"lightTheme": "浅色",
|
||||||
"@lightTheme": {
|
"@lightTheme": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1091,11 +997,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"memberChanges": "成员变更",
|
|
||||||
"@memberChanges": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"mention": "提及",
|
"mention": "提及",
|
||||||
"@mention": {
|
"@mention": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1191,11 +1092,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"notificationsEnabledForThisAccount": "已为此账户启用通知",
|
|
||||||
"@notificationsEnabledForThisAccount": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"numUsersTyping": "{count} 人正在输入…",
|
"numUsersTyping": "{count} 人正在输入…",
|
||||||
"@numUsersTyping": {
|
"@numUsersTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1285,11 +1181,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"people": "联系人",
|
|
||||||
"@people": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pickImage": "选择图像",
|
"pickImage": "选择图像",
|
||||||
"@pickImage": {
|
"@pickImage": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1309,11 +1200,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pleaseChoose": "请选择",
|
|
||||||
"@pleaseChoose": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"pleaseChooseAPasscode": "请选择一个密码",
|
"pleaseChooseAPasscode": "请选择一个密码",
|
||||||
"@pleaseChooseAPasscode": {
|
"@pleaseChooseAPasscode": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1407,11 +1293,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rejoin": "重新加入",
|
|
||||||
"@rejoin": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"remove": "移除",
|
"remove": "移除",
|
||||||
"@remove": {
|
"@remove": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1431,11 +1312,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"removeDevice": "移除设备",
|
|
||||||
"@removeDevice": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"unbanFromChat": "从聊天中解封",
|
"unbanFromChat": "从聊天中解封",
|
||||||
"@unbanFromChat": {
|
"@unbanFromChat": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1491,15 +1367,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"seenByUser": "被 {username} 看见",
|
|
||||||
"@seenByUser": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"username": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"send": "发送",
|
"send": "发送",
|
||||||
"@send": {
|
"@send": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1534,16 +1401,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"sendOriginal": "发送原图",
|
|
||||||
"@sendOriginal": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendSticker": "发送贴纸",
|
|
||||||
"@sendSticker": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"sendVideo": "发送视频",
|
"sendVideo": "发送视频",
|
||||||
"@sendVideo": {
|
"@sendVideo": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1608,21 +1465,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"setCustomEmotes": "设置自定义表情",
|
|
||||||
"@setCustomEmotes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setInvitationLink": "设置邀请链接",
|
|
||||||
"@setInvitationLink": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setPermissionsLevel": "设置权限级别",
|
|
||||||
"@setPermissionsLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"setStatus": "设置状态",
|
"setStatus": "设置状态",
|
||||||
"@setStatus": {
|
"@setStatus": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1652,11 +1494,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"singlesignon": "单点登录",
|
|
||||||
"@singlesignon": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"skip": "跳过",
|
"skip": "跳过",
|
||||||
"@skip": {
|
"@skip": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1717,21 +1554,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"toggleFavorite": "切换收藏",
|
|
||||||
"@toggleFavorite": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleMuted": "切换静音",
|
|
||||||
"@toggleMuted": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"toggleUnread": "标记已读/未读",
|
|
||||||
"@toggleUnread": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"tooManyRequestsWarning": "请求过多。请稍后再试!",
|
"tooManyRequestsWarning": "请求过多。请稍后再试!",
|
||||||
"@tooManyRequestsWarning": {
|
"@tooManyRequestsWarning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1798,15 +1620,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"unreadChats": "{unreadCount, plural, =1{1 个未读聊天} other{{unreadCount} 个未读聊天}}",
|
|
||||||
"@unreadChats": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"unreadCount": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"userAndOthersAreTyping": "{username} 和其他 {count} 人正在输入…",
|
"userAndOthersAreTyping": "{username} 和其他 {count} 人正在输入…",
|
||||||
"@userAndOthersAreTyping": {
|
"@userAndOthersAreTyping": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -1931,11 +1744,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"wallpaper": "壁纸:",
|
|
||||||
"@wallpaper": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"warning": "警告!",
|
"warning": "警告!",
|
||||||
"@warning": {
|
"@warning": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2085,7 +1893,6 @@
|
||||||
"sendOnEnter": "按 Enter 键发送",
|
"sendOnEnter": "按 Enter 键发送",
|
||||||
"yourChatBackupHasBeenSetUp": "你的聊天记录备份已设置。",
|
"yourChatBackupHasBeenSetUp": "你的聊天记录备份已设置。",
|
||||||
"scanQrCode": "扫描二维码",
|
"scanQrCode": "扫描二维码",
|
||||||
"chatHasBeenAddedToThisSpace": "聊天已添加到此空间",
|
|
||||||
"homeserver": "服务器",
|
"homeserver": "服务器",
|
||||||
"oneClientLoggedOut": "你的一个客户端已登出",
|
"oneClientLoggedOut": "你的一个客户端已登出",
|
||||||
"removeFromBundle": "从此集合中移除",
|
"removeFromBundle": "从此集合中移除",
|
||||||
|
|
@ -2103,7 +1910,6 @@
|
||||||
"openGallery": "打开图库",
|
"openGallery": "打开图库",
|
||||||
"messageInfo": "消息信息",
|
"messageInfo": "消息信息",
|
||||||
"time": "时间",
|
"time": "时间",
|
||||||
"addToSpaceDescription": "选择一个空间以添加此聊天。",
|
|
||||||
"removeFromSpace": "从此空间中移除",
|
"removeFromSpace": "从此空间中移除",
|
||||||
"start": "开始",
|
"start": "开始",
|
||||||
"commandHint_discardsession": "丢弃会话",
|
"commandHint_discardsession": "丢弃会话",
|
||||||
|
|
@ -2126,21 +1932,6 @@
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"description": "Usage hint for the command /create"
|
"description": "Usage hint for the command /create"
|
||||||
},
|
},
|
||||||
"openVideoCamera": "打开相机拍摄视频",
|
|
||||||
"@openVideoCamera": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"publish": "发布",
|
|
||||||
"videoWithSize": "视频 ({size})",
|
|
||||||
"@videoWithSize": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"size": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dismiss": "忽略",
|
"dismiss": "忽略",
|
||||||
"markAsRead": "标为已读",
|
"markAsRead": "标为已读",
|
||||||
"reportUser": "举报用户",
|
"reportUser": "举报用户",
|
||||||
|
|
@ -2166,32 +1957,6 @@
|
||||||
"placeCall": "发起通话",
|
"placeCall": "发起通话",
|
||||||
"videoCallsBetaWarning": "请注意,视频通话目前处于测试阶段。它们可能不能像预期的那样工作,或者在所有平台上都不能工作。",
|
"videoCallsBetaWarning": "请注意,视频通话目前处于测试阶段。它们可能不能像预期的那样工作,或者在所有平台上都不能工作。",
|
||||||
"experimentalVideoCalls": "实验性的视频通话",
|
"experimentalVideoCalls": "实验性的视频通话",
|
||||||
"emailOrUsername": "电子邮箱或用户名",
|
|
||||||
"switchToAccount": "切换到账户 {number}",
|
|
||||||
"@switchToAccount": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nextAccount": "下个账户",
|
|
||||||
"previousAccount": "上个账户",
|
|
||||||
"widgetVideo": "视频",
|
|
||||||
"widgetJitsi": "Jitsi Meet",
|
|
||||||
"widgetCustom": "自定义",
|
|
||||||
"widgetNameError": "请提供昵称。",
|
|
||||||
"errorAddingWidget": "添加小部件出错。",
|
|
||||||
"addWidget": "添加小部件",
|
|
||||||
"widgetEtherpad": "文本笔记",
|
|
||||||
"widgetName": "名称",
|
|
||||||
"widgetUrlError": "这不是有效的 URL。",
|
|
||||||
"separateChatTypes": "分开私聊和群组",
|
|
||||||
"@separateChatTypes": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"youRejectedTheInvitation": "你拒绝了邀请",
|
"youRejectedTheInvitation": "你拒绝了邀请",
|
||||||
"youJoinedTheChat": "你加入了聊天",
|
"youJoinedTheChat": "你加入了聊天",
|
||||||
"youBannedUser": "你封禁了 {user}",
|
"youBannedUser": "你封禁了 {user}",
|
||||||
|
|
@ -2254,7 +2019,6 @@
|
||||||
"storeInSecureStorageDescription": "将恢复密钥存储在此设备的安全存储中。",
|
"storeInSecureStorageDescription": "将恢复密钥存储在此设备的安全存储中。",
|
||||||
"storeInAppleKeyChain": "存储在 Apple KeyChain 中",
|
"storeInAppleKeyChain": "存储在 Apple KeyChain 中",
|
||||||
"unlockOldMessages": "解锁旧消息",
|
"unlockOldMessages": "解锁旧消息",
|
||||||
"pleaseEnterRecoveryKey": "请输入你的恢复密钥:",
|
|
||||||
"recoveryKey": "恢复密钥",
|
"recoveryKey": "恢复密钥",
|
||||||
"recoveryKeyLost": "丢失了恢复密钥?",
|
"recoveryKeyLost": "丢失了恢复密钥?",
|
||||||
"pleaseEnterRecoveryKeyDescription": "要解锁你的旧邮件,请输入你在之前会话中生成的恢复密钥。 你的恢复密钥不是你的密码。",
|
"pleaseEnterRecoveryKeyDescription": "要解锁你的旧邮件,请输入你在之前会话中生成的恢复密钥。 你的恢复密钥不是你的密码。",
|
||||||
|
|
@ -2270,15 +2034,9 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dehydrateTor": "TOR 用户:导出会话",
|
|
||||||
"dehydrateTorLong": "建议 TOR 用户在关闭窗口之前导出会话。",
|
|
||||||
"hydrateTor": "TOR 用户:导入会话导出",
|
|
||||||
"hydrate": "从备份文件恢复",
|
"hydrate": "从备份文件恢复",
|
||||||
"dehydrate": "导出会话并擦除设备",
|
"dehydrate": "导出会话并擦除设备",
|
||||||
"dehydrateWarning": "此操作无法撤消。 确保你安全地存储备份文件。",
|
"dehydrateWarning": "此操作无法撤消。 确保你安全地存储备份文件。",
|
||||||
"indexedDbErrorTitle": "私有模式问题",
|
|
||||||
"indexedDbErrorLong": "遗憾的是,默认情况下未在私有模式下启用消息存储。\n请访问\n - about:config\n - 将 dom.indexedDB.privateBrowsing.enabled 设置为 true\n否则,无法运行 FluffyChat。",
|
|
||||||
"hydrateTorLong": "你上次是否导出 TOR 会话? 快速导入它并继续聊天。",
|
|
||||||
"user": "用户",
|
"user": "用户",
|
||||||
"custom": "自定义",
|
"custom": "自定义",
|
||||||
"confirmMatrixId": "请确认你的 Matrix ID 以删除账户。",
|
"confirmMatrixId": "请确认你的 Matrix ID 以删除账户。",
|
||||||
|
|
@ -2297,28 +2055,10 @@
|
||||||
"noKeyForThisMessage": "如果消息是在你在此设备上登录账户前发送的,就可能发生这种情况。\n\n也有可能是发送者屏蔽了你的设备或网络连接出了问题。\n\n你能在另一个会话中读取消息吗?如果是的话,你可以从它那里传递信息!点击设置 > 设备,并确保你的设备已经相互验证。当你下次打开聊天室,且两个会话都在前台,密钥就会自动传输。\n\n你不想在退出登录或切换设备时丢失密钥?请确保在设置中启用了聊天备份。",
|
"noKeyForThisMessage": "如果消息是在你在此设备上登录账户前发送的,就可能发生这种情况。\n\n也有可能是发送者屏蔽了你的设备或网络连接出了问题。\n\n你能在另一个会话中读取消息吗?如果是的话,你可以从它那里传递信息!点击设置 > 设备,并确保你的设备已经相互验证。当你下次打开聊天室,且两个会话都在前台,密钥就会自动传输。\n\n你不想在退出登录或切换设备时丢失密钥?请确保在设置中启用了聊天备份。",
|
||||||
"newGroup": "新群组",
|
"newGroup": "新群组",
|
||||||
"newSpace": "新的空间",
|
"newSpace": "新的空间",
|
||||||
"enterSpace": "进入空间",
|
|
||||||
"enterRoom": "进入聊天室",
|
|
||||||
"allSpaces": "所有空间",
|
"allSpaces": "所有空间",
|
||||||
"appearOnTop": "显示在其它应用上方",
|
|
||||||
"appearOnTopDetails": "允许应用显示在顶部(如果你已经将 Fluffychat 设置为呼叫账户,则不需要授予此权限)",
|
|
||||||
"otherCallingPermissions": "麦克风、摄像头和其它 FluffyChat 权限",
|
|
||||||
"callingPermissions": "呼叫权限",
|
|
||||||
"callingAccountDetails": "允许 FluffyChat 使用本机 android 拨号器应用。",
|
|
||||||
"foregroundServiceRunning": "此通知在前台服务运行时出现。",
|
"foregroundServiceRunning": "此通知在前台服务运行时出现。",
|
||||||
"screenSharingTitle": "屏幕共享",
|
"screenSharingTitle": "屏幕共享",
|
||||||
"callingAccount": "呼叫账户",
|
|
||||||
"screenSharingDetail": "你正在 FluffyChat 中共享屏幕",
|
"screenSharingDetail": "你正在 FluffyChat 中共享屏幕",
|
||||||
"numChats": "{number} 个聊天",
|
|
||||||
"@numChats": {
|
|
||||||
"type": "number",
|
|
||||||
"placeholders": {
|
|
||||||
"number": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hideUnimportantStateEvents": "隐藏不重要的状态事件",
|
|
||||||
"doNotShowAgain": "不再显示",
|
"doNotShowAgain": "不再显示",
|
||||||
"googlyEyesContent": "{senderName} 向你发送了“大眼”表情",
|
"googlyEyesContent": "{senderName} 向你发送了“大眼”表情",
|
||||||
"@googlyEyesContent": {
|
"@googlyEyesContent": {
|
||||||
|
|
@ -2359,7 +2099,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"startFirstChat": "发起你的第一个聊天",
|
|
||||||
"newSpaceDescription": "空间让你可以整合聊天并建立私人或公共社区。",
|
"newSpaceDescription": "空间让你可以整合聊天并建立私人或公共社区。",
|
||||||
"encryptThisChat": "加密此聊天",
|
"encryptThisChat": "加密此聊天",
|
||||||
"disableEncryptionWarning": "出于安全考虑 ,你不能在之前已启用加密的聊天中禁用加密。",
|
"disableEncryptionWarning": "出于安全考虑 ,你不能在之前已启用加密的聊天中禁用加密。",
|
||||||
|
|
@ -2372,20 +2111,6 @@
|
||||||
"readUpToHere": "读到此处",
|
"readUpToHere": "读到此处",
|
||||||
"jump": "跳转",
|
"jump": "跳转",
|
||||||
"openLinkInBrowser": "在浏览器中打开链接",
|
"openLinkInBrowser": "在浏览器中打开链接",
|
||||||
"signInWith": "使用 {provider} 登录",
|
|
||||||
"@signInWith": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"provider": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"allRooms": "所有群聊",
|
|
||||||
"@allRooms": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"fileHasBeenSavedAt": "文件已保存在 {path}",
|
"fileHasBeenSavedAt": "文件已保存在 {path}",
|
||||||
"@fileHasBeenSavedAt": {
|
"@fileHasBeenSavedAt": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2397,8 +2122,6 @@
|
||||||
},
|
},
|
||||||
"reportErrorDescription": "😭 哦不。出了点差错。如果你愿意,可以向开发人员报告此错误。",
|
"reportErrorDescription": "😭 哦不。出了点差错。如果你愿意,可以向开发人员报告此错误。",
|
||||||
"noBackupWarning": "警告!如果不启用聊天备份,你将无法访问加密消息。强烈建议在退出登录前先启用聊天备份。",
|
"noBackupWarning": "警告!如果不启用聊天备份,你将无法访问加密消息。强烈建议在退出登录前先启用聊天备份。",
|
||||||
"signInWithPassword": "使用密码登录",
|
|
||||||
"pleaseTryAgainLaterOrChooseDifferentServer": "请稍后再试或选择其它服务器。",
|
|
||||||
"reopenChat": "重新打开聊天",
|
"reopenChat": "重新打开聊天",
|
||||||
"importEmojis": "导入表情包",
|
"importEmojis": "导入表情包",
|
||||||
"notAnImage": "不是图像文件。",
|
"notAnImage": "不是图像文件。",
|
||||||
|
|
@ -2409,10 +2132,7 @@
|
||||||
"sendTypingNotifications": "发送正在输入通知",
|
"sendTypingNotifications": "发送正在输入通知",
|
||||||
"createGroup": "创建群组",
|
"createGroup": "创建群组",
|
||||||
"shareInviteLink": "分享邀请链接",
|
"shareInviteLink": "分享邀请链接",
|
||||||
"profileNotFound": "服务器上找不到此用户。可能是连接有问题或者用户不存在。",
|
|
||||||
"inviteContactToGroupQuestion": "你是否要邀请 {contact} 参与聊天 \"{groupName}\"?",
|
|
||||||
"tryAgain": "重试",
|
"tryAgain": "重试",
|
||||||
"addChatDescription": "添加聊天说明…",
|
|
||||||
"chatPermissions": "聊天权限",
|
"chatPermissions": "聊天权限",
|
||||||
"chatDescription": "聊天描述",
|
"chatDescription": "聊天描述",
|
||||||
"chatDescriptionHasBeenChanged": "聊天描述已被更改",
|
"chatDescriptionHasBeenChanged": "聊天描述已被更改",
|
||||||
|
|
@ -2421,7 +2141,6 @@
|
||||||
"redactMessageDescription": "消息将为此对话中所有参与者删除。此操作无法撤销。",
|
"redactMessageDescription": "消息将为此对话中所有参与者删除。此操作无法撤销。",
|
||||||
"optionalRedactReason": "(可选)删除此消息的原因...",
|
"optionalRedactReason": "(可选)删除此消息的原因...",
|
||||||
"setChatDescription": "设置聊天描述",
|
"setChatDescription": "设置聊天描述",
|
||||||
"setTheme": "设置主题:",
|
|
||||||
"setColorTheme": "设置主题颜色:",
|
"setColorTheme": "设置主题颜色:",
|
||||||
"invite": "邀请",
|
"invite": "邀请",
|
||||||
"messagesStyle": "消息:",
|
"messagesStyle": "消息:",
|
||||||
|
|
@ -2448,7 +2167,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"inviteGroupChat": "📨 群聊邀请",
|
"inviteGroupChat": "📨 群聊邀请",
|
||||||
"invitePrivateChat": "📨 私聊邀请",
|
|
||||||
"emoteKeyboardNoRecents": "最近使用过的表情会出现在这里...",
|
"emoteKeyboardNoRecents": "最近使用过的表情会出现在这里...",
|
||||||
"@emoteKeyboardNoRecents": {
|
"@emoteKeyboardNoRecents": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -2484,7 +2202,6 @@
|
||||||
"kickUserDescription": "该用户会被踢出聊天但没被封禁。在公开聊天中,该用户可以随时重新加入。",
|
"kickUserDescription": "该用户会被踢出聊天但没被封禁。在公开聊天中,该用户可以随时重新加入。",
|
||||||
"blockListDescription": "你可以屏蔽打扰你的用户。你将不会收到来自屏蔽列表中用户的任何消息或聊天室邀请。",
|
"blockListDescription": "你可以屏蔽打扰你的用户。你将不会收到来自屏蔽列表中用户的任何消息或聊天室邀请。",
|
||||||
"createGroupAndInviteUsers": "创建群组并邀请用户",
|
"createGroupAndInviteUsers": "创建群组并邀请用户",
|
||||||
"startConversation": "开始对话",
|
|
||||||
"blockedUsers": "已屏蔽的用户",
|
"blockedUsers": "已屏蔽的用户",
|
||||||
"groupCanBeFoundViaSearch": "可通过搜索找到该群组",
|
"groupCanBeFoundViaSearch": "可通过搜索找到该群组",
|
||||||
"noUsersFoundWithQuery": "很遗憾,没有找到有关\"{query}\"的用户。请检查是否输入错误。",
|
"noUsersFoundWithQuery": "很遗憾,没有找到有关\"{query}\"的用户。请检查是否输入错误。",
|
||||||
|
|
@ -2509,30 +2226,15 @@
|
||||||
"publicSpaces": "公开空间",
|
"publicSpaces": "公开空间",
|
||||||
"passwordIsWrong": "你输入的密码有误",
|
"passwordIsWrong": "你输入的密码有误",
|
||||||
"pleaseEnterYourCurrentPassword": "请输入你当前的密码",
|
"pleaseEnterYourCurrentPassword": "请输入你当前的密码",
|
||||||
"publicLink": "公开链接",
|
|
||||||
"nothingFound": "未找到任何内容…",
|
"nothingFound": "未找到任何内容…",
|
||||||
"decline": "拒绝",
|
|
||||||
"newPassword": "新的密码",
|
"newPassword": "新的密码",
|
||||||
"passwordsDoNotMatch": "密码不匹配",
|
"passwordsDoNotMatch": "密码不匹配",
|
||||||
"subspace": "子空间",
|
|
||||||
"select": "选择",
|
"select": "选择",
|
||||||
"pleaseChooseAStrongPassword": "请选择一个强密码",
|
"pleaseChooseAStrongPassword": "请选择一个强密码",
|
||||||
"addChatOrSubSpace": "添加聊天或子空间",
|
"addChatOrSubSpace": "添加聊天或子空间",
|
||||||
"leaveEmptyToClearStatus": "留空以清除你的状态。",
|
"leaveEmptyToClearStatus": "留空以清除你的状态。",
|
||||||
"joinSpace": "加入空间",
|
"joinSpace": "加入空间",
|
||||||
"searchForUsers": "搜索 @用户…",
|
"searchForUsers": "搜索 @用户…",
|
||||||
"databaseBuildErrorBody": "无法构建 SQLite 数据库。目前应用尝试使用旧数据库。请将此错误报告给开发者,网址为 {url}。错误消息为:{error}",
|
|
||||||
"@databaseBuildErrorBody": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"url": {
|
|
||||||
"type": "String"
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"initAppError": "在初始化应用时发生错误",
|
"initAppError": "在初始化应用时发生错误",
|
||||||
"sessionLostBody": "你的会话已丢失。请将此错误报告给开发者,网址为 {url}。错误消息为:{error}",
|
"sessionLostBody": "你的会话已丢失。请将此错误报告给开发者,网址为 {url}。错误消息为:{error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
|
|
@ -2575,15 +2277,6 @@
|
||||||
"formattedMessages": "格式化的消息",
|
"formattedMessages": "格式化的消息",
|
||||||
"verifyOtherDevice": "🔐 验证其它设备",
|
"verifyOtherDevice": "🔐 验证其它设备",
|
||||||
"verifyOtherUser": "🔐 验证其他用户",
|
"verifyOtherUser": "🔐 验证其他用户",
|
||||||
"forwardMessageTo": "转发消息至 {roomName} ?",
|
|
||||||
"@forwardMessageTo": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"roomName": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sendReadReceiptsDescription": "聊天中的其他参与者可以看到你是否读过消息。",
|
"sendReadReceiptsDescription": "聊天中的其他参与者可以看到你是否读过消息。",
|
||||||
"acceptedKeyVerification": "{sender} 接受了密钥验证",
|
"acceptedKeyVerification": "{sender} 接受了密钥验证",
|
||||||
"@acceptedKeyVerification": {
|
"@acceptedKeyVerification": {
|
||||||
|
|
@ -2631,24 +2324,11 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"transparent": "透明",
|
"transparent": "透明",
|
||||||
"youInvitedToBy": "📩 你已通过链接被邀请到:\n{alias}",
|
|
||||||
"@youInvitedToBy": {
|
|
||||||
"placeholders": {
|
|
||||||
"alias": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"presencesToggle": "显示其他用户的状态消息",
|
"presencesToggle": "显示其他用户的状态消息",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"presenceStyle": "是否在线:",
|
|
||||||
"@presenceStyle": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {}
|
|
||||||
},
|
|
||||||
"hidePresences": "隐藏状态列表?",
|
"hidePresences": "隐藏状态列表?",
|
||||||
"incomingMessages": "传入消息",
|
"incomingMessages": "传入消息",
|
||||||
"stickers": "贴纸",
|
"stickers": "贴纸",
|
||||||
|
|
@ -2675,9 +2355,7 @@
|
||||||
"customEmojisAndStickers": "自定义表情符号和贴纸",
|
"customEmojisAndStickers": "自定义表情符号和贴纸",
|
||||||
"hideRedactedMessages": "隐藏被涂黑的消息",
|
"hideRedactedMessages": "隐藏被涂黑的消息",
|
||||||
"overview": "概览",
|
"overview": "概览",
|
||||||
"notifyMeFor": "提示内容",
|
|
||||||
"passwordRecoverySettings": "密码发现设置",
|
"passwordRecoverySettings": "密码发现设置",
|
||||||
"noPublicLinkHasBeenCreatedYet": "尚未创建公开链接",
|
|
||||||
"knock": "请求",
|
"knock": "请求",
|
||||||
"noOneCanJoin": "无人可以加入",
|
"noOneCanJoin": "无人可以加入",
|
||||||
"knocking": "正在请求",
|
"knocking": "正在请求",
|
||||||
|
|
@ -2697,29 +2375,9 @@
|
||||||
},
|
},
|
||||||
"hideRedactedMessagesBody": "如果某人涂黑了一条消息,那么在聊天中再也看不到这条消息。",
|
"hideRedactedMessagesBody": "如果某人涂黑了一条消息,那么在聊天中再也看不到这条消息。",
|
||||||
"hideInvalidOrUnknownMessageFormats": "隐藏无效或未知的消息格式",
|
"hideInvalidOrUnknownMessageFormats": "隐藏无效或未知的消息格式",
|
||||||
"hideMemberChangesInPublicChats": "在公开聊天中隐藏成员变化",
|
|
||||||
"hideMemberChangesInPublicChatsBody": "不在聊天时间线中显示某人是否加入或离开了公开聊天来改进可读性。",
|
|
||||||
"userWouldLikeToChangeTheChat": "{user} 想加入聊天。",
|
|
||||||
"@userWouldLikeToChangeTheChat": {
|
|
||||||
"placeholders": {
|
|
||||||
"user": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"customEmojisAndStickersBody": "添加或分享可用于任何聊天的表情符号或贴纸。",
|
"customEmojisAndStickersBody": "添加或分享可用于任何聊天的表情符号或贴纸。",
|
||||||
"usersMustKnock": "用户必须请求加入",
|
"usersMustKnock": "用户必须请求加入",
|
||||||
"noDatabaseEncryption": "数据库加密在此平台上不受支持",
|
"noDatabaseEncryption": "数据库加密在此平台上不受支持",
|
||||||
"userRole": "用户角色",
|
|
||||||
"minimumPowerLevel": "{level} 是最低权限等级。",
|
|
||||||
"@minimumPowerLevel": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"level": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"publicChatAddresses": "公开聊天的地址",
|
"publicChatAddresses": "公开聊天的地址",
|
||||||
"createNewAddress": "新建地址",
|
"createNewAddress": "新建地址",
|
||||||
"searchMore": "搜索更多…",
|
"searchMore": "搜索更多…",
|
||||||
|
|
@ -2742,7 +2400,6 @@
|
||||||
"description": "Set to true to always display time of day in 24 hour format."
|
"description": "Set to true to always display time of day in 24 hour format."
|
||||||
},
|
},
|
||||||
"noMoreChatsFound": "找不到更多聊天…",
|
"noMoreChatsFound": "找不到更多聊天…",
|
||||||
"joinedChats": "已加入的聊天",
|
|
||||||
"space": "空间",
|
"space": "空间",
|
||||||
"spaces": "空间",
|
"spaces": "空间",
|
||||||
"goToSpace": "转到空间:{space}",
|
"goToSpace": "转到空间:{space}",
|
||||||
|
|
@ -2751,18 +2408,6 @@
|
||||||
"space": {}
|
"space": {}
|
||||||
},
|
},
|
||||||
"markAsUnread": "标为未读",
|
"markAsUnread": "标为未读",
|
||||||
"countChatsAndCountParticipants": "{chats} 个聊天和 {participants} 名参与者",
|
|
||||||
"@countChatsAndCountParticipants": {
|
|
||||||
"type": "String",
|
|
||||||
"placeholders": {
|
|
||||||
"chats": {
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
"participants": {
|
|
||||||
"type": "int"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"unread": "未读",
|
"unread": "未读",
|
||||||
"userLevel": "{level} - 用户",
|
"userLevel": "{level} - 用户",
|
||||||
"@userLevel": {
|
"@userLevel": {
|
||||||
|
|
@ -2820,9 +2465,6 @@
|
||||||
"sendCanceled": "发送被取消",
|
"sendCanceled": "发送被取消",
|
||||||
"noChatsFoundHere": "此处尚未找到聊天。使用下方按钮 ⤵️ 开始和某人的新聊天",
|
"noChatsFoundHere": "此处尚未找到聊天。使用下方按钮 ⤵️ 开始和某人的新聊天",
|
||||||
"loginWithMatrixId": "使用 Matrix-ID 登录",
|
"loginWithMatrixId": "使用 Matrix-ID 登录",
|
||||||
"discoverHomeservers": "发现主服务器",
|
|
||||||
"whatIsAHomeserver": "什么是主服务器?",
|
|
||||||
"homeserverDescription": "主服务器上就像电子邮件提供商,你的所有数据都存储在上面。你可以选择你想使用哪个主服务器。在 https://matrix.org 上了解更多信息。",
|
|
||||||
"doesNotSeemToBeAValidHomeserver": "似乎不是兼容的主服务器。URL 不正确?",
|
"doesNotSeemToBeAValidHomeserver": "似乎不是兼容的主服务器。URL 不正确?",
|
||||||
"prepareSendingAttachment": "准备发送附件…",
|
"prepareSendingAttachment": "准备发送附件…",
|
||||||
"sendingAttachment": "发送附件中…",
|
"sendingAttachment": "发送附件中…",
|
||||||
|
|
@ -2915,7 +2557,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"appIntroduction": "FluffyChat 让使用不同即时通信工具的你和你的好友得以聊天。 访问 https://matrix.org 了解详情或轻按 *继续*。",
|
|
||||||
"newChatRequest": "📩 新的聊天请求",
|
"newChatRequest": "📩 新的聊天请求",
|
||||||
"generalNotificationSettings": "常规通知设置",
|
"generalNotificationSettings": "常规通知设置",
|
||||||
"userSpecificNotificationSettings": "使用特定通知设置",
|
"userSpecificNotificationSettings": "使用特定通知设置",
|
||||||
|
|
@ -2985,10 +2626,7 @@
|
||||||
"notSupportedOnThisDevice": "此设备上不受支持",
|
"notSupportedOnThisDevice": "此设备上不受支持",
|
||||||
"enterNewChat": "进入新聊天",
|
"enterNewChat": "进入新聊天",
|
||||||
"commandHint_roomupgrade": "将此聊天室升级到给定的聊天室版本",
|
"commandHint_roomupgrade": "将此聊天室升级到给定的聊天室版本",
|
||||||
"setCustomPermissionLevel": "设置自定义权限等级",
|
|
||||||
"setPermissionsLevelDescription": "请在下方选择预定义的角色或输入 0 到 100 间的自定义权限等级。",
|
|
||||||
"ignoreUser": "忽略用户",
|
"ignoreUser": "忽略用户",
|
||||||
"normalUser": "正常用户",
|
|
||||||
"approve": "批准",
|
"approve": "批准",
|
||||||
"youHaveKnocked": "你已请求加入",
|
"youHaveKnocked": "你已请求加入",
|
||||||
"pleaseWaitUntilInvited": "在来自该聊天室的某人邀请你之前请等待。",
|
"pleaseWaitUntilInvited": "在来自该聊天室的某人邀请你之前请等待。",
|
||||||
|
|
@ -3024,10 +2662,6 @@
|
||||||
"longPressToRecordVoiceMessage": "长按录制语音消息。",
|
"longPressToRecordVoiceMessage": "长按录制语音消息。",
|
||||||
"pause": "暂停",
|
"pause": "暂停",
|
||||||
"resume": "继续",
|
"resume": "继续",
|
||||||
"newSubSpace": "新建子空间",
|
|
||||||
"moveToDifferentSpace": "移动到别的空间",
|
|
||||||
"moveUp": "上移",
|
|
||||||
"moveDown": "下移",
|
|
||||||
"removeFromSpaceDescription": "将从空间移除该聊天,但仍出现在聊天列表中。",
|
"removeFromSpaceDescription": "将从空间移除该聊天,但仍出现在聊天列表中。",
|
||||||
"countChats": "{chats} 个聊天",
|
"countChats": "{chats} 个聊天",
|
||||||
"@countChats": {
|
"@countChats": {
|
||||||
|
|
@ -3056,7 +2690,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"donate": "捐赠",
|
|
||||||
"startedAPoll": "{username} 启动了投票。",
|
"startedAPoll": "{username} 启动了投票。",
|
||||||
"@startedAPoll": {
|
"@startedAPoll": {
|
||||||
"type": "String",
|
"type": "String",
|
||||||
|
|
@ -3070,7 +2703,6 @@
|
||||||
"startPoll": "启动投票",
|
"startPoll": "启动投票",
|
||||||
"endPoll": "结束投票",
|
"endPoll": "结束投票",
|
||||||
"answersVisible": "结果可见",
|
"answersVisible": "结果可见",
|
||||||
"answersHidden": "结果隐藏",
|
|
||||||
"pollQuestion": "投票问题",
|
"pollQuestion": "投票问题",
|
||||||
"answerOption": "结果选项",
|
"answerOption": "结果选项",
|
||||||
"addAnswerOption": "添加结果选项",
|
"addAnswerOption": "添加结果选项",
|
||||||
|
|
@ -3138,5 +2770,43 @@
|
||||||
"logs": "日志",
|
"logs": "日志",
|
||||||
"advancedConfigs": "高级配置",
|
"advancedConfigs": "高级配置",
|
||||||
"advancedConfigurations": "高级配置",
|
"advancedConfigurations": "高级配置",
|
||||||
"signInWithLabel": "登录方式:"
|
"signIn": "登录",
|
||||||
|
"createNewAccount": "创建新账户",
|
||||||
|
"signUpGreeting": "FluffyChat 是去中心化的!选择您希望创建账户的服务器!",
|
||||||
|
"signInGreeting": "已经有 Matrix 账户了?欢迎回来!选择 homeserver 登录。",
|
||||||
|
"appIntro": "借助 FluffyChat,您可以和好友聊天。它是安全的去中心化 [matrix] 消息收发应用!如果愿意,可以在 https://matrix.org 了解更多信息,也可直接注册账户。",
|
||||||
|
"theProcessWasCanceled": "过程被取消。",
|
||||||
|
"join": "加入",
|
||||||
|
"searchOrEnterHomeserverAddress": "搜索或输入 homeserver 地址",
|
||||||
|
"matrixId": "Matrix ID",
|
||||||
|
"setPowerLevel": "设置权限级别",
|
||||||
|
"makeModerator": "协管员",
|
||||||
|
"makeAdmin": "管理员",
|
||||||
|
"removeModeratorRights": "删除协管员权限",
|
||||||
|
"removeAdminRights": "删除管理员权限",
|
||||||
|
"powerLevel": "权限级别",
|
||||||
|
"setPowerLevelDescription": "权限级别定义群成员在这个聊天室中可以做什么,取值范围 0 到 100。",
|
||||||
|
"owner": "所有者",
|
||||||
|
"mute": "静音",
|
||||||
|
"@mute": {
|
||||||
|
"description": "This should be a very short string because there is not much space in the button!"
|
||||||
|
},
|
||||||
|
"createNewChat": "新建聊天",
|
||||||
|
"reset": "重置",
|
||||||
|
"supportFluffyChat": "支持 FluffyChat",
|
||||||
|
"support": "支持",
|
||||||
|
"fluffyChatSupportBannerMessage": "FluffyChat 需要您的帮助!\n❤️❤️❤️\nFluffyChat 将始终免费,但开发和托管仍然要花钱。\n项目的未来仰赖像您这样的人的支持。",
|
||||||
|
"skipSupportingFluffyChat": "跳过支持 FluffyChar",
|
||||||
|
"iDoNotWantToSupport": "我不想支持",
|
||||||
|
"iAlreadySupportFluffyChat": "我已支持 FluffyChat",
|
||||||
|
"setLowPriority": "设置低优先级",
|
||||||
|
"unsetLowPriority": "取消设置低优先级",
|
||||||
|
"removeCallFromChat": "从聊天中删除通话",
|
||||||
|
"removeCallFromChatDescription": "要为所有成员从聊天中删除通话吗?",
|
||||||
|
"removeCallForEveryone": "为所有人删除通话",
|
||||||
|
"startVoiceCall": "开始语音通话",
|
||||||
|
"startVideoCall": "开始视频通话",
|
||||||
|
"joinVoiceCall": "加入语音通话",
|
||||||
|
"joinVideoCall": "加入视频通话",
|
||||||
|
"live": "实时"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue